Compare commits

...

6 Commits

Author SHA1 Message Date
github-actions[bot]
89e791a7bf chore(master): release 0.38.0 2026-04-03 20:44:07 +03:00
a00fbbe580 test: add component tests, improve mocks and stubs 2026-04-03 20:40:26 +03:00
1c2c2acf2c feat: improve post accessibility for screen readers 2026-04-03 20:40:26 +03:00
3fb839397a fix: missing guest info 2026-04-03 20:00:43 +03:00
15e5e849d4 feat: add log in link for guests 2026-04-03 20:00:43 +03:00
Nextcloud bot
bf3826e5cd fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2026-04-03 02:14:59 +00:00
210 changed files with 2269 additions and 1555 deletions

View File

@@ -1 +1 @@
{".":"0.37.1"}
{".":"0.38.0"}

View File

@@ -1,5 +1,19 @@
# Changelog
## [0.38.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.37.1...v0.38.0) (2026-04-03)
### Features
* add log in link for guests ([15e5e84](https://github.com/chenasraf/nextcloud-forum/commit/15e5e849d4892d831c5edaee3c0c4785a334ad6d))
* improve post accessibility for screen readers ([1c2c2ac](https://github.com/chenasraf/nextcloud-forum/commit/1c2c2acf2cdfa8f3f7646893ab269c4641ea6c26))
### Bug Fixes
* **l10n:** Update translations from Transifex ([bf3826e](https://github.com/chenasraf/nextcloud-forum/commit/bf3826e5cdcad5406df00a85ad79e03e16c58fb0))
* missing guest info ([3fb8393](https://github.com/chenasraf/nextcloud-forum/commit/3fb839397a55cd6152d93718ce4ff13b2d4e78b4))
## [0.37.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.37.0...v0.37.1) (2026-04-02)

View File

@@ -91,31 +91,8 @@ For a complete list of available commands, usage examples, and detailed document
## Troubleshooting
### Cannot access management features
If you are a Nextcloud administrator but cannot access Forum management features (e.g., managing
categories, roles, or settings), this is likely due to missing database seeds or role assignments.
**Option 1: Using OCC commands**
Run the following commands from your Nextcloud installation directory:
```bash
# Repair database seeds (creates default roles and permissions if missing)
php occ forum:repair-seeds
# Assign administrator role to an account
php occ forum:set-role <username> admin
```
**Option 2: Using the server administration panel**
1. Log in to Nextcloud as an administrator
2. Go to **Administration Settings** (click your profile picture → Administration Settings)
3. Navigate to **Forum** in the left sidebar under the Administration section
4. Use the **Repair Seeds** button to restore default roles and permissions
5. If the seeds are already in place, use the **Assign Roles** section to assign the administrator
role to accounts
For troubleshooting common issues, visit the
[Troubleshooting Wiki page](https://github.com/chenasraf/nextcloud-forum/wiki/Troubleshooting).
## Contributing

View File

@@ -43,7 +43,7 @@ Create discussions, share ideas, and collaborate with your community directly in
The forum integrates seamlessly with your Nextcloud instance, using your existing accounts and teams for authentication and access control.
]]></description>
<version>0.37.1</version>
<version>0.38.0</version>
<licence>agpl</licence>
<author mail="contact@casraf.dev" homepage="https://casraf.dev">Chen Asraf</author>
<namespace>Forum</namespace>

View File

@@ -7,10 +7,10 @@ OC.L10N.register(
"Search" : "Soek",
"Home" : "Tuis",
"Bookmarks" : "Boekmerke",
"Users" : "Gebruikers",
"Collapse" : "Vou In",
"Hello world!" : "Hallo wêreld!",
"Category" : "Kategorie",
"Account" : "Rekening",
"Cancel" : "Cancel",
"Update" : "Werk by",
"Deleted" : "Geskrap",
@@ -29,7 +29,6 @@ OC.L10N.register(
"Signature" : "Handtekening",
"Disable" : "Deaktiveer",
"Description" : "Beskrywing",
"New" : "Nuut",
"Access control" : "Toegangsbeheer",
"Settings saved" : "Instellings gestoor",
"Newest first" : "Nuutste eerste",

View File

@@ -5,10 +5,10 @@
"Search" : "Soek",
"Home" : "Tuis",
"Bookmarks" : "Boekmerke",
"Users" : "Gebruikers",
"Collapse" : "Vou In",
"Hello world!" : "Hallo wêreld!",
"Category" : "Kategorie",
"Account" : "Rekening",
"Cancel" : "Cancel",
"Update" : "Werk by",
"Deleted" : "Geskrap",
@@ -27,7 +27,6 @@
"Signature" : "Handtekening",
"Disable" : "Deaktiveer",
"Description" : "Beskrywing",
"New" : "Nuut",
"Access control" : "Toegangsbeheer",
"Settings saved" : "Instellings gestoor",
"Newest first" : "Nuutste eerste",

View File

@@ -10,14 +10,13 @@ OC.L10N.register(
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
"Forum" : "المنتدى",
"Deleted user" : "مستخدم محذوف",
"User ID" : "رمز المستخدم",
"Role" : "الوظيفة",
"Loading …" : "التحميل جارٍ ...",
"Search" : "بحث",
"Home" : "الرئيسية",
"Bookmarks" : "الإشارات المرجعية Bookmarks",
"Preferences" : "التفضيلات",
"Dashboard" : "الرئيسية",
"Users" : "المستخدمين",
"Categories" : "التصنيفات",
"Moderation" : "الإدارة",
"Expand" : "توسيع",
@@ -32,6 +31,8 @@ OC.L10N.register(
"Failed to upload file" : "تعذّر رفع الملف",
"Category" : "التصنيف",
"Allow" : "سماح",
"Change color" : "غيّر اللون",
"Account" : "الحساب",
"Cancel" : "Cancel",
"Sort order" : "ترتيب الفرز",
"Create" : "إنشاء",
@@ -75,7 +76,6 @@ OC.L10N.register(
"Bookmark" : "إشارة مرجعية bookmark",
"Edit title" : "تحرير عنوان",
"Move thread" : "أنقُل النَّظْمَة thread",
"Preferences" : "التفضيلات",
"Notifications" : "الإشعارات",
"Files" : "الملفّات",
"Browse" : "تصفُّح",
@@ -85,7 +85,6 @@ OC.L10N.register(
"Disable" : "تعطيل",
"Description" : "الوصف",
"Enabled" : "مُفعّل",
"New" : "جديد",
"Permissions" : "الصلاحيّات",
"Preview" : "معاينة",
"Move up" : "نقلٌ للأعلي",
@@ -106,9 +105,6 @@ OC.L10N.register(
"No description" : "بدون وصف",
"No teams found" : "لا يوجد أي فريق",
"Members" : "الاعضاء",
"User management" : "إدارة المستخدِمين",
"Loading users …" : "تحميل المستخدِمين جارٍ ...",
"No users found" : "لا يوجد مستخدمون",
"Status" : "الحاله",
"Active" : "نَشِط"
},

View File

@@ -8,14 +8,13 @@
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
"Forum" : "المنتدى",
"Deleted user" : "مستخدم محذوف",
"User ID" : "رمز المستخدم",
"Role" : "الوظيفة",
"Loading …" : "التحميل جارٍ ...",
"Search" : "بحث",
"Home" : "الرئيسية",
"Bookmarks" : "الإشارات المرجعية Bookmarks",
"Preferences" : "التفضيلات",
"Dashboard" : "الرئيسية",
"Users" : "المستخدمين",
"Categories" : "التصنيفات",
"Moderation" : "الإدارة",
"Expand" : "توسيع",
@@ -30,6 +29,8 @@
"Failed to upload file" : "تعذّر رفع الملف",
"Category" : "التصنيف",
"Allow" : "سماح",
"Change color" : "غيّر اللون",
"Account" : "الحساب",
"Cancel" : "Cancel",
"Sort order" : "ترتيب الفرز",
"Create" : "إنشاء",
@@ -73,7 +74,6 @@
"Bookmark" : "إشارة مرجعية bookmark",
"Edit title" : "تحرير عنوان",
"Move thread" : "أنقُل النَّظْمَة thread",
"Preferences" : "التفضيلات",
"Notifications" : "الإشعارات",
"Files" : "الملفّات",
"Browse" : "تصفُّح",
@@ -83,7 +83,6 @@
"Disable" : "تعطيل",
"Description" : "الوصف",
"Enabled" : "مُفعّل",
"New" : "جديد",
"Permissions" : "الصلاحيّات",
"Preview" : "معاينة",
"Move up" : "نقلٌ للأعلي",
@@ -104,9 +103,6 @@
"No description" : "بدون وصف",
"No teams found" : "لا يوجد أي فريق",
"Members" : "الاعضاء",
"User management" : "إدارة المستخدِمين",
"Loading users …" : "تحميل المستخدِمين جارٍ ...",
"No users found" : "لا يوجد مستخدمون",
"Status" : "الحاله",
"Active" : "نَشِط"
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"

View File

@@ -15,8 +15,8 @@ OC.L10N.register(
"Loading …" : "Cargando…",
"Search" : "Buscar",
"Home" : "Aniciu",
"Preferences" : "Preferencies",
"Dashboard" : "Panel",
"Users" : "Usuarios",
"Categories" : "Categories",
"Expand" : "Espander",
"Collapse" : "Contrayer",
@@ -27,6 +27,8 @@ OC.L10N.register(
"Close" : "Zarrar",
"Category" : "Categoría",
"Allow" : "Permitir",
"Change color" : "Camudar el color",
"Account" : "Cuenta",
"Cancel" : "Cancel",
"Create" : "Crear",
"Update" : "Anovar",
@@ -63,7 +65,6 @@ OC.L10N.register(
"Subscribe" : "Soscribise",
"Edit title" : "Editar el títulu",
"Move thread" : "Mover el filu",
"Preferences" : "Preferencies",
"Notifications" : "Avisos",
"Files" : "Ficheros",
"Signature" : "Firma",
@@ -72,7 +73,6 @@ OC.L10N.register(
"Disable" : "Desactivar",
"Description" : "Descripción",
"Enabled" : "Activóse",
"New" : "Nuevu",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"Move up" : "Xubir",
@@ -93,9 +93,6 @@ OC.L10N.register(
"Actions" : "Aiciones",
"No teams found" : "Nun s'atopó nengún equipu",
"Members" : "Miembros",
"User management" : "Xestión d'usuarios",
"Loading users …" : "Cargando los usuarios…",
"No users found" : "Nun s'atopó nengún usuariu",
"Status" : "Estáu",
"Active" : "Activa"
},

View File

@@ -13,8 +13,8 @@
"Loading …" : "Cargando…",
"Search" : "Buscar",
"Home" : "Aniciu",
"Preferences" : "Preferencies",
"Dashboard" : "Panel",
"Users" : "Usuarios",
"Categories" : "Categories",
"Expand" : "Espander",
"Collapse" : "Contrayer",
@@ -25,6 +25,8 @@
"Close" : "Zarrar",
"Category" : "Categoría",
"Allow" : "Permitir",
"Change color" : "Camudar el color",
"Account" : "Cuenta",
"Cancel" : "Cancel",
"Create" : "Crear",
"Update" : "Anovar",
@@ -61,7 +63,6 @@
"Subscribe" : "Soscribise",
"Edit title" : "Editar el títulu",
"Move thread" : "Mover el filu",
"Preferences" : "Preferencies",
"Notifications" : "Avisos",
"Files" : "Ficheros",
"Signature" : "Firma",
@@ -70,7 +71,6 @@
"Disable" : "Desactivar",
"Description" : "Descripción",
"Enabled" : "Activóse",
"New" : "Nuevu",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"Move up" : "Xubir",
@@ -91,9 +91,6 @@
"Actions" : "Aiciones",
"No teams found" : "Nun s'atopó nengún equipu",
"Members" : "Miembros",
"User management" : "Xestión d'usuarios",
"Loading users …" : "Cargando los usuarios…",
"No users found" : "Nun s'atopó nengún usuariu",
"Status" : "Estáu",
"Active" : "Activa"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -7,12 +7,12 @@ OC.L10N.register(
"Forum" : "Forum",
"Search" : "Axtarış",
"Home" : "Ev",
"Users" : "İstifadəçilər",
"Categories" : "Kateqoriyalar",
"Collapse" : "Yığılma",
"Upload failed" : "Yüklənmədə səhv baş verdi",
"Close" : "Bağla",
"Category" : "Kateqoriya",
"Account" : "Hesab",
"Cancel" : "Cancel",
"Update" : "Yenilənmə",
"Deleted" : "Silinib",
@@ -32,7 +32,6 @@ OC.L10N.register(
"Disable" : "Dayandır",
"Description" : "Açıqlanma",
"Enabled" : "İşə salınıb",
"New" : "Yeni",
"Settings saved" : "Parametrlər yaddaşa verildi",
"Reset" : "Sıfırla",
"Actions" : "İşlər",

View File

@@ -5,12 +5,12 @@
"Forum" : "Forum",
"Search" : "Axtarış",
"Home" : "Ev",
"Users" : "İstifadəçilər",
"Categories" : "Kateqoriyalar",
"Collapse" : "Yığılma",
"Upload failed" : "Yüklənmədə səhv baş verdi",
"Close" : "Bağla",
"Category" : "Kateqoriya",
"Account" : "Hesab",
"Cancel" : "Cancel",
"Update" : "Yenilənmə",
"Deleted" : "Silinib",
@@ -30,7 +30,6 @@
"Disable" : "Dayandır",
"Description" : "Açıqlanma",
"Enabled" : "İşə salınıb",
"New" : "Yeni",
"Settings saved" : "Parametrlər yaddaşa verildi",
"Reset" : "Sıfırla",
"Actions" : "İşlər",

View File

@@ -22,7 +22,6 @@ OC.L10N.register(
"Search" : "Пошук",
"Home" : "Дадому",
"Dashboard" : "Панэль кіравання",
"Users" : "Карыстальнікі",
"Roles & Teams" : "Ролі і каманды",
"Categories" : "Катэгорыі",
"Moderation" : "Мадэрацыя",
@@ -46,6 +45,8 @@ OC.L10N.register(
"No description available" : "Апісанне недаступна",
"Category" : "Катэгорыя",
"Allow" : "Дазволіць",
"Change color" : "Змяніць колер",
"Account" : "Уліковы запіс",
"Cancel" : "Скасаваць",
"Create" : "Ствараць",
"Update" : "Абнавіць",
@@ -101,7 +102,6 @@ OC.L10N.register(
"Description" : "Апісанне",
"Enabled" : "Уключаны",
"Enter category name" : "Увядзіце назву катэгорыі",
"New" : "Новы",
"Permissions" : "Дазволы",
"Preview" : "Перадпрагляд",
"Move up" : "Перамясціць уверх",

View File

@@ -20,7 +20,6 @@
"Search" : "Пошук",
"Home" : "Дадому",
"Dashboard" : "Панэль кіравання",
"Users" : "Карыстальнікі",
"Roles & Teams" : "Ролі і каманды",
"Categories" : "Катэгорыі",
"Moderation" : "Мадэрацыя",
@@ -44,6 +43,8 @@
"No description available" : "Апісанне недаступна",
"Category" : "Катэгорыя",
"Allow" : "Дазволіць",
"Change color" : "Змяніць колер",
"Account" : "Уліковы запіс",
"Cancel" : "Скасаваць",
"Create" : "Ствараць",
"Update" : "Абнавіць",
@@ -99,7 +100,6 @@
"Description" : "Апісанне",
"Enabled" : "Уключаны",
"Enter category name" : "Увядзіце назву катэгорыі",
"New" : "Новы",
"Permissions" : "Дазволы",
"Preview" : "Перадпрагляд",
"Move up" : "Перамясціць уверх",

View File

@@ -9,12 +9,12 @@ OC.L10N.register(
"Underlined text" : "Подчертан текст",
"Forum" : "Форум",
"Deleted user" : "Изтрит потребител",
"User ID" : "Потребителски Идентификатор /Име/",
"Role" : "Роля",
"Loading …" : "Зареждане …",
"Search" : "Търсене",
"Home" : "Начало",
"Bookmarks" : "Отметки",
"Preferences" : "Предпочитания",
"Dashboard" : "Табло",
"Categories" : "Категории",
"Moderation" : "Модериране /Наблюдаване/",
@@ -30,6 +30,8 @@ OC.L10N.register(
"Close" : "Затваряне",
"Category" : "Категория",
"Allow" : "Да",
"Change color" : "Промяна на цвета",
"Account" : "Профил",
"No accounts found" : "Не е открит профил",
"Cancel" : "Cancel",
"Sort order" : "Сортиране на реда",
@@ -75,7 +77,6 @@ OC.L10N.register(
"Bookmark" : "Отметка",
"Edit title" : "Редактиране на заглавието",
"Move thread" : "Преместване на нишката",
"Preferences" : "Предпочитания",
"Notifications" : "Известия",
"Files" : "Файлове",
"Signature" : "Подпис",
@@ -85,7 +86,6 @@ OC.L10N.register(
"Tag" : "Етикет",
"Description" : "Описание",
"Enabled" : "Включено",
"New" : "Нов",
"Permissions" : "Права",
"Preview" : "Визуализация",
"Move up" : "Преместване нагоре",
@@ -105,7 +105,6 @@ OC.L10N.register(
"Actions" : "Действия",
"No description" : "Без описание",
"Members" : "Членове",
"No users found" : "Няма намерени потребители",
"Joined" : "Присъединен",
"Status" : "Състояние",
"Active" : "Активен"

View File

@@ -7,12 +7,12 @@
"Underlined text" : "Подчертан текст",
"Forum" : "Форум",
"Deleted user" : "Изтрит потребител",
"User ID" : "Потребителски Идентификатор /Име/",
"Role" : "Роля",
"Loading …" : "Зареждане …",
"Search" : "Търсене",
"Home" : "Начало",
"Bookmarks" : "Отметки",
"Preferences" : "Предпочитания",
"Dashboard" : "Табло",
"Categories" : "Категории",
"Moderation" : "Модериране /Наблюдаване/",
@@ -28,6 +28,8 @@
"Close" : "Затваряне",
"Category" : "Категория",
"Allow" : "Да",
"Change color" : "Промяна на цвета",
"Account" : "Профил",
"No accounts found" : "Не е открит профил",
"Cancel" : "Cancel",
"Sort order" : "Сортиране на реда",
@@ -73,7 +75,6 @@
"Bookmark" : "Отметка",
"Edit title" : "Редактиране на заглавието",
"Move thread" : "Преместване на нишката",
"Preferences" : "Предпочитания",
"Notifications" : "Известия",
"Files" : "Файлове",
"Signature" : "Подпис",
@@ -83,7 +84,6 @@
"Tag" : "Етикет",
"Description" : "Описание",
"Enabled" : "Включено",
"New" : "Нов",
"Permissions" : "Права",
"Preview" : "Визуализация",
"Move up" : "Преместване нагоре",
@@ -103,7 +103,6 @@
"Actions" : "Действия",
"No description" : "Без описание",
"Members" : "Членове",
"No users found" : "Няма намерени потребители",
"Joined" : "Присъединен",
"Status" : "Състояние",
"Active" : "Активен"

View File

@@ -7,7 +7,6 @@ OC.L10N.register(
"Forum" : "ফোরাম",
"Search" : "Search",
"Home" : "বাড়ি",
"Users" : "ব্যবহারকারী",
"Collapse" : "ভাঙো",
"Upload failed" : "আপলোড হয়নি",
"Close" : "বন্ধ",
@@ -28,7 +27,6 @@ OC.L10N.register(
"Disable" : "নিষ্ক্রিয়",
"Description" : "বিবরণ",
"Enabled" : "কার্যকর",
"New" : "নতুন",
"Reset" : "পূণঃনির্ধানণ",
"Actions" : "পদক্ষেপসমূহ"
},

View File

@@ -5,7 +5,6 @@
"Forum" : "ফোরাম",
"Search" : "Search",
"Home" : "বাড়ি",
"Users" : "ব্যবহারকারী",
"Collapse" : "ভাঙো",
"Upload failed" : "আপলোড হয়নি",
"Close" : "বন্ধ",
@@ -26,7 +25,6 @@
"Disable" : "নিষ্ক্রিয়",
"Description" : "বিবরণ",
"Enabled" : "কার্যকর",
"New" : "নতুন",
"Reset" : "পূণঃনির্ধানণ",
"Actions" : "পদক্ষেপসমূহ"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -7,8 +7,8 @@ OC.L10N.register(
"Forum" : "Forum",
"Search" : "Klask",
"Home" : "Degemer",
"Preferences" : "Penndibaboù",
"Dashboard" : "Taolenn-stur",
"Users" : "Implijer",
"Categories" : "Rummadoù",
"Hello world!" : "Hello world!",
"List" : "Roll",
@@ -33,12 +33,10 @@ OC.L10N.register(
"Searching …" : "O klask ...",
"Back to {category}" : "Distro da {category}",
"by" : "gant",
"Preferences" : "Penndibaboù",
"Notifications" : "Kemennadennoù",
"Enable" : "Aotreañ",
"Disable" : "Diweredekaat",
"Description" : "Deskrivadur",
"New" : "Nevez",
"Preview" : "Ragwell",
"General settings" : "Stummoù hollek",
"Access control" : "Kontrol tremen",

View File

@@ -5,8 +5,8 @@
"Forum" : "Forum",
"Search" : "Klask",
"Home" : "Degemer",
"Preferences" : "Penndibaboù",
"Dashboard" : "Taolenn-stur",
"Users" : "Implijer",
"Categories" : "Rummadoù",
"Hello world!" : "Hello world!",
"List" : "Roll",
@@ -31,12 +31,10 @@
"Searching …" : "O klask ...",
"Back to {category}" : "Distro da {category}",
"by" : "gant",
"Preferences" : "Penndibaboù",
"Notifications" : "Kemennadennoù",
"Enable" : "Aotreañ",
"Disable" : "Diweredekaat",
"Description" : "Deskrivadur",
"New" : "Nevez",
"Preview" : "Ragwell",
"General settings" : "Stummoù hollek",
"Access control" : "Kontrol tremen",

View File

@@ -11,11 +11,11 @@ OC.L10N.register(
"Underlined text" : "Text subratllat",
"Forum" : "Fòrum",
"Deleted user" : "Usuari suprimit",
"User ID" : "ID de l'usuari",
"Loading …" : "S'està carregant…",
"Search" : "Cercar",
"Home" : "Casa",
"Bookmarks" : "Adreces d'interès",
"Preferences" : "Preferències",
"Dashboard" : "Tauler",
"Categories" : "Categories",
"Moderation" : "Moderació",
@@ -32,6 +32,7 @@ OC.L10N.register(
"Failed to upload file" : "No s'ha pogut pujar el fitxer",
"Category" : "Categoria",
"Allow" : "Permet",
"Change color" : "Canvia el color",
"Account" : "Compte",
"No accounts found" : "Cap compte trobat",
"Cancel" : "Cancel",
@@ -82,7 +83,6 @@ OC.L10N.register(
"Bookmark" : "Adreça d'interès",
"Edit title" : "Edició del títol",
"Move thread" : "Mou el fil",
"Preferences" : "Preferències",
"Notifications" : "Notificacions",
"Files" : "Fitxers",
"Browse" : "Navegació",
@@ -93,7 +93,6 @@ OC.L10N.register(
"Tag" : "Etiqueta",
"Description" : "Descripció",
"Enabled" : "Habilitat",
"New" : "Crea",
"Permissions" : "Permisos",
"Preview" : "Previsualitza",
"Move up" : "Mou amunt",
@@ -114,9 +113,6 @@ OC.L10N.register(
"Actions" : "Accions",
"No teams found" : "No s'ha trobat cap equip",
"Members" : "Membres",
"User management" : "Gestió d'usuaris",
"Loading users …" : "S'estan carregant usuaris …",
"No users found" : "No s'ha trobat cap usuari",
"Joined" : "Unit",
"Active" : "Actiu"
},

View File

@@ -9,11 +9,11 @@
"Underlined text" : "Text subratllat",
"Forum" : "Fòrum",
"Deleted user" : "Usuari suprimit",
"User ID" : "ID de l'usuari",
"Loading …" : "S'està carregant…",
"Search" : "Cercar",
"Home" : "Casa",
"Bookmarks" : "Adreces d'interès",
"Preferences" : "Preferències",
"Dashboard" : "Tauler",
"Categories" : "Categories",
"Moderation" : "Moderació",
@@ -30,6 +30,7 @@
"Failed to upload file" : "No s'ha pogut pujar el fitxer",
"Category" : "Categoria",
"Allow" : "Permet",
"Change color" : "Canvia el color",
"Account" : "Compte",
"No accounts found" : "Cap compte trobat",
"Cancel" : "Cancel",
@@ -80,7 +81,6 @@
"Bookmark" : "Adreça d'interès",
"Edit title" : "Edició del títol",
"Move thread" : "Mou el fil",
"Preferences" : "Preferències",
"Notifications" : "Notificacions",
"Files" : "Fitxers",
"Browse" : "Navegació",
@@ -91,7 +91,6 @@
"Tag" : "Etiqueta",
"Description" : "Descripció",
"Enabled" : "Habilitat",
"New" : "Crea",
"Permissions" : "Permisos",
"Preview" : "Previsualitza",
"Move up" : "Mou amunt",
@@ -112,9 +111,6 @@
"Actions" : "Accions",
"No teams found" : "No s'ha trobat cap equip",
"Members" : "Membres",
"User management" : "Gestió d'usuaris",
"Loading users …" : "S'estan carregant usuaris …",
"No users found" : "No s'ha trobat cap usuari",
"Joined" : "Unit",
"Active" : "Actiu"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -58,9 +58,6 @@ OC.L10N.register(
"Deleted user" : "Smazaný uživatel",
"A community-driven forum built right into your Nextcloud instance" : "Komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud",
"Repair Database Initial Data" : "Opravit úvodní data databáze",
"User Roles" : "Role uživatele",
"User ID" : "Identif. uživatele",
"Enter user ID" : "Zadejte identifikátor uživatele",
"Role" : "Role",
"Select a role" : "Vybrat roli",
"Assign Role" : "Přiřadit roli",
@@ -69,10 +66,9 @@ OC.L10N.register(
"Search" : "Hledat",
"Home" : "Domů",
"Bookmarks" : "Záložky",
"User preferences" : "Předvolby uživatele",
"Preferences" : "Předvolby",
"Dashboard" : "Nástěnka",
"Forum settings" : "Nastavení fóra",
"Users" : "Uživatelé",
"Roles & Teams" : "Role a týmy",
"Categories" : "Kategorie",
"BBCodes" : "BBCodes",
@@ -139,6 +135,7 @@ OC.L10N.register(
"{bStart}Reply:{bEnd} Allows replying to existing threads in the category." : "{bStart} Odpověď:{bEnd} Umožní odpovídání na existující vlákna v kategorii.",
"{bStart}Moderate:{bEnd} Allows editing and deleting posts, pinning, locking, and moving threads in the category." : "{bStart}Moderovat:{bEnd} Umožňuje upravování a mazání příspěvků, zamykání a přesouvání vláken v kategorii.",
"Pick a color" : "Zvolte barvu",
"Change color" : "Změnit barvu",
"Account" : "Účet",
"No accounts found" : "Nenalezeny žádné účty",
"Cancel" : "Zrušit",
@@ -273,10 +270,7 @@ OC.L10N.register(
"Threads ({count})" : "Vlákna ({count})",
"Replies ({count})" : "Odpovědi ({count})",
"No threads" : "Žádná vlákna",
"This user has not created any threads yet" : "Tento uživatel zatím nevytvořil žádná vlákna",
"No replies" : "Žádné odpovědi",
"This user has not written any replies yet" : "Tento uživatel zatím nenapsal žádné odpovědi",
"Failed to load user profile" : "Nepodařilo se načíst uživatelský profil",
"Enter search query …" : "Zadejte vyhledávací dotaz …",
"Search in threads" : "Hledat ve vláknech",
"Search in replies" : "Hledat v odpovědích",
@@ -346,7 +340,6 @@ OC.L10N.register(
"Failed to update bookmark" : "Nepodařilo se zaktualizovat záložku",
"Failed to update thread title" : "Nepodařilo se zaktualizovat nadpis vlákna",
"Failed to move thread" : "Nepodařilo se přesunout vlákno",
"Preferences" : "Předvolby",
"Customize your forum experience" : "Přizpůsobte si svůj dojem z používání fóra",
"Loading preferences …" : "Načítání předvoleb …",
"Error loading preferences" : "Chyba při načítání předvoleb",
@@ -402,14 +395,11 @@ OC.L10N.register(
"Edit category" : "Upravit kategorii",
"Configure category details" : "Podrobnosti nastaveni kategorie",
"Basic information" : "Základní informace",
"Category header" : "Záhlaví kategorie",
"-- Select a header --" : "-- Vybrat záhlaví --",
"Enter category name" : "Zadejte název kategorie",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "Identifikátor vhodný pro URL (např. „{slug}“)",
"Slug cannot be changed after category creation" : "Po vytvoření kategorie už slug není možné změnit",
"Enter category description (optional)" : "Zadejte popis kategorie (volitelné)",
"New" : "Nové",
"Permissions" : "Oprávnění",
"Control which roles and teams can access and moderate this category" : "Určete které role a týmy mohou k této kategorii přistupovat a moderovat v ní",
"Select roles or teams that can view this category and its threads" : "Vyberte role nebo týmy které si mohou tuto kategorie a její vlákna zobrazovat.",
@@ -447,6 +437,7 @@ OC.L10N.register(
"Delete all categories" : "Smazat všechny kategorie",
"All categories and their threads will be permanently deleted" : "Veškeré kategorie a vlákna v nich budou nevratně smazány",
"Select target header" : "Vybrat cílové záhlaví",
"-- Select a header --" : "-- Vybrat záhlaví --",
"Move up" : "Přesunout výše",
"Move down" : "Přesunout dolů",
"Overview of forum activity and statistics" : "Přehled aktivity na fóru a statistiky",
@@ -454,7 +445,6 @@ OC.L10N.register(
"Error loading dashboard" : "Chyba při načítání přehledu",
"Total statistics" : "Celkové statistiky",
"Recent activity (last 7 days)" : "Nedávná aktivita (uplynulých 7 dnů)",
"New users" : "Nový uživatelé",
"New threads" : "Nová vlákna",
"New replies" : "Nové odpovědi",
"Top contributors" : "Nejaktivnější přispěvatelé",
@@ -466,7 +456,6 @@ OC.L10N.register(
"Loading settings …" : "Načítání nastavení …",
"Error loading settings" : "Chyba při načítání nastavení",
"Appearance" : "Vzhled",
"Customize how your forum looks to users" : "Přizpůsobit jako vaše fórum vypadá pro uživatele",
"Forum title" : "Titulek fóra",
"Displayed at the top of the forum home page" : "Zobrazováno v horní části domovské stránky fóra",
"Forum subtitle" : "Podtitul fóra",
@@ -531,19 +520,12 @@ OC.L10N.register(
"Error loading team" : "Chyba při načítání týmu",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Upravování oprávnění kategorie pro tento tým. Členství v týmu je spravováno přes Nextcloud Týmy.",
"Set which categories this team can access" : "Nastavte ke kterým kategoriím může tento tým přistupovat",
"User management" : "Správa uživatelů",
"Manage forum users, roles and permissions" : "Spravovat uživatele fóra, role a oprávnění",
"Loading users …" : "Načítání uživatelů …",
"Error loading users" : "Chyba při načítání uživatelů",
"No users found" : "Nenalezeni žádní uživatelé",
"There are no forum users yet" : "Zatím zde nejsou žádní uživatelé fóra",
"Roles" : "Role",
"Joined" : "Připojený",
"Status" : "Stav",
"Active" : "Aktivní",
"No roles" : "Žádné role",
"Select roles" : "Vybrat role",
"Edit roles" : "Upravit role",
"Edit user roles" : "Upravit role uživatelů"
"Edit roles" : "Upravit role"
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");

View File

@@ -56,9 +56,6 @@
"Deleted user" : "Smazaný uživatel",
"A community-driven forum built right into your Nextcloud instance" : "Komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud",
"Repair Database Initial Data" : "Opravit úvodní data databáze",
"User Roles" : "Role uživatele",
"User ID" : "Identif. uživatele",
"Enter user ID" : "Zadejte identifikátor uživatele",
"Role" : "Role",
"Select a role" : "Vybrat roli",
"Assign Role" : "Přiřadit roli",
@@ -67,10 +64,9 @@
"Search" : "Hledat",
"Home" : "Domů",
"Bookmarks" : "Záložky",
"User preferences" : "Předvolby uživatele",
"Preferences" : "Předvolby",
"Dashboard" : "Nástěnka",
"Forum settings" : "Nastavení fóra",
"Users" : "Uživatelé",
"Roles & Teams" : "Role a týmy",
"Categories" : "Kategorie",
"BBCodes" : "BBCodes",
@@ -137,6 +133,7 @@
"{bStart}Reply:{bEnd} Allows replying to existing threads in the category." : "{bStart} Odpověď:{bEnd} Umožní odpovídání na existující vlákna v kategorii.",
"{bStart}Moderate:{bEnd} Allows editing and deleting posts, pinning, locking, and moving threads in the category." : "{bStart}Moderovat:{bEnd} Umožňuje upravování a mazání příspěvků, zamykání a přesouvání vláken v kategorii.",
"Pick a color" : "Zvolte barvu",
"Change color" : "Změnit barvu",
"Account" : "Účet",
"No accounts found" : "Nenalezeny žádné účty",
"Cancel" : "Zrušit",
@@ -271,10 +268,7 @@
"Threads ({count})" : "Vlákna ({count})",
"Replies ({count})" : "Odpovědi ({count})",
"No threads" : "Žádná vlákna",
"This user has not created any threads yet" : "Tento uživatel zatím nevytvořil žádná vlákna",
"No replies" : "Žádné odpovědi",
"This user has not written any replies yet" : "Tento uživatel zatím nenapsal žádné odpovědi",
"Failed to load user profile" : "Nepodařilo se načíst uživatelský profil",
"Enter search query …" : "Zadejte vyhledávací dotaz …",
"Search in threads" : "Hledat ve vláknech",
"Search in replies" : "Hledat v odpovědích",
@@ -344,7 +338,6 @@
"Failed to update bookmark" : "Nepodařilo se zaktualizovat záložku",
"Failed to update thread title" : "Nepodařilo se zaktualizovat nadpis vlákna",
"Failed to move thread" : "Nepodařilo se přesunout vlákno",
"Preferences" : "Předvolby",
"Customize your forum experience" : "Přizpůsobte si svůj dojem z používání fóra",
"Loading preferences …" : "Načítání předvoleb …",
"Error loading preferences" : "Chyba při načítání předvoleb",
@@ -400,14 +393,11 @@
"Edit category" : "Upravit kategorii",
"Configure category details" : "Podrobnosti nastaveni kategorie",
"Basic information" : "Základní informace",
"Category header" : "Záhlaví kategorie",
"-- Select a header --" : "-- Vybrat záhlaví --",
"Enter category name" : "Zadejte název kategorie",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "Identifikátor vhodný pro URL (např. „{slug}“)",
"Slug cannot be changed after category creation" : "Po vytvoření kategorie už slug není možné změnit",
"Enter category description (optional)" : "Zadejte popis kategorie (volitelné)",
"New" : "Nové",
"Permissions" : "Oprávnění",
"Control which roles and teams can access and moderate this category" : "Určete které role a týmy mohou k této kategorii přistupovat a moderovat v ní",
"Select roles or teams that can view this category and its threads" : "Vyberte role nebo týmy které si mohou tuto kategorie a její vlákna zobrazovat.",
@@ -445,6 +435,7 @@
"Delete all categories" : "Smazat všechny kategorie",
"All categories and their threads will be permanently deleted" : "Veškeré kategorie a vlákna v nich budou nevratně smazány",
"Select target header" : "Vybrat cílové záhlaví",
"-- Select a header --" : "-- Vybrat záhlaví --",
"Move up" : "Přesunout výše",
"Move down" : "Přesunout dolů",
"Overview of forum activity and statistics" : "Přehled aktivity na fóru a statistiky",
@@ -452,7 +443,6 @@
"Error loading dashboard" : "Chyba při načítání přehledu",
"Total statistics" : "Celkové statistiky",
"Recent activity (last 7 days)" : "Nedávná aktivita (uplynulých 7 dnů)",
"New users" : "Nový uživatelé",
"New threads" : "Nová vlákna",
"New replies" : "Nové odpovědi",
"Top contributors" : "Nejaktivnější přispěvatelé",
@@ -464,7 +454,6 @@
"Loading settings …" : "Načítání nastavení …",
"Error loading settings" : "Chyba při načítání nastavení",
"Appearance" : "Vzhled",
"Customize how your forum looks to users" : "Přizpůsobit jako vaše fórum vypadá pro uživatele",
"Forum title" : "Titulek fóra",
"Displayed at the top of the forum home page" : "Zobrazováno v horní části domovské stránky fóra",
"Forum subtitle" : "Podtitul fóra",
@@ -529,19 +518,12 @@
"Error loading team" : "Chyba při načítání týmu",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Upravování oprávnění kategorie pro tento tým. Členství v týmu je spravováno přes Nextcloud Týmy.",
"Set which categories this team can access" : "Nastavte ke kterým kategoriím může tento tým přistupovat",
"User management" : "Správa uživatelů",
"Manage forum users, roles and permissions" : "Spravovat uživatele fóra, role a oprávnění",
"Loading users …" : "Načítání uživatelů …",
"Error loading users" : "Chyba při načítání uživatelů",
"No users found" : "Nenalezeni žádní uživatelé",
"There are no forum users yet" : "Zatím zde nejsou žádní uživatelé fóra",
"Roles" : "Role",
"Joined" : "Připojený",
"Status" : "Stav",
"Active" : "Aktivní",
"No roles" : "Žádné role",
"Select roles" : "Vybrat role",
"Edit roles" : "Upravit role",
"Edit user roles" : "Upravit role uživatelů"
"Edit roles" : "Upravit role"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
}

View File

@@ -9,7 +9,6 @@ OC.L10N.register(
"Search" : "Chwilio",
"Home" : "Cartref",
"Dashboard" : "Bwrdd Rheoli",
"Users" : "Defnyddwyr",
"Categories" : "Categorïau",
"List" : "Rhestr",
"Upload failed" : "Methwyd llwytho i fyny",
@@ -38,7 +37,6 @@ OC.L10N.register(
"Signature" : "Llofnod",
"Disable" : "Analluogi",
"Description" : "Disgrifiad",
"New" : "Newydd",
"Preview" : "Rhagolwg",
"Newest first" : "Diweddaraf gyntaf",
"Oldest first" : "Hynaf gyntaf",

View File

@@ -7,7 +7,6 @@
"Search" : "Chwilio",
"Home" : "Cartref",
"Dashboard" : "Bwrdd Rheoli",
"Users" : "Defnyddwyr",
"Categories" : "Categorïau",
"List" : "Rhestr",
"Upload failed" : "Methwyd llwytho i fyny",
@@ -36,7 +35,6 @@
"Signature" : "Llofnod",
"Disable" : "Analluogi",
"Description" : "Disgrifiad",
"New" : "Newydd",
"Preview" : "Rhagolwg",
"Newest first" : "Diweddaraf gyntaf",
"Oldest first" : "Hynaf gyntaf",

View File

@@ -9,14 +9,13 @@ OC.L10N.register(
"Bold text" : "Fed tekst",
"Underlined text" : "Understreget tekst",
"Forum" : "Forum",
"User ID" : "Bruger ID",
"Role" : "Rolle",
"Loading …" : "Indlæser ...",
"Search" : "Søg",
"Home" : "Hjem",
"Bookmarks" : "Bogmærker",
"Preferences" : "Indstillinger",
"Dashboard" : "Dashboard",
"Users" : "Brugere",
"Categories" : "Kategorier",
"Expand" : "Udvid",
"Collapse" : "Sammenfold",
@@ -77,7 +76,6 @@ OC.L10N.register(
"Bookmark" : "Bogmærke",
"Edit title" : "Redigér titel",
"Move thread" : "Flyt tråden",
"Preferences" : "Indstillinger",
"Notifications" : "Påmindelser",
"Files" : "Filer",
"Signature" : "Underskrift",
@@ -87,7 +85,6 @@ OC.L10N.register(
"This action cannot be undone." : "Denne handling kan ikke fortrydes.",
"Description" : "Beskrivelse",
"Enabled" : "Aktiveret",
"New" : "Nyt",
"Permissions" : "Rettigheder",
"Preview" : "Forhåndsvisning",
"Move up" : "Flyt op",
@@ -107,8 +104,6 @@ OC.L10N.register(
"Actions" : "Handlinger",
"No teams found" : "Ingen teams fundet",
"Members" : "Medlemmer",
"Loading users …" : "Henter brugere ...",
"No users found" : "Ingen brugere fundet",
"Joined" : "Forbind",
"Status" : "Status"
},

View File

@@ -7,14 +7,13 @@
"Bold text" : "Fed tekst",
"Underlined text" : "Understreget tekst",
"Forum" : "Forum",
"User ID" : "Bruger ID",
"Role" : "Rolle",
"Loading …" : "Indlæser ...",
"Search" : "Søg",
"Home" : "Hjem",
"Bookmarks" : "Bogmærker",
"Preferences" : "Indstillinger",
"Dashboard" : "Dashboard",
"Users" : "Brugere",
"Categories" : "Kategorier",
"Expand" : "Udvid",
"Collapse" : "Sammenfold",
@@ -75,7 +74,6 @@
"Bookmark" : "Bogmærke",
"Edit title" : "Redigér titel",
"Move thread" : "Flyt tråden",
"Preferences" : "Indstillinger",
"Notifications" : "Påmindelser",
"Files" : "Filer",
"Signature" : "Underskrift",
@@ -85,7 +83,6 @@
"This action cannot be undone." : "Denne handling kan ikke fortrydes.",
"Description" : "Beskrivelse",
"Enabled" : "Aktiveret",
"New" : "Nyt",
"Permissions" : "Rettigheder",
"Preview" : "Forhåndsvisning",
"Move up" : "Flyt op",
@@ -105,8 +102,6 @@
"Actions" : "Handlinger",
"No teams found" : "Ingen teams fundet",
"Members" : "Medlemmer",
"Loading users …" : "Henter brugere ...",
"No users found" : "Ingen brugere fundet",
"Joined" : "Forbind",
"Status" : "Status"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -64,10 +64,7 @@ OC.L10N.register(
"Repair Database Initial Data" : "Anfangsdaten der Datenbank reparieren",
"Rebuild Statistics" : "Statistiken neu erstellen",
"Recalculate all forum statistics including account post counts, thread counts, and category counters. Use this if statistics appear incorrect or out of sync." : "Alle Forenstatistiken, einschließlich der Anzahl der Kontoposten, der Thread-Anzahl und der Kategoriezähler, neu berechnen. Diese Funktion bitte verwenden, wenn Statistiken falsch oder nicht synchron sind.",
"User Roles" : "Benutzerrollen",
"Assign forum roles to accounts. This allows you to grant administrative or moderator privileges to specific accounts." : "Konten Forenrollen zuweisen. Dadurch können bestimmten Konten Verwaltungs- oder Moderationsrechte gewährt werden.",
"User ID" : "Benutzer-ID",
"Enter user ID" : "Benutzer-ID eingeben",
"Role" : "Rolle",
"Select a role" : "Eine Rolle auswählen",
"Assign Role" : "Rolle zuweisen",
@@ -76,11 +73,10 @@ OC.L10N.register(
"Search" : "Suche",
"Home" : "Startseite",
"Bookmarks" : "Lesezeichen",
"User preferences" : "Benutzereinstellungen",
"Preferences" : "Einstellungen",
"Management" : "Verwaltung",
"Dashboard" : "Dashboard",
"Forum settings" : "Forumseinstellungen",
"Users" : "Benutzer",
"Roles & Teams" : "Rollen und Teams",
"Categories" : "Kategorien",
"BBCodes" : "BBCodes",
@@ -148,9 +144,18 @@ OC.L10N.register(
"{bStart}Moderate:{bEnd} Allows editing and deleting posts, pinning, locking, and moving threads in the category." : "{bStart}Moderieren:{bEnd} Ermöglicht das Bearbeiten und Löschen von Beiträgen, das Anheften, Sperren und Verschieben von Themen in der Kategorie.",
"Pick a color" : "Wähle eine Farbe",
"Change color" : "Farbe ändern",
"No color selected" : "Keine Farbe ausgewählt",
"Assign guest posts to account" : "Gastbeiträge dem Konto zuordnen",
"All posts and threads by this guest will be reassigned to the selected account." : "Alle Beiträge und Threads dieses Gastes werden dem ausgewählten Konto zugeordnet.",
"Search for an account …" : "Nach einem Konto suchen …",
"Account" : "Konto",
"No accounts found" : "Keine Konten gefunden",
"Type to search for an account" : "Tippen, um nach einem Konto zu suchen",
"Cancel" : "Abbrechen",
"Reassign" : "Neu zuordnen",
"Reassigning …" : "Ordne neu zu …",
"Guest posts reassigned successfully" : "Gastbeiträge erfolgreich neu zugeordnet",
"Failed to reassign guest posts" : "Gastbeiträge konnten nicht neu zugeordnet werden",
"Create category header" : "Kategorieüberschrift erstellen",
"Edit category header" : "Kategorieüberschrift bearbeiten",
"Header name" : "Name der Überschrift",
@@ -207,6 +212,7 @@ OC.L10N.register(
"Unread" : "Ungelesen",
"Direct link" : "Direkter Link",
"Direct link copied to clipboard" : "Direkten Link in die Zwischenablage kopiert",
"Assign to account" : "Einem Konto zuordnen",
"Edit your reply …" : "Deine Antwort bearbeiten …",
"Save" : "Speichern",
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
@@ -288,10 +294,7 @@ OC.L10N.register(
"Threads ({count})" : "Themen ({count})",
"Replies ({count})" : "Antworten ({count})",
"No threads" : "Keine Themen",
"This user has not created any threads yet" : "Dieser Benutzer hat bislang noch keine Themen erstellt",
"No replies" : "Keine Antworten",
"This user has not written any replies yet" : "Dieser Benutzer hat noch keine Antworten verfasst",
"Failed to load user profile" : "Benutzerprofil konnte nicht geladen werden",
"Enter search query …" : "Suchanfrage eingeben …",
"Search in threads" : "In Themen suchen",
"Search in replies" : "In den Antworten suchen",
@@ -361,7 +364,6 @@ OC.L10N.register(
"Failed to update bookmark" : "Lesezeichen konnte nicht aktualisiert werden",
"Failed to update thread title" : "Thementitel konnte nicht aktualisiert werden",
"Failed to move thread" : "Thema konnte nicht verschoben werden",
"Preferences" : "Einstellungen",
"Customize your forum experience" : "Dein Forenerlebnis anpassen",
"Loading preferences …" : "Einstellungen laden …",
"Error loading preferences" : "Fehler beim Laden der Einstellungen",
@@ -420,14 +422,11 @@ OC.L10N.register(
"Edit category" : "Kategorie bearbeiten",
"Configure category details" : "Kategoriedetails konfigurieren",
"Basic information" : "Grundlegende Information",
"Category header" : "Kategorieüberschrift",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Enter category name" : "Kategorienamen eingeben",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "URL-freundliche Kennung (z. B. \"{slug}\")",
"Slug cannot be changed after category creation" : "Die Slug kann nach der Erstellung der Kategorie nicht mehr geändert werden.",
"Enter category description (optional)" : "Kategoriebeschreibung eingeben (Optional)",
"New" : "Neu",
"Permissions" : "Berechtigungen",
"Control which roles and teams can access and moderate this category" : "Steuern der Rollen und Teams, die auf diese Kategorie zugreifen und diese moderieren können",
"Select roles or teams that can view this category and its threads" : "Rollen oder Teams auswählen, die dieses Thema und seine Beiträge anzeigen können",
@@ -465,6 +464,7 @@ OC.L10N.register(
"Delete all categories" : "Alle Kategorien löschen",
"All categories and their threads will be permanently deleted" : "Alle Kategorien und ihre Themen werden endgültig gelöscht",
"Select target header" : "Zielüberschrift auswählen",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Move up" : "Nach oben verschieben",
"Move down" : "Nach unten verschieben",
"Management dashboard" : "Verwaltungs-Dashboard",
@@ -473,7 +473,6 @@ OC.L10N.register(
"Error loading dashboard" : "Fehler beim Laden des Dashboards",
"Total statistics" : "Gesamtstatistik",
"Recent activity (last 7 days)" : "Neueste Aktivitäten (letzte 7 Tage)",
"New users" : "Neue Benutzer",
"New threads" : "Neue Themen",
"New replies" : "Neue Antworten",
"Top contributors" : "Top-Beitragende",
@@ -485,7 +484,6 @@ OC.L10N.register(
"Loading settings …" : "Lade Einstellungen …",
"Error loading settings" : "Fehler beim Laden der Einstellungen",
"Appearance" : "Aussehen",
"Customize how your forum looks to users" : "Anpassen, wie das Forum für die Benutzer aussieht.",
"Forum title" : "Forumstitel",
"Displayed at the top of the forum home page" : "Wird oben auf der Startseite des Forums angezeigt",
"Forum subtitle" : "Forumsuntertitel",
@@ -571,19 +569,12 @@ OC.L10N.register(
"Error loading team" : "Fehler beim Laden des Teams",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Bearbeiten der Kategorieberechtigungen für dieses Team. Die Teammitgliedschaft wird über Nextcloud Teams verwaltet.",
"Set which categories this team can access" : "Einstellen, auf welche Kategorien dieses Team Zugriff hat",
"User management" : "Benutzerverwaltung",
"Manage forum users, roles and permissions" : "Forenbenutzer, -rollen und - berechtigungen verwalten",
"Loading users …" : "Lade Benutzer …",
"Error loading users" : "Fehler beim Laden der Benutzer",
"No users found" : "Keine Benutzer gefunden",
"There are no forum users yet" : "Es gibt bislang noch keine Forenbenutzer",
"Roles" : "Rollen",
"Joined" : "Beigetreten",
"Status" : "Status",
"Active" : "Aktiv",
"No roles" : "Keine Rollen",
"Select roles" : "Rollen auswählen",
"Edit roles" : "Rollen bearbeiten",
"Edit user roles" : "Benutzerrollen bearbeiten"
"Edit roles" : "Rollen bearbeiten"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -62,10 +62,7 @@
"Repair Database Initial Data" : "Anfangsdaten der Datenbank reparieren",
"Rebuild Statistics" : "Statistiken neu erstellen",
"Recalculate all forum statistics including account post counts, thread counts, and category counters. Use this if statistics appear incorrect or out of sync." : "Alle Forenstatistiken, einschließlich der Anzahl der Kontoposten, der Thread-Anzahl und der Kategoriezähler, neu berechnen. Diese Funktion bitte verwenden, wenn Statistiken falsch oder nicht synchron sind.",
"User Roles" : "Benutzerrollen",
"Assign forum roles to accounts. This allows you to grant administrative or moderator privileges to specific accounts." : "Konten Forenrollen zuweisen. Dadurch können bestimmten Konten Verwaltungs- oder Moderationsrechte gewährt werden.",
"User ID" : "Benutzer-ID",
"Enter user ID" : "Benutzer-ID eingeben",
"Role" : "Rolle",
"Select a role" : "Eine Rolle auswählen",
"Assign Role" : "Rolle zuweisen",
@@ -74,11 +71,10 @@
"Search" : "Suche",
"Home" : "Startseite",
"Bookmarks" : "Lesezeichen",
"User preferences" : "Benutzereinstellungen",
"Preferences" : "Einstellungen",
"Management" : "Verwaltung",
"Dashboard" : "Dashboard",
"Forum settings" : "Forumseinstellungen",
"Users" : "Benutzer",
"Roles & Teams" : "Rollen und Teams",
"Categories" : "Kategorien",
"BBCodes" : "BBCodes",
@@ -146,9 +142,18 @@
"{bStart}Moderate:{bEnd} Allows editing and deleting posts, pinning, locking, and moving threads in the category." : "{bStart}Moderieren:{bEnd} Ermöglicht das Bearbeiten und Löschen von Beiträgen, das Anheften, Sperren und Verschieben von Themen in der Kategorie.",
"Pick a color" : "Wähle eine Farbe",
"Change color" : "Farbe ändern",
"No color selected" : "Keine Farbe ausgewählt",
"Assign guest posts to account" : "Gastbeiträge dem Konto zuordnen",
"All posts and threads by this guest will be reassigned to the selected account." : "Alle Beiträge und Threads dieses Gastes werden dem ausgewählten Konto zugeordnet.",
"Search for an account …" : "Nach einem Konto suchen …",
"Account" : "Konto",
"No accounts found" : "Keine Konten gefunden",
"Type to search for an account" : "Tippen, um nach einem Konto zu suchen",
"Cancel" : "Abbrechen",
"Reassign" : "Neu zuordnen",
"Reassigning …" : "Ordne neu zu …",
"Guest posts reassigned successfully" : "Gastbeiträge erfolgreich neu zugeordnet",
"Failed to reassign guest posts" : "Gastbeiträge konnten nicht neu zugeordnet werden",
"Create category header" : "Kategorieüberschrift erstellen",
"Edit category header" : "Kategorieüberschrift bearbeiten",
"Header name" : "Name der Überschrift",
@@ -205,6 +210,7 @@
"Unread" : "Ungelesen",
"Direct link" : "Direkter Link",
"Direct link copied to clipboard" : "Direkten Link in die Zwischenablage kopiert",
"Assign to account" : "Einem Konto zuordnen",
"Edit your reply …" : "Deine Antwort bearbeiten …",
"Save" : "Speichern",
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
@@ -286,10 +292,7 @@
"Threads ({count})" : "Themen ({count})",
"Replies ({count})" : "Antworten ({count})",
"No threads" : "Keine Themen",
"This user has not created any threads yet" : "Dieser Benutzer hat bislang noch keine Themen erstellt",
"No replies" : "Keine Antworten",
"This user has not written any replies yet" : "Dieser Benutzer hat noch keine Antworten verfasst",
"Failed to load user profile" : "Benutzerprofil konnte nicht geladen werden",
"Enter search query …" : "Suchanfrage eingeben …",
"Search in threads" : "In Themen suchen",
"Search in replies" : "In den Antworten suchen",
@@ -359,7 +362,6 @@
"Failed to update bookmark" : "Lesezeichen konnte nicht aktualisiert werden",
"Failed to update thread title" : "Thementitel konnte nicht aktualisiert werden",
"Failed to move thread" : "Thema konnte nicht verschoben werden",
"Preferences" : "Einstellungen",
"Customize your forum experience" : "Dein Forenerlebnis anpassen",
"Loading preferences …" : "Einstellungen laden …",
"Error loading preferences" : "Fehler beim Laden der Einstellungen",
@@ -418,14 +420,11 @@
"Edit category" : "Kategorie bearbeiten",
"Configure category details" : "Kategoriedetails konfigurieren",
"Basic information" : "Grundlegende Information",
"Category header" : "Kategorieüberschrift",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Enter category name" : "Kategorienamen eingeben",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "URL-freundliche Kennung (z. B. \"{slug}\")",
"Slug cannot be changed after category creation" : "Die Slug kann nach der Erstellung der Kategorie nicht mehr geändert werden.",
"Enter category description (optional)" : "Kategoriebeschreibung eingeben (Optional)",
"New" : "Neu",
"Permissions" : "Berechtigungen",
"Control which roles and teams can access and moderate this category" : "Steuern der Rollen und Teams, die auf diese Kategorie zugreifen und diese moderieren können",
"Select roles or teams that can view this category and its threads" : "Rollen oder Teams auswählen, die dieses Thema und seine Beiträge anzeigen können",
@@ -463,6 +462,7 @@
"Delete all categories" : "Alle Kategorien löschen",
"All categories and their threads will be permanently deleted" : "Alle Kategorien und ihre Themen werden endgültig gelöscht",
"Select target header" : "Zielüberschrift auswählen",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Move up" : "Nach oben verschieben",
"Move down" : "Nach unten verschieben",
"Management dashboard" : "Verwaltungs-Dashboard",
@@ -471,7 +471,6 @@
"Error loading dashboard" : "Fehler beim Laden des Dashboards",
"Total statistics" : "Gesamtstatistik",
"Recent activity (last 7 days)" : "Neueste Aktivitäten (letzte 7 Tage)",
"New users" : "Neue Benutzer",
"New threads" : "Neue Themen",
"New replies" : "Neue Antworten",
"Top contributors" : "Top-Beitragende",
@@ -483,7 +482,6 @@
"Loading settings …" : "Lade Einstellungen …",
"Error loading settings" : "Fehler beim Laden der Einstellungen",
"Appearance" : "Aussehen",
"Customize how your forum looks to users" : "Anpassen, wie das Forum für die Benutzer aussieht.",
"Forum title" : "Forumstitel",
"Displayed at the top of the forum home page" : "Wird oben auf der Startseite des Forums angezeigt",
"Forum subtitle" : "Forumsuntertitel",
@@ -569,19 +567,12 @@
"Error loading team" : "Fehler beim Laden des Teams",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Bearbeiten der Kategorieberechtigungen für dieses Team. Die Teammitgliedschaft wird über Nextcloud Teams verwaltet.",
"Set which categories this team can access" : "Einstellen, auf welche Kategorien dieses Team Zugriff hat",
"User management" : "Benutzerverwaltung",
"Manage forum users, roles and permissions" : "Forenbenutzer, -rollen und - berechtigungen verwalten",
"Loading users …" : "Lade Benutzer …",
"Error loading users" : "Fehler beim Laden der Benutzer",
"No users found" : "Keine Benutzer gefunden",
"There are no forum users yet" : "Es gibt bislang noch keine Forenbenutzer",
"Roles" : "Rollen",
"Joined" : "Beigetreten",
"Status" : "Status",
"Active" : "Aktiv",
"No roles" : "Keine Rollen",
"Select roles" : "Rollen auswählen",
"Edit roles" : "Rollen bearbeiten",
"Edit user roles" : "Benutzerrollen bearbeiten"
"Edit roles" : "Rollen bearbeiten"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -64,10 +64,7 @@ OC.L10N.register(
"Repair Database Initial Data" : "Anfangsdaten der Datenbank reparieren",
"Rebuild Statistics" : "Statistiken neu erstellen",
"Recalculate all forum statistics including account post counts, thread counts, and category counters. Use this if statistics appear incorrect or out of sync." : "Alle Forenstatistiken, einschließlich der Anzahl der Kontoposten, der Thread-Anzahl und der Kategoriezähler, neu berechnen. Diese Funktion bitte verwenden, wenn Statistiken falsch oder nicht synchron sind.",
"User Roles" : "Benutzerrollen",
"Assign forum roles to accounts. This allows you to grant administrative or moderator privileges to specific accounts." : "Konten Forenrollen zuweisen. Dadurch können bestimmten Konten Verwaltungs- oder Moderationsrechte gewährt werden.",
"User ID" : "Benutzer-ID",
"Enter user ID" : "Benutzer-ID eingeben",
"Role" : "Rolle",
"Select a role" : "Eine Rolle auswählen",
"Assign Role" : "Rolle zuweisen",
@@ -76,11 +73,10 @@ OC.L10N.register(
"Search" : "Suche",
"Home" : "Startseite",
"Bookmarks" : "Lesezeichen",
"User preferences" : "Benutzereinstellungen",
"Preferences" : "Einstellungen",
"Management" : "Verwaltung",
"Dashboard" : "Dashboard",
"Forum settings" : "Forumeinstellungen",
"Users" : "Personen",
"Roles & Teams" : "Rollen und Teams",
"Categories" : "Kategorien",
"BBCodes" : "BBCodes",
@@ -148,9 +144,18 @@ OC.L10N.register(
"{bStart}Moderate:{bEnd} Allows editing and deleting posts, pinning, locking, and moving threads in the category." : "{bStart}Moderieren:{bEnd} Ermöglicht das Bearbeiten und Löschen von Beiträgen, das Anheften, Sperren und Verschieben von Themen in der Kategorie.",
"Pick a color" : "Wählen Sie eine Farbe",
"Change color" : "Farbe ändern",
"No color selected" : "Keine Farbe ausgewählt",
"Assign guest posts to account" : "Gastbeiträge dem Konto zuordnen",
"All posts and threads by this guest will be reassigned to the selected account." : "Alle Beiträge und Threads dieses Gastes werden dem ausgewählten Konto zugeordnet.",
"Search for an account …" : "Nach einem Konto suchen …",
"Account" : "Konto",
"No accounts found" : "Keine Konten gefunden",
"Type to search for an account" : "Tippen, um nach einem Konto zu suchen",
"Cancel" : "Abbrechen",
"Reassign" : "Neu zuordnen",
"Reassigning …" : "Ordne neu zu …",
"Guest posts reassigned successfully" : "Gastbeiträge erfolgreich neu zugeordnet",
"Failed to reassign guest posts" : "Gastbeiträge konnten nicht neu zugeordnet werden",
"Create category header" : "Kategorieüberschrift erstellen",
"Edit category header" : "Kategorieüberschrift bearbeiten",
"Header name" : "Name der Überschrift",
@@ -207,6 +212,7 @@ OC.L10N.register(
"Unread" : "Ungelesen",
"Direct link" : "Direkter Link",
"Direct link copied to clipboard" : "Direkten Link in die Zwischenablage kopiert",
"Assign to account" : "Einem Konto zuordnen",
"Edit your reply …" : "Ihre Antwort bearbeiten …",
"Save" : "Speichern",
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
@@ -288,10 +294,7 @@ OC.L10N.register(
"Threads ({count})" : "Themen ({count})",
"Replies ({count})" : "Antworten ({count})",
"No threads" : "Keine Themen",
"This user has not created any threads yet" : "Dieser Benutzer hat bislang noch keine Themen erstellt",
"No replies" : "Keine Antworten",
"This user has not written any replies yet" : "Dieser Benutzer hat noch keine Antworten verfasst",
"Failed to load user profile" : "Benutzerprofil konnte nicht geladen werden",
"Enter search query …" : "Suchanfrage eingeben …",
"Search in threads" : "In Themen suchen",
"Search in replies" : "In den Antworten suchen",
@@ -361,7 +364,6 @@ OC.L10N.register(
"Failed to update bookmark" : "Lesezeichen konnte nicht aktualisiert werden",
"Failed to update thread title" : "Thementitel konnte nicht aktualisiert werden",
"Failed to move thread" : "Thema konnte nicht verschoben werden",
"Preferences" : "Einstellungen",
"Customize your forum experience" : "Ihr Forenerlebnis anpassen",
"Loading preferences …" : "Einstellungen laden …",
"Error loading preferences" : "Fehler beim Laden der Einstellungen",
@@ -420,14 +422,11 @@ OC.L10N.register(
"Edit category" : "Kategorie bearbeiten",
"Configure category details" : "Kategoriedetails konfigurieren",
"Basic information" : "Grundlegende Information",
"Category header" : "Kategorieüberschrift",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Enter category name" : "Kategorienamen eingeben",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "URL-freundliche Kennung (z. B. \"{slug}\")",
"Slug cannot be changed after category creation" : "Die Slug kann nach der Erstellung der Kategorie nicht mehr geändert werden.",
"Enter category description (optional)" : "Kategoriebeschreibung eingeben (Optional)",
"New" : "Neu",
"Permissions" : "Berechtigungen",
"Control which roles and teams can access and moderate this category" : "Steuern der Rollen und Teams, die auf diese Kategorie zugreifen und diese moderieren können",
"Select roles or teams that can view this category and its threads" : "Rollen oder Teams auswählen, die dieses Thema und seine Beiträge anzeigen können",
@@ -465,6 +464,7 @@ OC.L10N.register(
"Delete all categories" : "Alle Kategorien löschen",
"All categories and their threads will be permanently deleted" : "Alle Kategorien und ihre Themen werden endgültig gelöscht",
"Select target header" : "Zielüberschrift auswählen",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Move up" : "Nach oben verschieben",
"Move down" : "Nach unten verschieben",
"Management dashboard" : "Verwaltungs-Dashboard",
@@ -473,7 +473,6 @@ OC.L10N.register(
"Error loading dashboard" : "Fehler beim Laden des Dashboards",
"Total statistics" : "Gesamtstatistik",
"Recent activity (last 7 days)" : "Neueste Aktivitäten (letzte 7 Tage)",
"New users" : "Neue Benutzer",
"New threads" : "Neue Themen",
"New replies" : "Neue Antworten",
"Top contributors" : "Top-Beitragende",
@@ -485,7 +484,6 @@ OC.L10N.register(
"Loading settings …" : "Lade Einstellungen …",
"Error loading settings" : "Fehler beim Laden der Einstellungen",
"Appearance" : "Aussehen",
"Customize how your forum looks to users" : "Anpassen, wie das Forum die Benutzer aussieht.",
"Forum title" : "Forumstitel",
"Displayed at the top of the forum home page" : "Wird oben auf der Startseite des Forums angezeigt",
"Forum subtitle" : "Forumsuntertitel",
@@ -571,19 +569,12 @@ OC.L10N.register(
"Error loading team" : "Fehler beim Laden des Teams",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Bearbeiten der Kategorieberechtigungen für dieses Team. Die Teammitgliedschaft wird über Nextcloud Teams verwaltet.",
"Set which categories this team can access" : "Einstellen, auf welche Kategorien dieses Team Zugriff hat",
"User management" : "Kontenverwaltung",
"Manage forum users, roles and permissions" : "Forenbenutzer, -rollen und - berechtigungen verwalten",
"Loading users …" : "Lade Konten …",
"Error loading users" : "Fehler beim Laden der Benutzer",
"No users found" : "Keine Benutzer gefunden",
"There are no forum users yet" : "Es gibt bislang noch keine Forenbenutzer",
"Roles" : "Rollen",
"Joined" : "Beigetreten",
"Status" : "Status",
"Active" : "Aktiv",
"No roles" : "Keine Rollen",
"Select roles" : "Rollen auswählen",
"Edit roles" : "Rollen bearbeiten",
"Edit user roles" : "Benutzerrollen bearbeiten"
"Edit roles" : "Rollen bearbeiten"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -62,10 +62,7 @@
"Repair Database Initial Data" : "Anfangsdaten der Datenbank reparieren",
"Rebuild Statistics" : "Statistiken neu erstellen",
"Recalculate all forum statistics including account post counts, thread counts, and category counters. Use this if statistics appear incorrect or out of sync." : "Alle Forenstatistiken, einschließlich der Anzahl der Kontoposten, der Thread-Anzahl und der Kategoriezähler, neu berechnen. Diese Funktion bitte verwenden, wenn Statistiken falsch oder nicht synchron sind.",
"User Roles" : "Benutzerrollen",
"Assign forum roles to accounts. This allows you to grant administrative or moderator privileges to specific accounts." : "Konten Forenrollen zuweisen. Dadurch können bestimmten Konten Verwaltungs- oder Moderationsrechte gewährt werden.",
"User ID" : "Benutzer-ID",
"Enter user ID" : "Benutzer-ID eingeben",
"Role" : "Rolle",
"Select a role" : "Eine Rolle auswählen",
"Assign Role" : "Rolle zuweisen",
@@ -74,11 +71,10 @@
"Search" : "Suche",
"Home" : "Startseite",
"Bookmarks" : "Lesezeichen",
"User preferences" : "Benutzereinstellungen",
"Preferences" : "Einstellungen",
"Management" : "Verwaltung",
"Dashboard" : "Dashboard",
"Forum settings" : "Forumeinstellungen",
"Users" : "Personen",
"Roles & Teams" : "Rollen und Teams",
"Categories" : "Kategorien",
"BBCodes" : "BBCodes",
@@ -146,9 +142,18 @@
"{bStart}Moderate:{bEnd} Allows editing and deleting posts, pinning, locking, and moving threads in the category." : "{bStart}Moderieren:{bEnd} Ermöglicht das Bearbeiten und Löschen von Beiträgen, das Anheften, Sperren und Verschieben von Themen in der Kategorie.",
"Pick a color" : "Wählen Sie eine Farbe",
"Change color" : "Farbe ändern",
"No color selected" : "Keine Farbe ausgewählt",
"Assign guest posts to account" : "Gastbeiträge dem Konto zuordnen",
"All posts and threads by this guest will be reassigned to the selected account." : "Alle Beiträge und Threads dieses Gastes werden dem ausgewählten Konto zugeordnet.",
"Search for an account …" : "Nach einem Konto suchen …",
"Account" : "Konto",
"No accounts found" : "Keine Konten gefunden",
"Type to search for an account" : "Tippen, um nach einem Konto zu suchen",
"Cancel" : "Abbrechen",
"Reassign" : "Neu zuordnen",
"Reassigning …" : "Ordne neu zu …",
"Guest posts reassigned successfully" : "Gastbeiträge erfolgreich neu zugeordnet",
"Failed to reassign guest posts" : "Gastbeiträge konnten nicht neu zugeordnet werden",
"Create category header" : "Kategorieüberschrift erstellen",
"Edit category header" : "Kategorieüberschrift bearbeiten",
"Header name" : "Name der Überschrift",
@@ -205,6 +210,7 @@
"Unread" : "Ungelesen",
"Direct link" : "Direkter Link",
"Direct link copied to clipboard" : "Direkten Link in die Zwischenablage kopiert",
"Assign to account" : "Einem Konto zuordnen",
"Edit your reply …" : "Ihre Antwort bearbeiten …",
"Save" : "Speichern",
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
@@ -286,10 +292,7 @@
"Threads ({count})" : "Themen ({count})",
"Replies ({count})" : "Antworten ({count})",
"No threads" : "Keine Themen",
"This user has not created any threads yet" : "Dieser Benutzer hat bislang noch keine Themen erstellt",
"No replies" : "Keine Antworten",
"This user has not written any replies yet" : "Dieser Benutzer hat noch keine Antworten verfasst",
"Failed to load user profile" : "Benutzerprofil konnte nicht geladen werden",
"Enter search query …" : "Suchanfrage eingeben …",
"Search in threads" : "In Themen suchen",
"Search in replies" : "In den Antworten suchen",
@@ -359,7 +362,6 @@
"Failed to update bookmark" : "Lesezeichen konnte nicht aktualisiert werden",
"Failed to update thread title" : "Thementitel konnte nicht aktualisiert werden",
"Failed to move thread" : "Thema konnte nicht verschoben werden",
"Preferences" : "Einstellungen",
"Customize your forum experience" : "Ihr Forenerlebnis anpassen",
"Loading preferences …" : "Einstellungen laden …",
"Error loading preferences" : "Fehler beim Laden der Einstellungen",
@@ -418,14 +420,11 @@
"Edit category" : "Kategorie bearbeiten",
"Configure category details" : "Kategoriedetails konfigurieren",
"Basic information" : "Grundlegende Information",
"Category header" : "Kategorieüberschrift",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Enter category name" : "Kategorienamen eingeben",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "URL-freundliche Kennung (z. B. \"{slug}\")",
"Slug cannot be changed after category creation" : "Die Slug kann nach der Erstellung der Kategorie nicht mehr geändert werden.",
"Enter category description (optional)" : "Kategoriebeschreibung eingeben (Optional)",
"New" : "Neu",
"Permissions" : "Berechtigungen",
"Control which roles and teams can access and moderate this category" : "Steuern der Rollen und Teams, die auf diese Kategorie zugreifen und diese moderieren können",
"Select roles or teams that can view this category and its threads" : "Rollen oder Teams auswählen, die dieses Thema und seine Beiträge anzeigen können",
@@ -463,6 +462,7 @@
"Delete all categories" : "Alle Kategorien löschen",
"All categories and their threads will be permanently deleted" : "Alle Kategorien und ihre Themen werden endgültig gelöscht",
"Select target header" : "Zielüberschrift auswählen",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Move up" : "Nach oben verschieben",
"Move down" : "Nach unten verschieben",
"Management dashboard" : "Verwaltungs-Dashboard",
@@ -471,7 +471,6 @@
"Error loading dashboard" : "Fehler beim Laden des Dashboards",
"Total statistics" : "Gesamtstatistik",
"Recent activity (last 7 days)" : "Neueste Aktivitäten (letzte 7 Tage)",
"New users" : "Neue Benutzer",
"New threads" : "Neue Themen",
"New replies" : "Neue Antworten",
"Top contributors" : "Top-Beitragende",
@@ -483,7 +482,6 @@
"Loading settings …" : "Lade Einstellungen …",
"Error loading settings" : "Fehler beim Laden der Einstellungen",
"Appearance" : "Aussehen",
"Customize how your forum looks to users" : "Anpassen, wie das Forum die Benutzer aussieht.",
"Forum title" : "Forumstitel",
"Displayed at the top of the forum home page" : "Wird oben auf der Startseite des Forums angezeigt",
"Forum subtitle" : "Forumsuntertitel",
@@ -569,19 +567,12 @@
"Error loading team" : "Fehler beim Laden des Teams",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Bearbeiten der Kategorieberechtigungen für dieses Team. Die Teammitgliedschaft wird über Nextcloud Teams verwaltet.",
"Set which categories this team can access" : "Einstellen, auf welche Kategorien dieses Team Zugriff hat",
"User management" : "Kontenverwaltung",
"Manage forum users, roles and permissions" : "Forenbenutzer, -rollen und - berechtigungen verwalten",
"Loading users …" : "Lade Konten …",
"Error loading users" : "Fehler beim Laden der Benutzer",
"No users found" : "Keine Benutzer gefunden",
"There are no forum users yet" : "Es gibt bislang noch keine Forenbenutzer",
"Roles" : "Rollen",
"Joined" : "Beigetreten",
"Status" : "Status",
"Active" : "Aktiv",
"No roles" : "Keine Rollen",
"Select roles" : "Rollen auswählen",
"Edit roles" : "Rollen bearbeiten",
"Edit user roles" : "Benutzerrollen bearbeiten"
"Edit roles" : "Rollen bearbeiten"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -57,9 +57,6 @@ OC.L10N.register(
"Deleted user" : "Διαγραμμένος χρήστης",
"A community-driven forum built right into your Nextcloud instance" : "Ένα φόρουμ βασισμένο στην κοινότητα, ενσωματωμένο απευθείας στο Nextcloud σας",
"Repair Database Initial Data" : "Επιδιόρθωση Αρχικών Δεδομένων Βάσης Δεδομένων",
"User Roles" : "Ρόλοι Χρηστών",
"User ID" : "ID Χρήστη",
"Enter user ID" : "Εισαγωγή ID χρήστη",
"Role" : "Ρόλος",
"Select a role" : "Επιλέξτε έναν ρόλο",
"Assign Role" : "Ανάθεση Ρόλου",
@@ -68,10 +65,9 @@ OC.L10N.register(
"Search" : "Αναζήτηση",
"Home" : "Αρχική",
"Bookmarks" : "Σελιδοδείκτες",
"User preferences" : "Προτιμήσεις χρήστη",
"Preferences" : "Προτιμήσεις",
"Dashboard" : "Πίνακας ελέγχου",
"Forum settings" : "Ρυθμίσεις φόρουμ",
"Users" : "Χρήστες",
"Categories" : "Κατηγορίες",
"BBCodes" : "BBCode",
"Moderation" : "Συντονισμός",
@@ -240,10 +236,7 @@ OC.L10N.register(
"Threads ({count})" : "Θέματα ({count})",
"Replies ({count})" : "Απαντήσεις ({count})",
"No threads" : "Δεν υπάρχουν θέματα",
"This user has not created any threads yet" : "Αυτός ο χρήστης δεν έχει δημιουργήσει θέματα ακόμα",
"No replies" : "Δεν υπάρχουν απαντήσεις",
"This user has not written any replies yet" : "Αυτός ο χρήστης δεν έχει γράψει απαντήσεις ακόμα",
"Failed to load user profile" : "Αποτυχία φόρτωσης προφίλ χρήστη",
"Enter search query …" : "Εισαγάγετε όρο αναζήτησης …",
"Search in threads" : "Αναζήτηση σε θέματα",
"Search in replies" : "Αναζήτηση σε απαντήσεις",
@@ -312,7 +305,6 @@ OC.L10N.register(
"Failed to update bookmark" : "Αποτυχία ενημέρωσης σελιδοδείκτη",
"Failed to update thread title" : "Αποτυχία ενημέρωσης τίτλου θέματος",
"Failed to move thread" : "Αποτυχία μετακίνησης θέματος",
"Preferences" : "Προτιμήσεις",
"Customize your forum experience" : "Προσαρμόστε την εμπειρία σας στο φόρουμ",
"Loading preferences …" : "Φόρτωση προτιμήσεων …",
"Error loading preferences" : "Σφάλμα κατά τη φόρτωση προτιμήσεων",
@@ -368,14 +360,11 @@ OC.L10N.register(
"Edit category" : "Επεξεργασία κατηγορίας",
"Configure category details" : "Διαμόρφωση λεπτομερειών κατηγορίας",
"Basic information" : "Βασικές πληροφορίες",
"Category header" : "Κεφαλίδα κατηγορίας",
"-- Select a header --" : "-- Επιλέξτε μια κεφαλίδα --",
"Enter category name" : "Εισάγετε όνομα κατηγορίας",
"Slug" : "Slug (αναγνωριστικό URL)",
"URL-friendly identifier (e.g., \"{slug}\")" : "Αναγνωριστικό φιλικό προς το URL (π.χ., \"{slug}\")",
"Slug cannot be changed after category creation" : "Το slug δεν μπορεί να αλλάξει μετά τη δημιουργία της κατηγορίας",
"Enter category description (optional)" : "Εισάγετε περιγραφή κατηγορίας (προαιρετικά)",
"New" : "Νέα",
"Permissions" : "Δικαιώματα",
"Preview" : "Προεπισκόπηση",
"Manage forum categories and organization" : "Διαχείριση κατηγοριών και οργάνωσης του φόρουμ",
@@ -401,6 +390,7 @@ OC.L10N.register(
"Delete all categories" : "Διαγραφή όλων των κατηγοριών",
"All categories and their threads will be permanently deleted" : "Όλες οι κατηγορίες και τα θέματά τους θα διαγραφούν οριστικά",
"Select target header" : "Επιλέξτε κεφαλίδα προορισμού",
"-- Select a header --" : "-- Επιλέξτε μια κεφαλίδα --",
"Move up" : "Μετακίνηση επάνω",
"Move down" : "Μετακίνηση κάτω",
"Overview of forum activity and statistics" : "Επισκόπηση δραστηριότητας και στατιστικών του φόρουμ",
@@ -408,7 +398,6 @@ OC.L10N.register(
"Error loading dashboard" : "Σφάλμα κατά τη φόρτωση του πίνακα ελέγχου",
"Total statistics" : "Συνολικά στατιστικά",
"Recent activity (last 7 days)" : "Πρόσφατη δραστηριότητα (τελευταίες 7 ημέρες)",
"New users" : "Νέοι χρήστες",
"New threads" : "Νέα θέματα",
"New replies" : "Νέες απαντήσεις",
"Top contributors" : "Κορυφαίοι συνεισφέροντες",
@@ -420,7 +409,6 @@ OC.L10N.register(
"Loading settings …" : "Φόρτωση ρυθμίσεων …",
"Error loading settings" : "Σφάλμα κατά τη φόρτωση των ρυθμίσεων",
"Appearance" : "Εμφάνιση",
"Customize how your forum looks to users" : "Προσαρμόστε την εμφάνιση του φόρουμ για τους χρήστες",
"Forum title" : "Τίτλος φόρουμ",
"Displayed at the top of the forum home page" : "Εμφανίζεται στο επάνω μέρος της αρχικής σελίδας του φόρουμ",
"Forum subtitle" : "Υπότιτλος φόρουμ",
@@ -474,19 +462,12 @@ OC.L10N.register(
"System roles cannot be deleted" : "Οι ρόλοι συστήματος δεν μπορούν να διαγραφούν",
"No teams found" : "Δεν βρέθηκαν ομάδες",
"Members" : "Μέλη",
"User management" : "Διαχείριση χρηστών",
"Manage forum users, roles and permissions" : "Διαχείριση χρηστών, ρόλων και δικαιωμάτων του φόρουμ",
"Loading users …" : "Φόρτωση χρηστών …",
"Error loading users" : "Σφάλμα κατά τη φόρτωση των χρηστών",
"No users found" : "Δεν βρέθηκαν χρήστες",
"There are no forum users yet" : "Δεν υπάρχουν ακόμα χρήστες στο φόρουμ",
"Roles" : "Ρόλοι",
"Joined" : "Εγγραφή",
"Status" : "Κατάσταση",
"Active" : "Ενεργός",
"No roles" : "Χωρίς ρόλους",
"Select roles" : "Επιλογή ρόλων",
"Edit roles" : "Επεξεργασία ρόλων",
"Edit user roles" : "Επεξεργασία ρόλων χρήστη"
"Edit roles" : "Επεξεργασία ρόλων"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -55,9 +55,6 @@
"Deleted user" : "Διαγραμμένος χρήστης",
"A community-driven forum built right into your Nextcloud instance" : "Ένα φόρουμ βασισμένο στην κοινότητα, ενσωματωμένο απευθείας στο Nextcloud σας",
"Repair Database Initial Data" : "Επιδιόρθωση Αρχικών Δεδομένων Βάσης Δεδομένων",
"User Roles" : "Ρόλοι Χρηστών",
"User ID" : "ID Χρήστη",
"Enter user ID" : "Εισαγωγή ID χρήστη",
"Role" : "Ρόλος",
"Select a role" : "Επιλέξτε έναν ρόλο",
"Assign Role" : "Ανάθεση Ρόλου",
@@ -66,10 +63,9 @@
"Search" : "Αναζήτηση",
"Home" : "Αρχική",
"Bookmarks" : "Σελιδοδείκτες",
"User preferences" : "Προτιμήσεις χρήστη",
"Preferences" : "Προτιμήσεις",
"Dashboard" : "Πίνακας ελέγχου",
"Forum settings" : "Ρυθμίσεις φόρουμ",
"Users" : "Χρήστες",
"Categories" : "Κατηγορίες",
"BBCodes" : "BBCode",
"Moderation" : "Συντονισμός",
@@ -238,10 +234,7 @@
"Threads ({count})" : "Θέματα ({count})",
"Replies ({count})" : "Απαντήσεις ({count})",
"No threads" : "Δεν υπάρχουν θέματα",
"This user has not created any threads yet" : "Αυτός ο χρήστης δεν έχει δημιουργήσει θέματα ακόμα",
"No replies" : "Δεν υπάρχουν απαντήσεις",
"This user has not written any replies yet" : "Αυτός ο χρήστης δεν έχει γράψει απαντήσεις ακόμα",
"Failed to load user profile" : "Αποτυχία φόρτωσης προφίλ χρήστη",
"Enter search query …" : "Εισαγάγετε όρο αναζήτησης …",
"Search in threads" : "Αναζήτηση σε θέματα",
"Search in replies" : "Αναζήτηση σε απαντήσεις",
@@ -310,7 +303,6 @@
"Failed to update bookmark" : "Αποτυχία ενημέρωσης σελιδοδείκτη",
"Failed to update thread title" : "Αποτυχία ενημέρωσης τίτλου θέματος",
"Failed to move thread" : "Αποτυχία μετακίνησης θέματος",
"Preferences" : "Προτιμήσεις",
"Customize your forum experience" : "Προσαρμόστε την εμπειρία σας στο φόρουμ",
"Loading preferences …" : "Φόρτωση προτιμήσεων …",
"Error loading preferences" : "Σφάλμα κατά τη φόρτωση προτιμήσεων",
@@ -366,14 +358,11 @@
"Edit category" : "Επεξεργασία κατηγορίας",
"Configure category details" : "Διαμόρφωση λεπτομερειών κατηγορίας",
"Basic information" : "Βασικές πληροφορίες",
"Category header" : "Κεφαλίδα κατηγορίας",
"-- Select a header --" : "-- Επιλέξτε μια κεφαλίδα --",
"Enter category name" : "Εισάγετε όνομα κατηγορίας",
"Slug" : "Slug (αναγνωριστικό URL)",
"URL-friendly identifier (e.g., \"{slug}\")" : "Αναγνωριστικό φιλικό προς το URL (π.χ., \"{slug}\")",
"Slug cannot be changed after category creation" : "Το slug δεν μπορεί να αλλάξει μετά τη δημιουργία της κατηγορίας",
"Enter category description (optional)" : "Εισάγετε περιγραφή κατηγορίας (προαιρετικά)",
"New" : "Νέα",
"Permissions" : "Δικαιώματα",
"Preview" : "Προεπισκόπηση",
"Manage forum categories and organization" : "Διαχείριση κατηγοριών και οργάνωσης του φόρουμ",
@@ -399,6 +388,7 @@
"Delete all categories" : "Διαγραφή όλων των κατηγοριών",
"All categories and their threads will be permanently deleted" : "Όλες οι κατηγορίες και τα θέματά τους θα διαγραφούν οριστικά",
"Select target header" : "Επιλέξτε κεφαλίδα προορισμού",
"-- Select a header --" : "-- Επιλέξτε μια κεφαλίδα --",
"Move up" : "Μετακίνηση επάνω",
"Move down" : "Μετακίνηση κάτω",
"Overview of forum activity and statistics" : "Επισκόπηση δραστηριότητας και στατιστικών του φόρουμ",
@@ -406,7 +396,6 @@
"Error loading dashboard" : "Σφάλμα κατά τη φόρτωση του πίνακα ελέγχου",
"Total statistics" : "Συνολικά στατιστικά",
"Recent activity (last 7 days)" : "Πρόσφατη δραστηριότητα (τελευταίες 7 ημέρες)",
"New users" : "Νέοι χρήστες",
"New threads" : "Νέα θέματα",
"New replies" : "Νέες απαντήσεις",
"Top contributors" : "Κορυφαίοι συνεισφέροντες",
@@ -418,7 +407,6 @@
"Loading settings …" : "Φόρτωση ρυθμίσεων …",
"Error loading settings" : "Σφάλμα κατά τη φόρτωση των ρυθμίσεων",
"Appearance" : "Εμφάνιση",
"Customize how your forum looks to users" : "Προσαρμόστε την εμφάνιση του φόρουμ για τους χρήστες",
"Forum title" : "Τίτλος φόρουμ",
"Displayed at the top of the forum home page" : "Εμφανίζεται στο επάνω μέρος της αρχικής σελίδας του φόρουμ",
"Forum subtitle" : "Υπότιτλος φόρουμ",
@@ -472,19 +460,12 @@
"System roles cannot be deleted" : "Οι ρόλοι συστήματος δεν μπορούν να διαγραφούν",
"No teams found" : "Δεν βρέθηκαν ομάδες",
"Members" : "Μέλη",
"User management" : "Διαχείριση χρηστών",
"Manage forum users, roles and permissions" : "Διαχείριση χρηστών, ρόλων και δικαιωμάτων του φόρουμ",
"Loading users …" : "Φόρτωση χρηστών …",
"Error loading users" : "Σφάλμα κατά τη φόρτωση των χρηστών",
"No users found" : "Δεν βρέθηκαν χρήστες",
"There are no forum users yet" : "Δεν υπάρχουν ακόμα χρήστες στο φόρουμ",
"Roles" : "Ρόλοι",
"Joined" : "Εγγραφή",
"Status" : "Κατάσταση",
"Active" : "Ενεργός",
"No roles" : "Χωρίς ρόλους",
"Select roles" : "Επιλογή ρόλων",
"Edit roles" : "Επεξεργασία ρόλων",
"Edit user roles" : "Επεξεργασία ρόλων χρήστη"
"Edit roles" : "Επεξεργασία ρόλων"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -64,10 +64,7 @@ OC.L10N.register(
"Repair Database Initial Data" : "Repair Database Initial Data",
"Rebuild Statistics" : "Rebuild Statistics",
"Recalculate all forum statistics including account post counts, thread counts, and category counters. Use this if statistics appear incorrect or out of sync." : "Recalculate all forum statistics including account post counts, thread counts, and category counters. Use this if statistics appear incorrect or out of sync.",
"User Roles" : "User Roles",
"Assign forum roles to accounts. This allows you to grant administrative or moderator privileges to specific accounts." : "Assign forum roles to accounts. This allows you to grant administrative or moderator privileges to specific accounts.",
"User ID" : "User ID",
"Enter user ID" : "Enter user ID",
"Role" : "Role",
"Select a role" : "Select a role",
"Assign Role" : "Assign Role",
@@ -76,11 +73,10 @@ OC.L10N.register(
"Search" : "Search",
"Home" : "Home",
"Bookmarks" : "Bookmarks",
"User preferences" : "User preferences",
"Preferences" : "Preferences",
"Management" : "Management",
"Dashboard" : "Dashboard",
"Forum settings" : "Forum settings",
"Users" : "Users",
"Roles & Teams" : "Roles & Teams",
"Categories" : "Categories",
"BBCodes" : "BBCodes",
@@ -287,10 +283,7 @@ OC.L10N.register(
"Threads ({count})" : "Threads ({count})",
"Replies ({count})" : "Replies ({count})",
"No threads" : "No threads",
"This user has not created any threads yet" : "This user has not created any threads yet",
"No replies" : "No replies",
"This user has not written any replies yet" : "This user has not written any replies yet",
"Failed to load user profile" : "Failed to load user profile",
"Enter search query …" : "Enter search query …",
"Search in threads" : "Search in threads",
"Search in replies" : "Search in replies",
@@ -360,7 +353,6 @@ OC.L10N.register(
"Failed to update bookmark" : "Failed to update bookmark",
"Failed to update thread title" : "Failed to update thread title",
"Failed to move thread" : "Failed to move thread",
"Preferences" : "Preferences",
"Customize your forum experience" : "Customize your forum experience",
"Loading preferences …" : "Loading preferences …",
"Error loading preferences" : "Error loading preferences",
@@ -419,14 +411,11 @@ OC.L10N.register(
"Edit category" : "Edit category",
"Configure category details" : "Configure category details",
"Basic information" : "Basic information",
"Category header" : "Category header",
"-- Select a header --" : "-- Select a header --",
"Enter category name" : "Enter category name",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "URL-friendly identifier (e.g., \"{slug}\")",
"Slug cannot be changed after category creation" : "Slug cannot be changed after category creation",
"Enter category description (optional)" : "Enter category description (optional)",
"New" : "New",
"Permissions" : "Permissions",
"Control which roles and teams can access and moderate this category" : "Control which roles and teams can access and moderate this category",
"Select roles or teams that can view this category and its threads" : "Select roles or teams that can view this category and its threads",
@@ -464,6 +453,7 @@ OC.L10N.register(
"Delete all categories" : "Delete all categories",
"All categories and their threads will be permanently deleted" : "All categories and their threads will be permanently deleted",
"Select target header" : "Select target header",
"-- Select a header --" : "-- Select a header --",
"Move up" : "Move up",
"Move down" : "Move down",
"Management dashboard" : "Management dashboard",
@@ -472,7 +462,6 @@ OC.L10N.register(
"Error loading dashboard" : "Error loading dashboard",
"Total statistics" : "Total statistics",
"Recent activity (last 7 days)" : "Recent activity (last 7 days)",
"New users" : "New users",
"New threads" : "New threads",
"New replies" : "New replies",
"Top contributors" : "Top contributors",
@@ -484,7 +473,6 @@ OC.L10N.register(
"Loading settings …" : "Loading settings …",
"Error loading settings" : "Error loading settings",
"Appearance" : "Appearance",
"Customize how your forum looks to users" : "Customize how your forum looks to users",
"Forum title" : "Forum title",
"Displayed at the top of the forum home page" : "Displayed at the top of the forum home page",
"Forum subtitle" : "Forum subtitle",
@@ -570,19 +558,12 @@ OC.L10N.register(
"Error loading team" : "Error loading team",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Editing category permissions for this team. Team membership is managed via Nextcloud Teams.",
"Set which categories this team can access" : "Set which categories this team can access",
"User management" : "User management",
"Manage forum users, roles and permissions" : "Manage forum users, roles and permissions",
"Loading users …" : "Loading users …",
"Error loading users" : "Error loading users",
"No users found" : "No users found",
"There are no forum users yet" : "There are no forum users yet",
"Roles" : "Roles",
"Joined" : "Joined",
"Status" : "Status",
"Active" : "Active",
"No roles" : "No roles",
"Select roles" : "Select roles",
"Edit roles" : "Edit roles",
"Edit user roles" : "Edit user roles"
"Edit roles" : "Edit roles"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -62,10 +62,7 @@
"Repair Database Initial Data" : "Repair Database Initial Data",
"Rebuild Statistics" : "Rebuild Statistics",
"Recalculate all forum statistics including account post counts, thread counts, and category counters. Use this if statistics appear incorrect or out of sync." : "Recalculate all forum statistics including account post counts, thread counts, and category counters. Use this if statistics appear incorrect or out of sync.",
"User Roles" : "User Roles",
"Assign forum roles to accounts. This allows you to grant administrative or moderator privileges to specific accounts." : "Assign forum roles to accounts. This allows you to grant administrative or moderator privileges to specific accounts.",
"User ID" : "User ID",
"Enter user ID" : "Enter user ID",
"Role" : "Role",
"Select a role" : "Select a role",
"Assign Role" : "Assign Role",
@@ -74,11 +71,10 @@
"Search" : "Search",
"Home" : "Home",
"Bookmarks" : "Bookmarks",
"User preferences" : "User preferences",
"Preferences" : "Preferences",
"Management" : "Management",
"Dashboard" : "Dashboard",
"Forum settings" : "Forum settings",
"Users" : "Users",
"Roles & Teams" : "Roles & Teams",
"Categories" : "Categories",
"BBCodes" : "BBCodes",
@@ -285,10 +281,7 @@
"Threads ({count})" : "Threads ({count})",
"Replies ({count})" : "Replies ({count})",
"No threads" : "No threads",
"This user has not created any threads yet" : "This user has not created any threads yet",
"No replies" : "No replies",
"This user has not written any replies yet" : "This user has not written any replies yet",
"Failed to load user profile" : "Failed to load user profile",
"Enter search query …" : "Enter search query …",
"Search in threads" : "Search in threads",
"Search in replies" : "Search in replies",
@@ -358,7 +351,6 @@
"Failed to update bookmark" : "Failed to update bookmark",
"Failed to update thread title" : "Failed to update thread title",
"Failed to move thread" : "Failed to move thread",
"Preferences" : "Preferences",
"Customize your forum experience" : "Customize your forum experience",
"Loading preferences …" : "Loading preferences …",
"Error loading preferences" : "Error loading preferences",
@@ -417,14 +409,11 @@
"Edit category" : "Edit category",
"Configure category details" : "Configure category details",
"Basic information" : "Basic information",
"Category header" : "Category header",
"-- Select a header --" : "-- Select a header --",
"Enter category name" : "Enter category name",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "URL-friendly identifier (e.g., \"{slug}\")",
"Slug cannot be changed after category creation" : "Slug cannot be changed after category creation",
"Enter category description (optional)" : "Enter category description (optional)",
"New" : "New",
"Permissions" : "Permissions",
"Control which roles and teams can access and moderate this category" : "Control which roles and teams can access and moderate this category",
"Select roles or teams that can view this category and its threads" : "Select roles or teams that can view this category and its threads",
@@ -462,6 +451,7 @@
"Delete all categories" : "Delete all categories",
"All categories and their threads will be permanently deleted" : "All categories and their threads will be permanently deleted",
"Select target header" : "Select target header",
"-- Select a header --" : "-- Select a header --",
"Move up" : "Move up",
"Move down" : "Move down",
"Management dashboard" : "Management dashboard",
@@ -470,7 +460,6 @@
"Error loading dashboard" : "Error loading dashboard",
"Total statistics" : "Total statistics",
"Recent activity (last 7 days)" : "Recent activity (last 7 days)",
"New users" : "New users",
"New threads" : "New threads",
"New replies" : "New replies",
"Top contributors" : "Top contributors",
@@ -482,7 +471,6 @@
"Loading settings …" : "Loading settings …",
"Error loading settings" : "Error loading settings",
"Appearance" : "Appearance",
"Customize how your forum looks to users" : "Customize how your forum looks to users",
"Forum title" : "Forum title",
"Displayed at the top of the forum home page" : "Displayed at the top of the forum home page",
"Forum subtitle" : "Forum subtitle",
@@ -568,19 +556,12 @@
"Error loading team" : "Error loading team",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Editing category permissions for this team. Team membership is managed via Nextcloud Teams.",
"Set which categories this team can access" : "Set which categories this team can access",
"User management" : "User management",
"Manage forum users, roles and permissions" : "Manage forum users, roles and permissions",
"Loading users …" : "Loading users …",
"Error loading users" : "Error loading users",
"No users found" : "No users found",
"There are no forum users yet" : "There are no forum users yet",
"Roles" : "Roles",
"Joined" : "Joined",
"Status" : "Status",
"Active" : "Active",
"No roles" : "No roles",
"Select roles" : "Select roles",
"Edit roles" : "Edit roles",
"Edit user roles" : "Edit user roles"
"Edit roles" : "Edit roles"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -11,7 +11,6 @@ OC.L10N.register(
"Home" : "Hejmo",
"Bookmarks" : "Legosignaro",
"Dashboard" : "Regpanelo",
"Users" : "Uzantoj",
"Categories" : "Kategorioj",
"Collapse" : "Maletendi",
"Hello world!" : "Saluton, mondo!",
@@ -51,7 +50,6 @@ OC.L10N.register(
"Enable" : "Ŝalti",
"Disable" : "Malŝalti",
"Description" : "Priskribo",
"New" : "Nova",
"Preview" : "Antaŭvidi",
"Move down" : "Movi malsupren",
"Last 7 days" : "Lastaj 7 tagoj",

View File

@@ -9,7 +9,6 @@
"Home" : "Hejmo",
"Bookmarks" : "Legosignaro",
"Dashboard" : "Regpanelo",
"Users" : "Uzantoj",
"Categories" : "Kategorioj",
"Collapse" : "Maletendi",
"Hello world!" : "Saluton, mondo!",
@@ -49,7 +48,6 @@
"Enable" : "Ŝalti",
"Disable" : "Malŝalti",
"Description" : "Priskribo",
"New" : "Nova",
"Preview" : "Antaŭvidi",
"Move down" : "Movi malsupren",
"Last 7 days" : "Lastaj 7 tagoj",

View File

@@ -54,9 +54,6 @@ OC.L10N.register(
"Deleted user" : "Usuario eliminado",
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado por la comunidad integrado en su instancia de Nextcloud",
"Repair Database Initial Data" : "Reparar datos iniciales de la base de datos",
"User Roles" : "Roles de usuario",
"User ID" : "ID de usuario",
"Enter user ID" : "Introduzca el ID de usuario",
"Role" : "Cargo",
"Select a role" : "Seleccionar un rol",
"Assign Role" : "Asignar un rol",
@@ -65,10 +62,9 @@ OC.L10N.register(
"Search" : "Buscar",
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"User preferences" : "Preferencias del usuario",
"Preferences" : "Preferencias",
"Dashboard" : "Dashboard",
"Forum settings" : "Configuración del foro",
"Users" : "Usuarios",
"Categories" : "Categorías",
"BBCodes" : "Códigos BBCodes",
"Moderation" : "Moderación",
@@ -162,7 +158,6 @@ OC.L10N.register(
"Bookmark" : "Marcador",
"Edit title" : "Editar título",
"Move thread" : "Mover hilo",
"Preferences" : "Preferencias",
"Notifications" : "Notificaciones",
"Files" : "Archivos",
"Browse" : "Explorar",
@@ -174,7 +169,6 @@ OC.L10N.register(
"Tag" : "Etiqueta",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Vista previa",
"Move up" : "Mover hacia arriba",
@@ -196,9 +190,6 @@ OC.L10N.register(
"No description" : "Sin descripción",
"No teams found" : "No se encontraron equipos",
"Members" : "Miembros",
"User management" : "Administración de usuarios",
"Loading users …" : "Cargando usuarios …",
"No users found" : "No se han encontrado usuarios",
"Roles" : "Roles",
"Joined" : "Se unió",
"Status" : "Estado",

View File

@@ -52,9 +52,6 @@
"Deleted user" : "Usuario eliminado",
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado por la comunidad integrado en su instancia de Nextcloud",
"Repair Database Initial Data" : "Reparar datos iniciales de la base de datos",
"User Roles" : "Roles de usuario",
"User ID" : "ID de usuario",
"Enter user ID" : "Introduzca el ID de usuario",
"Role" : "Cargo",
"Select a role" : "Seleccionar un rol",
"Assign Role" : "Asignar un rol",
@@ -63,10 +60,9 @@
"Search" : "Buscar",
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"User preferences" : "Preferencias del usuario",
"Preferences" : "Preferencias",
"Dashboard" : "Dashboard",
"Forum settings" : "Configuración del foro",
"Users" : "Usuarios",
"Categories" : "Categorías",
"BBCodes" : "Códigos BBCodes",
"Moderation" : "Moderación",
@@ -160,7 +156,6 @@
"Bookmark" : "Marcador",
"Edit title" : "Editar título",
"Move thread" : "Mover hilo",
"Preferences" : "Preferencias",
"Notifications" : "Notificaciones",
"Files" : "Archivos",
"Browse" : "Explorar",
@@ -172,7 +167,6 @@
"Tag" : "Etiqueta",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Vista previa",
"Move up" : "Mover hacia arriba",
@@ -194,9 +188,6 @@
"No description" : "Sin descripción",
"No teams found" : "No se encontraron equipos",
"Members" : "Miembros",
"User management" : "Administración de usuarios",
"Loading users …" : "Cargando usuarios …",
"No users found" : "No se han encontrado usuarios",
"Roles" : "Roles",
"Joined" : "Se unió",
"Status" : "Estado",

View File

@@ -10,7 +10,6 @@ OC.L10N.register(
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero",
"Users" : "Ususarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -41,7 +40,6 @@ OC.L10N.register(
"Signature" : "Firma",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -8,7 +8,6 @@
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero",
"Users" : "Ususarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -39,7 +38,6 @@
"Signature" : "Firma",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -10,7 +10,7 @@ OC.L10N.register(
"Role" : "Rol",
"Search" : "Buscar",
"Home" : "Casa",
"Users" : "Usuarios",
"Preferences" : "Preferencias",
"Categories" : "Categoría",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -40,14 +40,12 @@ OC.L10N.register(
"Back to {category}" : "Volver a {category}",
"by" : "por",
"Subscribe" : "Suscribirse",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Signature" : "Firma",
"Enable" : "Activar",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Vista previa",
"All time" : "Tiempo total",
@@ -61,7 +59,6 @@ OC.L10N.register(
"ID" : "ID",
"Actions" : "Acciones",
"Members" : "Miembros",
"Loading users …" : "Cargando usuarios...",
"Joined" : "Se ha unido"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

View File

@@ -8,7 +8,7 @@
"Role" : "Rol",
"Search" : "Buscar",
"Home" : "Casa",
"Users" : "Usuarios",
"Preferences" : "Preferencias",
"Categories" : "Categoría",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -38,14 +38,12 @@
"Back to {category}" : "Volver a {category}",
"by" : "por",
"Subscribe" : "Suscribirse",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Signature" : "Firma",
"Enable" : "Activar",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Vista previa",
"All time" : "Tiempo total",
@@ -59,7 +57,6 @@
"ID" : "ID",
"Actions" : "Acciones",
"Members" : "Miembros",
"Loading users …" : "Cargando usuarios...",
"Joined" : "Se ha unido"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

View File

@@ -10,7 +10,6 @@ OC.L10N.register(
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Inicio",
"Users" : "Ususarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -42,7 +41,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -8,7 +8,6 @@
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Inicio",
"Users" : "Ususarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -40,7 +39,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -9,8 +9,8 @@ OC.L10N.register(
"Search" : "Buscar",
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Preferences" : "Preferencias",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -38,13 +38,11 @@ OC.L10N.register(
"Created" : "Creado",
"by" : "por",
"Subscribe" : "Suscribir",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Signature" : "Firma",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -7,8 +7,8 @@
"Search" : "Buscar",
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Preferences" : "Preferencias",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -36,13 +36,11 @@
"Created" : "Creado",
"by" : "por",
"Subscribe" : "Suscribir",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Signature" : "Firma",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -10,7 +10,6 @@ OC.L10N.register(
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -43,7 +42,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -8,7 +8,6 @@
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -41,7 +40,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -10,7 +10,6 @@ OC.L10N.register(
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -45,7 +44,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -8,7 +8,6 @@
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -43,7 +42,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -42,16 +42,14 @@ OC.L10N.register(
"Welcome to the forum!" : "¡Bienvenido al foro!",
"Deleted user" : "Usuario eliminado",
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado por la comunidad integrado directamente en tu instancia de Nextcloud",
"User ID" : "ID de usuario",
"Role" : "Rol",
"Loading …" : "Cargando …",
"Search" : "Buscar",
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"User preferences" : "Preferencias de usuario",
"Preferences" : "Preferencias",
"Dashboard" : "Panel",
"Forum settings" : "Configuración del foro",
"Users" : "Usuarios",
"Categories" : "Categorías",
"BBCodes" : "BBCodes",
"Moderation" : "Moderación",
@@ -180,9 +178,7 @@ OC.L10N.register(
"Threads ({count})" : "Hilos ({count})",
"Replies ({count})" : "Respuestas ({count})",
"No threads" : "No hay hilos",
"This user has not created any threads yet" : "Este usuario aún no ha creado ningún hilo",
"No replies" : "No hay respuestas",
"Failed to load user profile" : "Error al cargar el perfil del usuario",
"Enter search query …" : "Ingresa tu consulta de búsqueda …",
"Search in threads" : "Buscar en hilos",
"Syntax help" : "Ayuda de sintaxis",
@@ -229,7 +225,6 @@ OC.L10N.register(
"Failed to update thread lock status" : "Error al actualizar estado de bloqueo del hilo",
"Failed to update thread pin status" : "Error al actualizar estado de fijación del hilo",
"Failed to update subscription" : "Error al actualizar suscripción",
"Preferences" : "Preferencias",
"Customize your forum experience" : "Personaliza tu experiencia en el foro",
"Loading preferences …" : "Cargando preferencias …",
"Error loading preferences" : "Error al cargar preferencias",
@@ -273,13 +268,10 @@ OC.L10N.register(
"Edit category" : "Editar categoría",
"Configure category details" : "Configurar detalles de la categoría",
"Basic information" : "Información básica",
"Category header" : "Encabezado de categoría",
"-- Select a header --" : "-- Selecciona un encabezado --",
"Enter category name" : "Ingresa el nombre de la categoría",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "Identificador amigable para URL (ej., \"{slug}\")",
"Enter category description (optional)" : "Ingresa la descripción de la categoría (opcional)",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"Manage forum categories and organization" : "Gestionar categorías y organización del foro",
@@ -305,6 +297,7 @@ OC.L10N.register(
"Delete all categories" : "Eliminar todas las categorías",
"All categories and their threads will be permanently deleted" : "Todas las categorías y sus hilos serán eliminados permanentemente",
"Select target header" : "Seleccionar encabezado de destino",
"-- Select a header --" : "-- Selecciona un encabezado --",
"Move up" : "Mover arriba",
"Move down" : "Mover abajo",
"Overview of forum activity and statistics" : "Resumen de la actividad y estadísticas del foro",
@@ -312,7 +305,6 @@ OC.L10N.register(
"Error loading dashboard" : "Error al cargar panel",
"Total statistics" : "Estadísticas totales",
"Recent activity (last 7 days)" : "Actividad reciente (últimos 7 días)",
"New users" : "Nuevos usuarios",
"New threads" : "Nuevos hilos",
"Top contributors" : "Principales contribuyentes",
"No contributors yet" : "Aún no hay contribuyentes",
@@ -323,7 +315,6 @@ OC.L10N.register(
"Loading settings …" : "Cargando ajustes …",
"Error loading settings" : "Error al cargar ajustes",
"Appearance" : "Apariencia",
"Customize how your forum looks to users" : "Personaliza cómo se ve tu foro para los usuarios",
"Forum title" : "Título del foro",
"Displayed at the top of the forum home page" : "Se muestra en la parte superior de la página principal del foro",
"Forum subtitle" : "Subtítulo del foro",
@@ -375,19 +366,12 @@ OC.L10N.register(
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "¿Estás seguro de que deseas eliminar el rol \"{name}\"? Esta acción no se puede deshacer.",
"System roles cannot be deleted" : "Los roles del sistema no se pueden eliminar",
"Members" : "Miembros",
"User management" : "Gestión de usuarios",
"Manage forum users, roles and permissions" : "Gestionar usuarios del foro, roles y permisos",
"Loading users …" : "Cargando usuarios …",
"Error loading users" : "Error al cargar usuarios",
"No users found" : "No se encontraron usuarios",
"There are no forum users yet" : "Aún no hay usuarios en el foro",
"Roles" : "Roles",
"Joined" : "Se unió",
"Status" : "Estado",
"Active" : "Activo",
"No roles" : "Sin roles",
"Select roles" : "Seleccionar roles",
"Edit roles" : "Editar roles",
"Edit user roles" : "Editar roles de usuario"
"Edit roles" : "Editar roles"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

View File

@@ -40,16 +40,14 @@
"Welcome to the forum!" : "¡Bienvenido al foro!",
"Deleted user" : "Usuario eliminado",
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado por la comunidad integrado directamente en tu instancia de Nextcloud",
"User ID" : "ID de usuario",
"Role" : "Rol",
"Loading …" : "Cargando …",
"Search" : "Buscar",
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"User preferences" : "Preferencias de usuario",
"Preferences" : "Preferencias",
"Dashboard" : "Panel",
"Forum settings" : "Configuración del foro",
"Users" : "Usuarios",
"Categories" : "Categorías",
"BBCodes" : "BBCodes",
"Moderation" : "Moderación",
@@ -178,9 +176,7 @@
"Threads ({count})" : "Hilos ({count})",
"Replies ({count})" : "Respuestas ({count})",
"No threads" : "No hay hilos",
"This user has not created any threads yet" : "Este usuario aún no ha creado ningún hilo",
"No replies" : "No hay respuestas",
"Failed to load user profile" : "Error al cargar el perfil del usuario",
"Enter search query …" : "Ingresa tu consulta de búsqueda …",
"Search in threads" : "Buscar en hilos",
"Syntax help" : "Ayuda de sintaxis",
@@ -227,7 +223,6 @@
"Failed to update thread lock status" : "Error al actualizar estado de bloqueo del hilo",
"Failed to update thread pin status" : "Error al actualizar estado de fijación del hilo",
"Failed to update subscription" : "Error al actualizar suscripción",
"Preferences" : "Preferencias",
"Customize your forum experience" : "Personaliza tu experiencia en el foro",
"Loading preferences …" : "Cargando preferencias …",
"Error loading preferences" : "Error al cargar preferencias",
@@ -271,13 +266,10 @@
"Edit category" : "Editar categoría",
"Configure category details" : "Configurar detalles de la categoría",
"Basic information" : "Información básica",
"Category header" : "Encabezado de categoría",
"-- Select a header --" : "-- Selecciona un encabezado --",
"Enter category name" : "Ingresa el nombre de la categoría",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "Identificador amigable para URL (ej., \"{slug}\")",
"Enter category description (optional)" : "Ingresa la descripción de la categoría (opcional)",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"Manage forum categories and organization" : "Gestionar categorías y organización del foro",
@@ -303,6 +295,7 @@
"Delete all categories" : "Eliminar todas las categorías",
"All categories and their threads will be permanently deleted" : "Todas las categorías y sus hilos serán eliminados permanentemente",
"Select target header" : "Seleccionar encabezado de destino",
"-- Select a header --" : "-- Selecciona un encabezado --",
"Move up" : "Mover arriba",
"Move down" : "Mover abajo",
"Overview of forum activity and statistics" : "Resumen de la actividad y estadísticas del foro",
@@ -310,7 +303,6 @@
"Error loading dashboard" : "Error al cargar panel",
"Total statistics" : "Estadísticas totales",
"Recent activity (last 7 days)" : "Actividad reciente (últimos 7 días)",
"New users" : "Nuevos usuarios",
"New threads" : "Nuevos hilos",
"Top contributors" : "Principales contribuyentes",
"No contributors yet" : "Aún no hay contribuyentes",
@@ -321,7 +313,6 @@
"Loading settings …" : "Cargando ajustes …",
"Error loading settings" : "Error al cargar ajustes",
"Appearance" : "Apariencia",
"Customize how your forum looks to users" : "Personaliza cómo se ve tu foro para los usuarios",
"Forum title" : "Título del foro",
"Displayed at the top of the forum home page" : "Se muestra en la parte superior de la página principal del foro",
"Forum subtitle" : "Subtítulo del foro",
@@ -373,19 +364,12 @@
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "¿Estás seguro de que deseas eliminar el rol \"{name}\"? Esta acción no se puede deshacer.",
"System roles cannot be deleted" : "Los roles del sistema no se pueden eliminar",
"Members" : "Miembros",
"User management" : "Gestión de usuarios",
"Manage forum users, roles and permissions" : "Gestionar usuarios del foro, roles y permisos",
"Loading users …" : "Cargando usuarios …",
"Error loading users" : "Error al cargar usuarios",
"No users found" : "No se encontraron usuarios",
"There are no forum users yet" : "Aún no hay usuarios en el foro",
"Roles" : "Roles",
"Joined" : "Se unió",
"Status" : "Estado",
"Active" : "Activo",
"No roles" : "Sin roles",
"Select roles" : "Seleccionar roles",
"Edit roles" : "Editar roles",
"Edit user roles" : "Editar roles de usuario"
"Edit roles" : "Editar roles"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

View File

@@ -10,7 +10,6 @@ OC.L10N.register(
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -44,7 +43,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -8,7 +8,6 @@
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -42,7 +41,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -10,7 +10,6 @@ OC.L10N.register(
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -43,7 +42,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -8,7 +8,6 @@
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -41,7 +40,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -9,14 +9,13 @@ OC.L10N.register(
"Bold text" : "Texto en negritas",
"Underlined text" : "Texto subrayado",
"Forum" : "Foro",
"User ID" : "ID de usuario",
"Role" : "Cargo",
"Loading …" : "Cargando …",
"Search" : "Buscar",
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Preferences" : "Preferencias",
"Dashboard" : "Tablero de control",
"Users" : " Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -65,7 +64,6 @@ OC.L10N.register(
"Subscribed" : "Suscrito",
"Bookmark" : "Marcador",
"Move thread" : "Mover hilo",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Signature" : "Firma",
"Privacy" : "Privacidad",
@@ -73,7 +71,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"Move up" : "Mover arriba",
@@ -94,9 +91,6 @@ OC.L10N.register(
"Actions" : "Acciones",
"No teams found" : "No se encontraron equipos",
"Members" : "Miembros",
"User management" : "Administración de usuarios",
"Loading users …" : "Cargando usuarios …",
"No users found" : "No se encontraron usuarios",
"Joined" : "Se ha unido",
"Active" : "Activo"
},

View File

@@ -7,14 +7,13 @@
"Bold text" : "Texto en negritas",
"Underlined text" : "Texto subrayado",
"Forum" : "Foro",
"User ID" : "ID de usuario",
"Role" : "Cargo",
"Loading …" : "Cargando …",
"Search" : "Buscar",
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Preferences" : "Preferencias",
"Dashboard" : "Tablero de control",
"Users" : " Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -63,7 +62,6 @@
"Subscribed" : "Suscrito",
"Bookmark" : "Marcador",
"Move thread" : "Mover hilo",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Signature" : "Firma",
"Privacy" : "Privacidad",
@@ -71,7 +69,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"Move up" : "Mover arriba",
@@ -92,9 +89,6 @@
"Actions" : "Acciones",
"No teams found" : "No se encontraron equipos",
"Members" : "Miembros",
"User management" : "Administración de usuarios",
"Loading users …" : "Cargando usuarios …",
"No users found" : "No se encontraron usuarios",
"Joined" : "Se ha unido",
"Active" : "Activo"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"

View File

@@ -9,7 +9,6 @@ OC.L10N.register(
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -43,7 +42,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -7,7 +7,6 @@
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -41,7 +40,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -9,7 +9,6 @@ OC.L10N.register(
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -43,7 +42,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -7,7 +7,6 @@
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -41,7 +40,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -9,7 +9,6 @@ OC.L10N.register(
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -41,7 +40,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -7,7 +7,6 @@
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -39,7 +38,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -9,7 +9,6 @@ OC.L10N.register(
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -42,7 +41,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -7,7 +7,6 @@
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -40,7 +39,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -9,7 +9,6 @@ OC.L10N.register(
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -44,7 +43,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -7,7 +7,6 @@
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -42,7 +41,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -10,7 +10,6 @@ OC.L10N.register(
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -43,7 +42,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -8,7 +8,6 @@
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -41,7 +40,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -9,7 +9,6 @@ OC.L10N.register(
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -42,7 +41,6 @@ OC.L10N.register(
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -7,7 +7,6 @@
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
@@ -40,7 +39,6 @@
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Preview" : "Previsualizar",
"General settings" : "Configuraciones generales",

View File

@@ -57,9 +57,6 @@ OC.L10N.register(
"Deleted user" : "Kustutatud kasutaja",
"A community-driven forum built right into your Nextcloud instance" : "Kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris.",
"Repair Database Initial Data" : "Paranda andmebaasi algsed andmed",
"User Roles" : "Kasutajarollid",
"User ID" : "Kasutajatunnus",
"Enter user ID" : "Sisesta kasutajatunnus",
"Role" : "Roll",
"Select a role" : "Vali roll",
"Assign Role" : "Määra roll",
@@ -68,10 +65,9 @@ OC.L10N.register(
"Search" : "Otsi",
"Home" : "Avaleht",
"Bookmarks" : "Järjehoidjad",
"User preferences" : "Kasutaja eelistused",
"Preferences" : "Eelistused",
"Dashboard" : "Töölaud/Juhtpaneel",
"Forum settings" : "Foorumi seadistused",
"Users" : "Kasutajad",
"Roles & Teams" : "Rollid ja tiimid",
"Categories" : "Kategooriad",
"BBCodes" : "BBCode'i märgistus",
@@ -249,10 +245,7 @@ OC.L10N.register(
"Threads ({count})" : "Jutulõngad ({count})",
"Replies ({count})" : "Vastused ({count})",
"No threads" : "Jutulõngu pole",
"This user has not created any threads yet" : "See kasutaja pole veel ühtegi jutulõnga alustanud",
"No replies" : "Vastuseid pole",
"This user has not written any replies yet" : "See kasutaja pole veel ühtegi vastust koostanud",
"Failed to load user profile" : "Kasutajaprofiili laadimine ei õnnestunud",
"Enter search query …" : "Sisesta otsingusõna…",
"Search in threads" : "Otsi jutulõngade seast",
"Search in replies" : "Otsi vastuste seast",
@@ -322,7 +315,6 @@ OC.L10N.register(
"Failed to update bookmark" : "Järjehoidja muutmine ei õnnestunud",
"Failed to update thread title" : "Jutulõnga pealkirja ei õnnestunud uuendada",
"Failed to move thread" : "Jutulõnga ümbertõstmine ei õnnestunud",
"Preferences" : "Eelistused",
"Customize your forum experience" : "Kohenda oma kasutajakogemust selles foorumis",
"Loading preferences …" : "Laadin eelistusi…",
"Error loading preferences" : "Viga eelistuste laadimisel",
@@ -378,14 +370,11 @@ OC.L10N.register(
"Edit category" : "Muuda kategooriat",
"Configure category details" : "Seadista kategooria üksikasju",
"Basic information" : "Põhiteave",
"Category header" : "Kategooria päis",
"-- Select a header --" : "-- Vali päis --",
"Enter category name" : "Sisesta kategooria nimi",
"Slug" : "Aadressi lõputunnus",
"URL-friendly identifier (e.g., \"{slug}\")" : "Inimloetav tunnus aadressi lõpus (nt. „{slug}“)",
"Slug cannot be changed after category creation" : "Peale kategooria lisamist ei saa aadressi lõputunnust enam muuta",
"Enter category description (optional)" : "Sisesta kategooria kirjeldus (pole kohustuslik)",
"New" : "Uus",
"Permissions" : "Õigused",
"Preview" : "Eelvaade",
"Manage forum categories and organization" : "Foorumi kategooriate ja süsteemi haldus",
@@ -411,6 +400,7 @@ OC.L10N.register(
"Delete all categories" : "Kustuta kõik kategooriad",
"All categories and their threads will be permanently deleted" : "Kui kategooriad ja nende jutulõngad kustuvaad jäädavalt",
"Select target header" : "Vali sihtpäis",
"-- Select a header --" : "-- Vali päis --",
"Move up" : "Liiguta ülespoole",
"Move down" : "Liiguta allapoole",
"Overview of forum activity and statistics" : "Ülevaade foorumi kasutusest ja statistikast",
@@ -418,7 +408,6 @@ OC.L10N.register(
"Error loading dashboard" : "Viga juhtpaneeli laadimisel",
"Total statistics" : "Täismahuline statistika",
"Recent activity (last 7 days)" : "Hiljutised tegevused (viimase 7 päeva jooksul)",
"New users" : "Uued kasutajad",
"New threads" : "Uued jutulõngad",
"New replies" : "Uued vastused",
"Top contributors" : "Toimekamad kaasautorid",
@@ -430,7 +419,6 @@ OC.L10N.register(
"Loading settings …" : "Laadin seadistusi…",
"Error loading settings" : "Viga seadistuste laadimisel",
"Appearance" : "Välimus",
"Customize how your forum looks to users" : "Kohenda selle foorumi välimust kasutajate jaoks",
"Forum title" : "Foorumi pealkiri",
"Displayed at the top of the forum home page" : "Kuvatakse foorumi avalehe ülaosas",
"Forum subtitle" : "Foorumi alapealkiri",
@@ -495,19 +483,12 @@ OC.L10N.register(
"Error loading team" : "Viga tiimi laadimisel",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Sa muudad tiimi õigusi kategooria kontekstis. Tiimi liikmelisust saad muuta Nextcloudi tiimide rakenduses.",
"Set which categories this team can access" : "Vali kategooriad, mida see tiim näeb",
"User management" : "Kasutajate haldus",
"Manage forum users, roles and permissions" : "Halda kasutajaid, rolle ja õigusi",
"Loading users …" : "Laadin kasutajaid…",
"Error loading users" : "Viga kasutajate laadimisel",
"No users found" : "Kasutajaid ei leidu",
"There are no forum users yet" : "Foormis pole veel kasutajaid",
"Roles" : "Rollid",
"Joined" : "Liitus",
"Status" : "Olek",
"Active" : "Aktiivne",
"No roles" : "Rolle pole",
"Select roles" : "Vali rollid",
"Edit roles" : "Muuda rolle",
"Edit user roles" : "Muuda kasutajarolle"
"Edit roles" : "Muuda rolle"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -55,9 +55,6 @@
"Deleted user" : "Kustutatud kasutaja",
"A community-driven forum built right into your Nextcloud instance" : "Kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris.",
"Repair Database Initial Data" : "Paranda andmebaasi algsed andmed",
"User Roles" : "Kasutajarollid",
"User ID" : "Kasutajatunnus",
"Enter user ID" : "Sisesta kasutajatunnus",
"Role" : "Roll",
"Select a role" : "Vali roll",
"Assign Role" : "Määra roll",
@@ -66,10 +63,9 @@
"Search" : "Otsi",
"Home" : "Avaleht",
"Bookmarks" : "Järjehoidjad",
"User preferences" : "Kasutaja eelistused",
"Preferences" : "Eelistused",
"Dashboard" : "Töölaud/Juhtpaneel",
"Forum settings" : "Foorumi seadistused",
"Users" : "Kasutajad",
"Roles & Teams" : "Rollid ja tiimid",
"Categories" : "Kategooriad",
"BBCodes" : "BBCode'i märgistus",
@@ -247,10 +243,7 @@
"Threads ({count})" : "Jutulõngad ({count})",
"Replies ({count})" : "Vastused ({count})",
"No threads" : "Jutulõngu pole",
"This user has not created any threads yet" : "See kasutaja pole veel ühtegi jutulõnga alustanud",
"No replies" : "Vastuseid pole",
"This user has not written any replies yet" : "See kasutaja pole veel ühtegi vastust koostanud",
"Failed to load user profile" : "Kasutajaprofiili laadimine ei õnnestunud",
"Enter search query …" : "Sisesta otsingusõna…",
"Search in threads" : "Otsi jutulõngade seast",
"Search in replies" : "Otsi vastuste seast",
@@ -320,7 +313,6 @@
"Failed to update bookmark" : "Järjehoidja muutmine ei õnnestunud",
"Failed to update thread title" : "Jutulõnga pealkirja ei õnnestunud uuendada",
"Failed to move thread" : "Jutulõnga ümbertõstmine ei õnnestunud",
"Preferences" : "Eelistused",
"Customize your forum experience" : "Kohenda oma kasutajakogemust selles foorumis",
"Loading preferences …" : "Laadin eelistusi…",
"Error loading preferences" : "Viga eelistuste laadimisel",
@@ -376,14 +368,11 @@
"Edit category" : "Muuda kategooriat",
"Configure category details" : "Seadista kategooria üksikasju",
"Basic information" : "Põhiteave",
"Category header" : "Kategooria päis",
"-- Select a header --" : "-- Vali päis --",
"Enter category name" : "Sisesta kategooria nimi",
"Slug" : "Aadressi lõputunnus",
"URL-friendly identifier (e.g., \"{slug}\")" : "Inimloetav tunnus aadressi lõpus (nt. „{slug}“)",
"Slug cannot be changed after category creation" : "Peale kategooria lisamist ei saa aadressi lõputunnust enam muuta",
"Enter category description (optional)" : "Sisesta kategooria kirjeldus (pole kohustuslik)",
"New" : "Uus",
"Permissions" : "Õigused",
"Preview" : "Eelvaade",
"Manage forum categories and organization" : "Foorumi kategooriate ja süsteemi haldus",
@@ -409,6 +398,7 @@
"Delete all categories" : "Kustuta kõik kategooriad",
"All categories and their threads will be permanently deleted" : "Kui kategooriad ja nende jutulõngad kustuvaad jäädavalt",
"Select target header" : "Vali sihtpäis",
"-- Select a header --" : "-- Vali päis --",
"Move up" : "Liiguta ülespoole",
"Move down" : "Liiguta allapoole",
"Overview of forum activity and statistics" : "Ülevaade foorumi kasutusest ja statistikast",
@@ -416,7 +406,6 @@
"Error loading dashboard" : "Viga juhtpaneeli laadimisel",
"Total statistics" : "Täismahuline statistika",
"Recent activity (last 7 days)" : "Hiljutised tegevused (viimase 7 päeva jooksul)",
"New users" : "Uued kasutajad",
"New threads" : "Uued jutulõngad",
"New replies" : "Uued vastused",
"Top contributors" : "Toimekamad kaasautorid",
@@ -428,7 +417,6 @@
"Loading settings …" : "Laadin seadistusi…",
"Error loading settings" : "Viga seadistuste laadimisel",
"Appearance" : "Välimus",
"Customize how your forum looks to users" : "Kohenda selle foorumi välimust kasutajate jaoks",
"Forum title" : "Foorumi pealkiri",
"Displayed at the top of the forum home page" : "Kuvatakse foorumi avalehe ülaosas",
"Forum subtitle" : "Foorumi alapealkiri",
@@ -493,19 +481,12 @@
"Error loading team" : "Viga tiimi laadimisel",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Sa muudad tiimi õigusi kategooria kontekstis. Tiimi liikmelisust saad muuta Nextcloudi tiimide rakenduses.",
"Set which categories this team can access" : "Vali kategooriad, mida see tiim näeb",
"User management" : "Kasutajate haldus",
"Manage forum users, roles and permissions" : "Halda kasutajaid, rolle ja õigusi",
"Loading users …" : "Laadin kasutajaid…",
"Error loading users" : "Viga kasutajate laadimisel",
"No users found" : "Kasutajaid ei leidu",
"There are no forum users yet" : "Foormis pole veel kasutajaid",
"Roles" : "Rollid",
"Joined" : "Liitus",
"Status" : "Olek",
"Active" : "Aktiivne",
"No roles" : "Rolle pole",
"Select roles" : "Vali rollid",
"Edit roles" : "Muuda rolle",
"Edit user roles" : "Muuda kasutajarolle"
"Edit roles" : "Muuda rolle"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -9,14 +9,13 @@ OC.L10N.register(
"Underlined text" : "Azpimarratutako testua",
"Forum" : "Foroa",
"Deleted user" : "Ezabatutako erabiltzaileak",
"User ID" : "Erabiltzailearen ID",
"Role" : "Zeregina",
"Loading …" : "Kargatzen ...",
"Search" : "Bilatu",
"Home" : "Etxea",
"Bookmarks" : "Laster-markak",
"Preferences" : "Hobespenak",
"Dashboard" : "Panela",
"Users" : "Erabiltzaileak",
"Categories" : "Kategoriak",
"Moderation" : "Moderazioa",
"Expand" : "Zabaldu",
@@ -82,7 +81,6 @@ OC.L10N.register(
"Bookmark" : "Laster-marka",
"Edit title" : "Editatu izenburua",
"Move thread" : "Mugitu haria",
"Preferences" : "Hobespenak",
"Notifications" : "Jakinarazpenak",
"Files" : "Fitxategiak",
"Browse" : "Arakatu",
@@ -93,7 +91,6 @@ OC.L10N.register(
"Tag" : "Etiketa",
"Description" : "Deskripzioa",
"Enabled" : "Gaituta",
"New" : "Berria",
"Permissions" : "Baimenak",
"Preview" : "Aurrebista",
"Move up" : "Eraman gora",
@@ -114,9 +111,6 @@ OC.L10N.register(
"No description" : "Deskribapenik ez",
"No teams found" : "Ez da lantalderik aurkitu",
"Members" : "Partaideak",
"User management" : "Erabiltzaileen kudeaketa",
"Loading users …" : "Erabiltzaileak kargatzen ...",
"No users found" : "Ez da erabiltzailerik aurkitu",
"Joined" : "Batu da",
"Status" : "Egoera",
"Active" : "Aktibo"

View File

@@ -7,14 +7,13 @@
"Underlined text" : "Azpimarratutako testua",
"Forum" : "Foroa",
"Deleted user" : "Ezabatutako erabiltzaileak",
"User ID" : "Erabiltzailearen ID",
"Role" : "Zeregina",
"Loading …" : "Kargatzen ...",
"Search" : "Bilatu",
"Home" : "Etxea",
"Bookmarks" : "Laster-markak",
"Preferences" : "Hobespenak",
"Dashboard" : "Panela",
"Users" : "Erabiltzaileak",
"Categories" : "Kategoriak",
"Moderation" : "Moderazioa",
"Expand" : "Zabaldu",
@@ -80,7 +79,6 @@
"Bookmark" : "Laster-marka",
"Edit title" : "Editatu izenburua",
"Move thread" : "Mugitu haria",
"Preferences" : "Hobespenak",
"Notifications" : "Jakinarazpenak",
"Files" : "Fitxategiak",
"Browse" : "Arakatu",
@@ -91,7 +89,6 @@
"Tag" : "Etiketa",
"Description" : "Deskripzioa",
"Enabled" : "Gaituta",
"New" : "Berria",
"Permissions" : "Baimenak",
"Preview" : "Aurrebista",
"Move up" : "Eraman gora",
@@ -112,9 +109,6 @@
"No description" : "Deskribapenik ez",
"No teams found" : "Ez da lantalderik aurkitu",
"Members" : "Partaideak",
"User management" : "Erabiltzaileen kudeaketa",
"Loading users …" : "Erabiltzaileak kargatzen ...",
"No users found" : "Ez da erabiltzailerik aurkitu",
"Joined" : "Batu da",
"Status" : "Egoera",
"Active" : "Aktibo"

View File

@@ -10,13 +10,12 @@ OC.L10N.register(
"Underlined text" : "Underlined text",
"Forum" : "انجمن",
"Deleted user" : "Deleted user",
"User ID" : "شناسه کاربر",
"Loading …" : "در حال بارگذاری...",
"Search" : "جستجو",
"Home" : "خانه",
"Bookmarks" : "نشانک‌ها",
"Preferences" : "اولویت ها",
"Dashboard" : "پیشخوان",
"Users" : "کاربران",
"Categories" : "دسته‌ها",
"Moderation" : "Moderation",
"Expand" : "بسط دادن",
@@ -74,7 +73,6 @@ OC.L10N.register(
"Bookmark" : "نشانک",
"Edit title" : "ویرایش عنوان",
"Move thread" : "Move thread",
"Preferences" : "اولویت ها",
"Notifications" : "هشدارها",
"Files" : "پرونده‌ها",
"Signature" : "امضا",
@@ -83,7 +81,6 @@ OC.L10N.register(
"Disable" : "غیرفعال کردن",
"Description" : "شرح",
"Enabled" : "فعال شده",
"New" : "جدید",
"Permissions" : "مجوزها",
"Preview" : "پیش‌نمایش",
"Move up" : "حرکت به بالا",
@@ -103,8 +100,6 @@ OC.L10N.register(
"No description" : "No description",
"No teams found" : "هیچ تیمی یافت نشد",
"Members" : "اعضا",
"Loading users …" : "Loading users …",
"No users found" : "No users found",
"Joined" : "پیوستن",
"Status" : "Status",
"Active" : "فعال کردن"

View File

@@ -8,13 +8,12 @@
"Underlined text" : "Underlined text",
"Forum" : "انجمن",
"Deleted user" : "Deleted user",
"User ID" : "شناسه کاربر",
"Loading …" : "در حال بارگذاری...",
"Search" : "جستجو",
"Home" : "خانه",
"Bookmarks" : "نشانک‌ها",
"Preferences" : "اولویت ها",
"Dashboard" : "پیشخوان",
"Users" : "کاربران",
"Categories" : "دسته‌ها",
"Moderation" : "Moderation",
"Expand" : "بسط دادن",
@@ -72,7 +71,6 @@
"Bookmark" : "نشانک",
"Edit title" : "ویرایش عنوان",
"Move thread" : "Move thread",
"Preferences" : "اولویت ها",
"Notifications" : "هشدارها",
"Files" : "پرونده‌ها",
"Signature" : "امضا",
@@ -81,7 +79,6 @@
"Disable" : "غیرفعال کردن",
"Description" : "شرح",
"Enabled" : "فعال شده",
"New" : "جدید",
"Permissions" : "مجوزها",
"Preview" : "پیش‌نمایش",
"Move up" : "حرکت به بالا",
@@ -101,8 +98,6 @@
"No description" : "No description",
"No teams found" : "هیچ تیمی یافت نشد",
"Members" : "اعضا",
"Loading users …" : "Loading users …",
"No users found" : "No users found",
"Joined" : "پیوستن",
"Status" : "Status",
"Active" : "فعال کردن"

View File

@@ -10,14 +10,13 @@ OC.L10N.register(
"Underlined text" : "Alleviivattu teksti",
"Forum" : "Keskustelupalsta",
"Deleted user" : "Poistettu käyttäjä",
"User ID" : "Käyttäjätunniste",
"Role" : "Rooli",
"Loading …" : "Ladataan…",
"Search" : "Etsi",
"Home" : "Koti",
"Bookmarks" : "Kirjanmerkit",
"Preferences" : "Asetukset",
"Dashboard" : "Kojelauta",
"Users" : "Käyttäjät",
"Categories" : "Luokat",
"Moderation" : "Moderaatio",
"Expand" : "Laajenna",
@@ -85,7 +84,6 @@ OC.L10N.register(
"Bookmark" : "Kirjanmerkki",
"Edit title" : "Muokkaa otsikkoa",
"Move thread" : "Siirrä ketju",
"Preferences" : "Asetukset",
"Notifications" : "Ilmoitukset",
"Files" : "Tiedostot",
"Signature" : "Allekirjoitus",
@@ -96,7 +94,6 @@ OC.L10N.register(
"Tag" : "Tunniste",
"Description" : "Kuvaus",
"Enabled" : "Käytössä",
"New" : "Uusi",
"Permissions" : "Oikeudet",
"Preview" : "Esikatselu",
"Move up" : "Siirrä ylös",
@@ -117,9 +114,6 @@ OC.L10N.register(
"No description" : "Ei kuvausta",
"No teams found" : "Tiimejä ei löytynyt",
"Members" : "Jäsenet",
"User management" : "Käyttäjähallinta",
"Loading users …" : "Ladataan käyttäjiä…",
"No users found" : "Käyttäjiä ei löytynyt",
"Joined" : "Liittynyt",
"Status" : "Tila",
"Active" : "Aktiivinen"

View File

@@ -8,14 +8,13 @@
"Underlined text" : "Alleviivattu teksti",
"Forum" : "Keskustelupalsta",
"Deleted user" : "Poistettu käyttäjä",
"User ID" : "Käyttäjätunniste",
"Role" : "Rooli",
"Loading …" : "Ladataan…",
"Search" : "Etsi",
"Home" : "Koti",
"Bookmarks" : "Kirjanmerkit",
"Preferences" : "Asetukset",
"Dashboard" : "Kojelauta",
"Users" : "Käyttäjät",
"Categories" : "Luokat",
"Moderation" : "Moderaatio",
"Expand" : "Laajenna",
@@ -83,7 +82,6 @@
"Bookmark" : "Kirjanmerkki",
"Edit title" : "Muokkaa otsikkoa",
"Move thread" : "Siirrä ketju",
"Preferences" : "Asetukset",
"Notifications" : "Ilmoitukset",
"Files" : "Tiedostot",
"Signature" : "Allekirjoitus",
@@ -94,7 +92,6 @@
"Tag" : "Tunniste",
"Description" : "Kuvaus",
"Enabled" : "Käytössä",
"New" : "Uusi",
"Permissions" : "Oikeudet",
"Preview" : "Esikatselu",
"Move up" : "Siirrä ylös",
@@ -115,9 +112,6 @@
"No description" : "Ei kuvausta",
"No teams found" : "Tiimejä ei löytynyt",
"Members" : "Jäsenet",
"User management" : "Käyttäjähallinta",
"Loading users …" : "Ladataan käyttäjiä…",
"No users found" : "Käyttäjiä ei löytynyt",
"Joined" : "Liittynyt",
"Status" : "Tila",
"Active" : "Aktiivinen"

View File

@@ -15,14 +15,13 @@ OC.L10N.register(
"Forum" : "Forum",
"Welcome to the forum!" : "Bienvenue dans le forum !",
"Deleted user" : "Utilisateur supprimé",
"User ID" : "Identifiant utilisateur",
"Role" : "Rôle",
"Loading …" : "Chargement…",
"Search" : "Rechercher",
"Home" : "Accueil",
"Bookmarks" : "Favoris",
"Preferences" : "Préférences",
"Dashboard" : "Tableau de bord",
"Users" : "Utilisateurs",
"Categories" : "Catégories",
"Moderation" : "Modération",
"Expand" : "Étendre",
@@ -93,7 +92,6 @@ OC.L10N.register(
"Bookmark" : "Favori",
"Edit title" : "Modifier le titre",
"Move thread" : "Déplacer ce fil de discussion",
"Preferences" : "Préférences",
"Notifications" : "Notifications",
"Files" : "Fichiers",
"Browse" : "Parcourir",
@@ -106,7 +104,6 @@ OC.L10N.register(
"Description" : "Description",
"Enabled" : "Activé",
"Enter category name" : "Saisissez le nom de la catégorie",
"New" : "Nouveau",
"Permissions" : "Autorisations",
"Preview" : "Prévisualiser",
"Move up" : "Déplacer vers le haut",
@@ -128,9 +125,6 @@ OC.L10N.register(
"No description" : "Pas de description",
"No teams found" : "Aucune équipe trouvée",
"Members" : "Membres",
"User management" : "Gestion des utilisateurs",
"Loading users …" : "Chargement des utilisateurs...",
"No users found" : "Aucun utilisateur trouvé",
"Joined" : "A rejoint",
"Status" : "Statut",
"Active" : "Actif"

View File

@@ -13,14 +13,13 @@
"Forum" : "Forum",
"Welcome to the forum!" : "Bienvenue dans le forum !",
"Deleted user" : "Utilisateur supprimé",
"User ID" : "Identifiant utilisateur",
"Role" : "Rôle",
"Loading …" : "Chargement…",
"Search" : "Rechercher",
"Home" : "Accueil",
"Bookmarks" : "Favoris",
"Preferences" : "Préférences",
"Dashboard" : "Tableau de bord",
"Users" : "Utilisateurs",
"Categories" : "Catégories",
"Moderation" : "Modération",
"Expand" : "Étendre",
@@ -91,7 +90,6 @@
"Bookmark" : "Favori",
"Edit title" : "Modifier le titre",
"Move thread" : "Déplacer ce fil de discussion",
"Preferences" : "Préférences",
"Notifications" : "Notifications",
"Files" : "Fichiers",
"Browse" : "Parcourir",
@@ -104,7 +102,6 @@
"Description" : "Description",
"Enabled" : "Activé",
"Enter category name" : "Saisissez le nom de la catégorie",
"New" : "Nouveau",
"Permissions" : "Autorisations",
"Preview" : "Prévisualiser",
"Move up" : "Déplacer vers le haut",
@@ -126,9 +123,6 @@
"No description" : "Pas de description",
"No teams found" : "Aucune équipe trouvée",
"Members" : "Membres",
"User management" : "Gestion des utilisateurs",
"Loading users …" : "Chargement des utilisateurs...",
"No users found" : "Aucun utilisateur trouvé",
"Joined" : "A rejoint",
"Status" : "Statut",
"Active" : "Actif"

View File

@@ -64,10 +64,7 @@ OC.L10N.register(
"Repair Database Initial Data" : "Deisigh Sonraí Tosaigh Bunachar Sonraí",
"Rebuild Statistics" : "Staitisticí Atógála",
"Recalculate all forum statistics including account post counts, thread counts, and category counters. Use this if statistics appear incorrect or out of sync." : "Athríomh gach staitisticí fóram lena n-áirítear comhaireamh postálacha cuntais, comhaireamh snáitheanna agus comhaireamh catagóirí. Bain úsáid as seo má tá cuma mhícheart nó neamhshioncrónaithe ar na staitisticí.",
"User Roles" : "Róil Úsáideora",
"Assign forum roles to accounts. This allows you to grant administrative or moderator privileges to specific accounts." : "Sannadh róil fóraim do chuntais. Ligeann sé seo duit pribhléidí riaracháin nó modhnóra a dheonú do chuntais shonracha.",
"User ID" : "ID Úsáideoir",
"Enter user ID" : "Cuir isteach ID úsáideora",
"Role" : "Ról",
"Select a role" : "Roghnaigh ról",
"Assign Role" : "Sannadh Ról",
@@ -76,11 +73,10 @@ OC.L10N.register(
"Search" : "Cuardach",
"Home" : "Baile",
"Bookmarks" : "Leabharmharcanna",
"User preferences" : "Roghanna úsáideora",
"Preferences" : "Roghanna",
"Management" : "Bainistíocht",
"Dashboard" : "Deais",
"Forum settings" : "Socruithe an fhóraim",
"Users" : "Úsáideoirí",
"Roles & Teams" : "Róil & Foirne",
"Categories" : "Catagóirí",
"BBCodes" : "BBCóid",
@@ -287,10 +283,7 @@ OC.L10N.register(
"Threads ({count})" : "Snáitheanna ({count})",
"Replies ({count})" : "Freagraí ({count})",
"No threads" : "Gan snáitheanna",
"This user has not created any threads yet" : "Níor chruthaigh an t-úsáideoir seo aon snáitheanna go fóill",
"No replies" : "Gan freagraí",
"This user has not written any replies yet" : "Níl aon fhreagraí scríofa ag an úsáideoir seo go fóill",
"Failed to load user profile" : "Theip ar phróifíl an úsáideora a lódáil",
"Enter search query …" : "Cuir isteach fiosrúchán cuardaigh …",
"Search in threads" : "Cuardaigh i snáitheanna",
"Search in replies" : "Cuardaigh sna freagraí",
@@ -360,7 +353,6 @@ OC.L10N.register(
"Failed to update bookmark" : "Theip ar an leabharmharc a nuashonrú",
"Failed to update thread title" : "Theip ar theideal an tsnáithe a nuashonrú",
"Failed to move thread" : "Theip ar bhogadh an snáithe",
"Preferences" : "Roghanna",
"Customize your forum experience" : "Saincheap do thaithí fóraim",
"Loading preferences …" : "Ag lódáil roghanna …",
"Error loading preferences" : "Earráid ag luchtú roghanna",
@@ -419,14 +411,11 @@ OC.L10N.register(
"Edit category" : "Cuir catagóir in eagar",
"Configure category details" : "Cumraigh sonraí na catagóire",
"Basic information" : "Faisnéis bhunúsach",
"Category header" : "Ceanntásc catagóire",
"-- Select a header --" : "-- Roghnaigh ceanntásc --",
"Enter category name" : "Cuir isteach ainm na catagóire",
"Slug" : "Sluga",
"URL-friendly identifier (e.g., \"{slug}\")" : "Aitheantóir atá cairdiúil do URL (m.sh., \"{slug}\")",
"Slug cannot be changed after category creation" : "Ní féidir an slug a athrú tar éis catagóir a chruthú",
"Enter category description (optional)" : "Cuir isteach cur síos ar an gcatagóir (roghnach)",
"New" : "Nua",
"Permissions" : "Ceadanna",
"Control which roles and teams can access and moderate this category" : "Rialú cé na róil agus na foirne ar féidir leo rochtain a fháil ar an gcatagóir seo agus í a mhodhnú",
"Select roles or teams that can view this category and its threads" : "Roghnaigh róil nó foirne ar féidir leo an chatagóir seo agus a snáitheanna a fheiceáil",
@@ -464,6 +453,7 @@ OC.L10N.register(
"Delete all categories" : "Scrios gach catagóir",
"All categories and their threads will be permanently deleted" : "Scriosfar gach catagóir agus a snáitheanna go buan",
"Select target header" : "Roghnaigh ceanntásc sprice",
"-- Select a header --" : "-- Roghnaigh ceanntásc --",
"Move up" : "Éirí suas",
"Move down" : "Bog síos",
"Management dashboard" : "Painéal bainistíochta",
@@ -472,7 +462,6 @@ OC.L10N.register(
"Error loading dashboard" : "Earráid ag lódáil an phainéil",
"Total statistics" : "Staitisticí iomlána",
"Recent activity (last 7 days)" : "Gníomhaíocht le déanaí (7 lá anuas)",
"New users" : "Úsáideoirí nua",
"New threads" : "Snáitheanna nua",
"New replies" : "Freagraí nua",
"Top contributors" : "Príomh-rannpháirtithe",
@@ -484,7 +473,6 @@ OC.L10N.register(
"Loading settings …" : "Ag lódáil socruithe …",
"Error loading settings" : "Earráid ag lódáil socruithe",
"Appearance" : "Dealramh",
"Customize how your forum looks to users" : "Saincheap an chuma atá ar dfhóram dúsáideoirí",
"Forum title" : "Teideal an fhóraim",
"Displayed at the top of the forum home page" : "Taispeántar ag barr leathanach baile an fhóraim",
"Forum subtitle" : "Fotheideal an fhóraim",
@@ -570,19 +558,12 @@ OC.L10N.register(
"Error loading team" : "Earráid ag lódáil na foirne",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Ceadanna catagóire á n-eagarthóireacht don fhoireann seo. Déantar ballraíocht foirne a bhainistiú trí Nextcloud Teams.",
"Set which categories this team can access" : "Socraigh cé na catagóirí ar féidir leis an bhfoireann seo rochtain a fháil orthu",
"User management" : "Bainistíocht úsáideora",
"Manage forum users, roles and permissions" : "Bainistigh úsáideoirí, róil agus ceadanna an fhóraim",
"Loading users …" : "Úsáideoirí á lódáil…",
"Error loading users" : "Earráid ag luchtú úsáideoirí",
"No users found" : "Níor aimsíodh aon úsáideoirí",
"There are no forum users yet" : "Níl aon úsáideoirí fóram ann fós",
"Roles" : "Róil",
"Joined" : "Chuaigh isteach",
"Status" : "Stádas",
"Active" : "Gníomhach",
"No roles" : "Gan róil",
"Select roles" : "Roghnaigh róil",
"Edit roles" : "Cuir róil in eagar",
"Edit user roles" : "Cuir róil úsáideoirí in eagar"
"Edit roles" : "Cuir róil in eagar"
},
"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);");

View File

@@ -62,10 +62,7 @@
"Repair Database Initial Data" : "Deisigh Sonraí Tosaigh Bunachar Sonraí",
"Rebuild Statistics" : "Staitisticí Atógála",
"Recalculate all forum statistics including account post counts, thread counts, and category counters. Use this if statistics appear incorrect or out of sync." : "Athríomh gach staitisticí fóram lena n-áirítear comhaireamh postálacha cuntais, comhaireamh snáitheanna agus comhaireamh catagóirí. Bain úsáid as seo má tá cuma mhícheart nó neamhshioncrónaithe ar na staitisticí.",
"User Roles" : "Róil Úsáideora",
"Assign forum roles to accounts. This allows you to grant administrative or moderator privileges to specific accounts." : "Sannadh róil fóraim do chuntais. Ligeann sé seo duit pribhléidí riaracháin nó modhnóra a dheonú do chuntais shonracha.",
"User ID" : "ID Úsáideoir",
"Enter user ID" : "Cuir isteach ID úsáideora",
"Role" : "Ról",
"Select a role" : "Roghnaigh ról",
"Assign Role" : "Sannadh Ról",
@@ -74,11 +71,10 @@
"Search" : "Cuardach",
"Home" : "Baile",
"Bookmarks" : "Leabharmharcanna",
"User preferences" : "Roghanna úsáideora",
"Preferences" : "Roghanna",
"Management" : "Bainistíocht",
"Dashboard" : "Deais",
"Forum settings" : "Socruithe an fhóraim",
"Users" : "Úsáideoirí",
"Roles & Teams" : "Róil & Foirne",
"Categories" : "Catagóirí",
"BBCodes" : "BBCóid",
@@ -285,10 +281,7 @@
"Threads ({count})" : "Snáitheanna ({count})",
"Replies ({count})" : "Freagraí ({count})",
"No threads" : "Gan snáitheanna",
"This user has not created any threads yet" : "Níor chruthaigh an t-úsáideoir seo aon snáitheanna go fóill",
"No replies" : "Gan freagraí",
"This user has not written any replies yet" : "Níl aon fhreagraí scríofa ag an úsáideoir seo go fóill",
"Failed to load user profile" : "Theip ar phróifíl an úsáideora a lódáil",
"Enter search query …" : "Cuir isteach fiosrúchán cuardaigh …",
"Search in threads" : "Cuardaigh i snáitheanna",
"Search in replies" : "Cuardaigh sna freagraí",
@@ -358,7 +351,6 @@
"Failed to update bookmark" : "Theip ar an leabharmharc a nuashonrú",
"Failed to update thread title" : "Theip ar theideal an tsnáithe a nuashonrú",
"Failed to move thread" : "Theip ar bhogadh an snáithe",
"Preferences" : "Roghanna",
"Customize your forum experience" : "Saincheap do thaithí fóraim",
"Loading preferences …" : "Ag lódáil roghanna …",
"Error loading preferences" : "Earráid ag luchtú roghanna",
@@ -417,14 +409,11 @@
"Edit category" : "Cuir catagóir in eagar",
"Configure category details" : "Cumraigh sonraí na catagóire",
"Basic information" : "Faisnéis bhunúsach",
"Category header" : "Ceanntásc catagóire",
"-- Select a header --" : "-- Roghnaigh ceanntásc --",
"Enter category name" : "Cuir isteach ainm na catagóire",
"Slug" : "Sluga",
"URL-friendly identifier (e.g., \"{slug}\")" : "Aitheantóir atá cairdiúil do URL (m.sh., \"{slug}\")",
"Slug cannot be changed after category creation" : "Ní féidir an slug a athrú tar éis catagóir a chruthú",
"Enter category description (optional)" : "Cuir isteach cur síos ar an gcatagóir (roghnach)",
"New" : "Nua",
"Permissions" : "Ceadanna",
"Control which roles and teams can access and moderate this category" : "Rialú cé na róil agus na foirne ar féidir leo rochtain a fháil ar an gcatagóir seo agus í a mhodhnú",
"Select roles or teams that can view this category and its threads" : "Roghnaigh róil nó foirne ar féidir leo an chatagóir seo agus a snáitheanna a fheiceáil",
@@ -462,6 +451,7 @@
"Delete all categories" : "Scrios gach catagóir",
"All categories and their threads will be permanently deleted" : "Scriosfar gach catagóir agus a snáitheanna go buan",
"Select target header" : "Roghnaigh ceanntásc sprice",
"-- Select a header --" : "-- Roghnaigh ceanntásc --",
"Move up" : "Éirí suas",
"Move down" : "Bog síos",
"Management dashboard" : "Painéal bainistíochta",
@@ -470,7 +460,6 @@
"Error loading dashboard" : "Earráid ag lódáil an phainéil",
"Total statistics" : "Staitisticí iomlána",
"Recent activity (last 7 days)" : "Gníomhaíocht le déanaí (7 lá anuas)",
"New users" : "Úsáideoirí nua",
"New threads" : "Snáitheanna nua",
"New replies" : "Freagraí nua",
"Top contributors" : "Príomh-rannpháirtithe",
@@ -482,7 +471,6 @@
"Loading settings …" : "Ag lódáil socruithe …",
"Error loading settings" : "Earráid ag lódáil socruithe",
"Appearance" : "Dealramh",
"Customize how your forum looks to users" : "Saincheap an chuma atá ar dfhóram dúsáideoirí",
"Forum title" : "Teideal an fhóraim",
"Displayed at the top of the forum home page" : "Taispeántar ag barr leathanach baile an fhóraim",
"Forum subtitle" : "Fotheideal an fhóraim",
@@ -568,19 +556,12 @@
"Error loading team" : "Earráid ag lódáil na foirne",
"Editing category permissions for this team. Team membership is managed via Nextcloud Teams." : "Ceadanna catagóire á n-eagarthóireacht don fhoireann seo. Déantar ballraíocht foirne a bhainistiú trí Nextcloud Teams.",
"Set which categories this team can access" : "Socraigh cé na catagóirí ar féidir leis an bhfoireann seo rochtain a fháil orthu",
"User management" : "Bainistíocht úsáideora",
"Manage forum users, roles and permissions" : "Bainistigh úsáideoirí, róil agus ceadanna an fhóraim",
"Loading users …" : "Úsáideoirí á lódáil…",
"Error loading users" : "Earráid ag luchtú úsáideoirí",
"No users found" : "Níor aimsíodh aon úsáideoirí",
"There are no forum users yet" : "Níl aon úsáideoirí fóram ann fós",
"Roles" : "Róil",
"Joined" : "Chuaigh isteach",
"Status" : "Stádas",
"Active" : "Gníomhach",
"No roles" : "Gan róil",
"Select roles" : "Roghnaigh róil",
"Edit roles" : "Cuir róil in eagar",
"Edit user roles" : "Cuir róil úsáideoirí in eagar"
"Edit roles" : "Cuir róil in eagar"
},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"
}

View File

@@ -57,9 +57,6 @@ OC.L10N.register(
"Deleted user" : "Usuario eliminado",
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud",
"Repair Database Initial Data" : "Reparar os datos iniciais da base de datos",
"User Roles" : "Roles de usuario",
"User ID" : "ID do usuario",
"Enter user ID" : "Introduza o ID de usuario",
"Role" : "Rol",
"Select a role" : "Seleccione un rol",
"Assign Role" : "Asigne o rol",
@@ -68,10 +65,9 @@ OC.L10N.register(
"Search" : "Buscar",
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"User preferences" : "Preferencias do usuario",
"Preferences" : "Preferencias",
"Dashboard" : "Taboleiro",
"Forum settings" : "Axustes do Foro",
"Users" : "Usuarios",
"Categories" : "Categorías",
"BBCodes" : "BBCode",
"Moderation" : "Moderación",
@@ -241,10 +237,7 @@ OC.L10N.register(
"Threads ({count})" : "Fíos ({count})",
"Replies ({count})" : "Respostas ({count})",
"No threads" : "Non hai ningún fío",
"This user has not created any threads yet" : "Este usuario aínda non creou ningún fío",
"No replies" : "Non hai ningunha resposta",
"This user has not written any replies yet" : "Este usuario aínda non escribiu ningunha resposta",
"Failed to load user profile" : "Produciuse un fallo ao cargar o perfil do usuario",
"Enter search query …" : "Introduza a consulta de busca…",
"Search in threads" : "Buscar nos fíos",
"Search in replies" : "Buscar nas respostas",
@@ -313,7 +306,6 @@ OC.L10N.register(
"Failed to update bookmark" : "Produciuse un fallo ao actualizar o marcador",
"Failed to update thread title" : "Produciuse un fallo ao actualizar o título do fío",
"Failed to move thread" : "Produciuse un fallo ao mover o fío",
"Preferences" : "Preferencias",
"Customize your forum experience" : "Personalice as súa experiencia no foro",
"Loading preferences …" : "Cargando as preferencias…",
"Error loading preferences" : "Produciuse un erro ao cargar as preferencias",
@@ -369,14 +361,11 @@ OC.L10N.register(
"Edit category" : "Editar categoría",
"Configure category details" : "Configurar detalles da categoría",
"Basic information" : "Información básica",
"Category header" : "Cabeceira de categoría",
"-- Select a header --" : "-- Seleccionar unha cabeceira --",
"Enter category name" : "Introduza o nome da categoría",
"Slug" : "URL semántico",
"URL-friendly identifier (e.g., \"{slug}\")" : "Identificador amigábel para URL (p. ex., «{slug}»)",
"Slug cannot be changed after category creation" : "O URL semántico non pode ser cambiado após a creación da categoría",
"Enter category description (optional)" : "Introduza a descrición da categoría (opcional)",
"New" : "Novo",
"Permissions" : "Permisos",
"Preview" : "Vista previa",
"Manage forum categories and organization" : "Xestionar as categorías e a organización do foro",
@@ -402,6 +391,7 @@ OC.L10N.register(
"Delete all categories" : "Eliminar todas as categorías",
"All categories and their threads will be permanently deleted" : "Todas as categorías e os seus fíos serán eliminados definitivamente",
"Select target header" : "Seleccionar a cabeceira de destino",
"-- Select a header --" : "-- Seleccionar unha cabeceira --",
"Move up" : "Mover cara arriba",
"Move down" : "Mover cara abaixo",
"Overview of forum activity and statistics" : "Visita xeral da actividade e estatísticas do foro",
@@ -409,7 +399,6 @@ OC.L10N.register(
"Error loading dashboard" : "Produciuse un erro ao cargar o taboleiro",
"Total statistics" : "Estatísticas totais",
"Recent activity (last 7 days)" : "Actividade recente (últimos 7 días)",
"New users" : "Novos usuarios",
"New threads" : "Novos fíos",
"New replies" : "Novas respostas",
"Top contributors" : "Principais colaboradores",
@@ -421,7 +410,6 @@ OC.L10N.register(
"Loading settings …" : "Cargando axustes…",
"Error loading settings" : "Produciuse un erro ao cargar os axustes",
"Appearance" : "Aparencia",
"Customize how your forum looks to users" : "Personalice como ven os usuarios o teu foro",
"Forum title" : "Título do foro",
"Displayed at the top of the forum home page" : "Amosado na parte superior da páxina principal do foro",
"Forum subtitle" : "Subtítulo do foro",
@@ -476,19 +464,12 @@ OC.L10N.register(
"System roles cannot be deleted" : "Non é posíbel eliminar os roles do sistema",
"No teams found" : "Non se atopou ningún equipo",
"Members" : "Membros",
"User management" : "Xestión de usuarios",
"Manage forum users, roles and permissions" : "Xestionar usuarios, roles e permisos do foro",
"Loading users …" : "Cargando usuarios…",
"Error loading users" : "Produciuse un erro ao cargar usuarios",
"No users found" : "Non se atopou ningún usuario",
"There are no forum users yet" : "Aínda non hai usuarios no foro",
"Roles" : "Roles",
"Joined" : "Uniuse",
"Status" : "Estado",
"Active" : "Activa",
"No roles" : "Non hai ningún rol",
"Select roles" : "Seleccionar roles",
"Edit roles" : "Editar roles",
"Edit user roles" : "Editar roles de usuario"
"Edit roles" : "Editar roles"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -55,9 +55,6 @@
"Deleted user" : "Usuario eliminado",
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud",
"Repair Database Initial Data" : "Reparar os datos iniciais da base de datos",
"User Roles" : "Roles de usuario",
"User ID" : "ID do usuario",
"Enter user ID" : "Introduza o ID de usuario",
"Role" : "Rol",
"Select a role" : "Seleccione un rol",
"Assign Role" : "Asigne o rol",
@@ -66,10 +63,9 @@
"Search" : "Buscar",
"Home" : "Inicio",
"Bookmarks" : "Marcadores",
"User preferences" : "Preferencias do usuario",
"Preferences" : "Preferencias",
"Dashboard" : "Taboleiro",
"Forum settings" : "Axustes do Foro",
"Users" : "Usuarios",
"Categories" : "Categorías",
"BBCodes" : "BBCode",
"Moderation" : "Moderación",
@@ -239,10 +235,7 @@
"Threads ({count})" : "Fíos ({count})",
"Replies ({count})" : "Respostas ({count})",
"No threads" : "Non hai ningún fío",
"This user has not created any threads yet" : "Este usuario aínda non creou ningún fío",
"No replies" : "Non hai ningunha resposta",
"This user has not written any replies yet" : "Este usuario aínda non escribiu ningunha resposta",
"Failed to load user profile" : "Produciuse un fallo ao cargar o perfil do usuario",
"Enter search query …" : "Introduza a consulta de busca…",
"Search in threads" : "Buscar nos fíos",
"Search in replies" : "Buscar nas respostas",
@@ -311,7 +304,6 @@
"Failed to update bookmark" : "Produciuse un fallo ao actualizar o marcador",
"Failed to update thread title" : "Produciuse un fallo ao actualizar o título do fío",
"Failed to move thread" : "Produciuse un fallo ao mover o fío",
"Preferences" : "Preferencias",
"Customize your forum experience" : "Personalice as súa experiencia no foro",
"Loading preferences …" : "Cargando as preferencias…",
"Error loading preferences" : "Produciuse un erro ao cargar as preferencias",
@@ -367,14 +359,11 @@
"Edit category" : "Editar categoría",
"Configure category details" : "Configurar detalles da categoría",
"Basic information" : "Información básica",
"Category header" : "Cabeceira de categoría",
"-- Select a header --" : "-- Seleccionar unha cabeceira --",
"Enter category name" : "Introduza o nome da categoría",
"Slug" : "URL semántico",
"URL-friendly identifier (e.g., \"{slug}\")" : "Identificador amigábel para URL (p. ex., «{slug}»)",
"Slug cannot be changed after category creation" : "O URL semántico non pode ser cambiado após a creación da categoría",
"Enter category description (optional)" : "Introduza a descrición da categoría (opcional)",
"New" : "Novo",
"Permissions" : "Permisos",
"Preview" : "Vista previa",
"Manage forum categories and organization" : "Xestionar as categorías e a organización do foro",
@@ -400,6 +389,7 @@
"Delete all categories" : "Eliminar todas as categorías",
"All categories and their threads will be permanently deleted" : "Todas as categorías e os seus fíos serán eliminados definitivamente",
"Select target header" : "Seleccionar a cabeceira de destino",
"-- Select a header --" : "-- Seleccionar unha cabeceira --",
"Move up" : "Mover cara arriba",
"Move down" : "Mover cara abaixo",
"Overview of forum activity and statistics" : "Visita xeral da actividade e estatísticas do foro",
@@ -407,7 +397,6 @@
"Error loading dashboard" : "Produciuse un erro ao cargar o taboleiro",
"Total statistics" : "Estatísticas totais",
"Recent activity (last 7 days)" : "Actividade recente (últimos 7 días)",
"New users" : "Novos usuarios",
"New threads" : "Novos fíos",
"New replies" : "Novas respostas",
"Top contributors" : "Principais colaboradores",
@@ -419,7 +408,6 @@
"Loading settings …" : "Cargando axustes…",
"Error loading settings" : "Produciuse un erro ao cargar os axustes",
"Appearance" : "Aparencia",
"Customize how your forum looks to users" : "Personalice como ven os usuarios o teu foro",
"Forum title" : "Título do foro",
"Displayed at the top of the forum home page" : "Amosado na parte superior da páxina principal do foro",
"Forum subtitle" : "Subtítulo do foro",
@@ -474,19 +462,12 @@
"System roles cannot be deleted" : "Non é posíbel eliminar os roles do sistema",
"No teams found" : "Non se atopou ningún equipo",
"Members" : "Membros",
"User management" : "Xestión de usuarios",
"Manage forum users, roles and permissions" : "Xestionar usuarios, roles e permisos do foro",
"Loading users …" : "Cargando usuarios…",
"Error loading users" : "Produciuse un erro ao cargar usuarios",
"No users found" : "Non se atopou ningún usuario",
"There are no forum users yet" : "Aínda non hai usuarios no foro",
"Roles" : "Roles",
"Joined" : "Uniuse",
"Status" : "Estado",
"Active" : "Activa",
"No roles" : "Non hai ningún rol",
"Select roles" : "Seleccionar roles",
"Edit roles" : "Editar roles",
"Edit user roles" : "Editar roles de usuario"
"Edit roles" : "Editar roles"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -58,9 +58,6 @@ OC.L10N.register(
"Deleted user" : "משתמש מחוק",
"A community-driven forum built right into your Nextcloud instance" : "פורום מונחה-קהילה מובנה ישירות להתקנת ה Nextcloud שלכם.",
"Repair Database Initial Data" : "תיקון מידע ראשוני במסד נתונים",
"User Roles" : "תפקידי משתמשים",
"User ID" : "מזהה משתמש",
"Enter user ID" : "הכניסו מזהה משתמש",
"Role" : "תפקיד",
"Select a role" : "בחרו תפקיד",
"Assign Role" : "הקצאת תפקיד",
@@ -69,10 +66,9 @@ OC.L10N.register(
"Search" : "חיפוש",
"Home" : "בית",
"Bookmarks" : "סימניות",
"User preferences" : "העדפות משתמש",
"Preferences" : "העדפות",
"Dashboard" : "לוח בקרה",
"Forum settings" : "הגדרות פורום",
"Users" : "משתמשים",
"Roles & Teams" : "תפקידים וצוותים",
"Categories" : "קטגוריות",
"BBCodes" : "BBCodes",
@@ -271,10 +267,7 @@ OC.L10N.register(
"Threads ({count})" : "נושאים ({count})",
"Replies ({count})" : "תגובות ({count})",
"No threads" : "ללא נושאים",
"This user has not created any threads yet" : "משתמש זה לא יצר נושאים עדיין",
"No replies" : "ללא תגובות",
"This user has not written any replies yet" : "משתמש זה לא כתב תגובות עדיין",
"Failed to load user profile" : "כשלון בטעינת פרופיל משתמש",
"Enter search query …" : "הכניסו שאילתת חיפוש …",
"Search in threads" : "חפשו בנושאים",
"Search in replies" : "חפשו בתגובות",
@@ -320,7 +313,6 @@ OC.L10N.register(
"Bookmark" : "סימנייה",
"Edit title" : "עריכת כותרת",
"Move thread" : "העברת שרשור",
"Preferences" : "העדפות",
"Notifications" : "התראות",
"Files" : "קבצים",
"Signature" : "חתימה",
@@ -329,7 +321,6 @@ OC.L10N.register(
"Tag" : "תגית",
"Description" : "תיאור",
"Enabled" : "מופעל",
"New" : "חדש",
"Permissions" : "הרשאות",
"Preview" : "תצוגה מקדימה",
"Move down" : "להוריד למטה",
@@ -346,7 +337,6 @@ OC.L10N.register(
"Owner" : "בעלות",
"Actions" : "פעולות",
"Members" : "חברים",
"No users found" : "לא נמצאו משתמשים",
"Roles" : "תפקידים",
"Active" : "פעיל"
},

View File

@@ -56,9 +56,6 @@
"Deleted user" : "משתמש מחוק",
"A community-driven forum built right into your Nextcloud instance" : "פורום מונחה-קהילה מובנה ישירות להתקנת ה Nextcloud שלכם.",
"Repair Database Initial Data" : "תיקון מידע ראשוני במסד נתונים",
"User Roles" : "תפקידי משתמשים",
"User ID" : "מזהה משתמש",
"Enter user ID" : "הכניסו מזהה משתמש",
"Role" : "תפקיד",
"Select a role" : "בחרו תפקיד",
"Assign Role" : "הקצאת תפקיד",
@@ -67,10 +64,9 @@
"Search" : "חיפוש",
"Home" : "בית",
"Bookmarks" : "סימניות",
"User preferences" : "העדפות משתמש",
"Preferences" : "העדפות",
"Dashboard" : "לוח בקרה",
"Forum settings" : "הגדרות פורום",
"Users" : "משתמשים",
"Roles & Teams" : "תפקידים וצוותים",
"Categories" : "קטגוריות",
"BBCodes" : "BBCodes",
@@ -269,10 +265,7 @@
"Threads ({count})" : "נושאים ({count})",
"Replies ({count})" : "תגובות ({count})",
"No threads" : "ללא נושאים",
"This user has not created any threads yet" : "משתמש זה לא יצר נושאים עדיין",
"No replies" : "ללא תגובות",
"This user has not written any replies yet" : "משתמש זה לא כתב תגובות עדיין",
"Failed to load user profile" : "כשלון בטעינת פרופיל משתמש",
"Enter search query …" : "הכניסו שאילתת חיפוש …",
"Search in threads" : "חפשו בנושאים",
"Search in replies" : "חפשו בתגובות",
@@ -318,7 +311,6 @@
"Bookmark" : "סימנייה",
"Edit title" : "עריכת כותרת",
"Move thread" : "העברת שרשור",
"Preferences" : "העדפות",
"Notifications" : "התראות",
"Files" : "קבצים",
"Signature" : "חתימה",
@@ -327,7 +319,6 @@
"Tag" : "תגית",
"Description" : "תיאור",
"Enabled" : "מופעל",
"New" : "חדש",
"Permissions" : "הרשאות",
"Preview" : "תצוגה מקדימה",
"Move down" : "להוריד למטה",
@@ -344,7 +335,6 @@
"Owner" : "בעלות",
"Actions" : "פעולות",
"Members" : "חברים",
"No users found" : "לא נמצאו משתמשים",
"Roles" : "תפקידים",
"Active" : "פעיל"
},"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"

View File

@@ -10,14 +10,13 @@ OC.L10N.register(
"Underlined text" : "Podcrtani tekst",
"Forum" : "Forum",
"Deleted user" : "Izbrisan korisnik",
"User ID" : "ID korisnika",
"Role" : "Uloga",
"Loading …" : "Učitavanje…",
"Search" : "Traži",
"Home" : "Doma",
"Bookmarks" : "Knjižne oznake",
"Preferences" : "Preferencije",
"Dashboard" : "Nadzorna ploča",
"Users" : "Korisnici",
"Categories" : "Kategorije",
"Moderation" : "Moderiranje",
"Expand" : "Proširi",
@@ -82,7 +81,6 @@ OC.L10N.register(
"Bookmark" : "Dodaj knjižnu oznaku",
"Edit title" : "Uredi naslov",
"Move thread" : "Premjesti dretvu",
"Preferences" : "Preferencije",
"Notifications" : "Obavijesti",
"Files" : "Datoteke",
"Browse" : "Pregledaj",
@@ -93,7 +91,6 @@ OC.L10N.register(
"Tag" : "Oznaka",
"Description" : "Opis",
"Enabled" : "Omogućeno",
"New" : "Novo",
"Permissions" : "Dopuštenja",
"Preview" : "Pretpregled",
"Move up" : "Premjesti gore",
@@ -113,7 +110,6 @@ OC.L10N.register(
"Actions" : "Radnje",
"No teams found" : "Nema pronađenih timova",
"Members" : "Članovi",
"No users found" : "Nije pronađen nijedan korisnik",
"Joined" : "Pridružen",
"Status" : "Status",
"Active" : "Aktivan"

View File

@@ -8,14 +8,13 @@
"Underlined text" : "Podcrtani tekst",
"Forum" : "Forum",
"Deleted user" : "Izbrisan korisnik",
"User ID" : "ID korisnika",
"Role" : "Uloga",
"Loading …" : "Učitavanje…",
"Search" : "Traži",
"Home" : "Doma",
"Bookmarks" : "Knjižne oznake",
"Preferences" : "Preferencije",
"Dashboard" : "Nadzorna ploča",
"Users" : "Korisnici",
"Categories" : "Kategorije",
"Moderation" : "Moderiranje",
"Expand" : "Proširi",
@@ -80,7 +79,6 @@
"Bookmark" : "Dodaj knjižnu oznaku",
"Edit title" : "Uredi naslov",
"Move thread" : "Premjesti dretvu",
"Preferences" : "Preferencije",
"Notifications" : "Obavijesti",
"Files" : "Datoteke",
"Browse" : "Pregledaj",
@@ -91,7 +89,6 @@
"Tag" : "Oznaka",
"Description" : "Opis",
"Enabled" : "Omogućeno",
"New" : "Novo",
"Permissions" : "Dopuštenja",
"Preview" : "Pretpregled",
"Move up" : "Premjesti gore",
@@ -111,7 +108,6 @@
"Actions" : "Radnje",
"No teams found" : "Nema pronađenih timova",
"Members" : "Članovi",
"No users found" : "Nije pronađen nijedan korisnik",
"Joined" : "Pridružen",
"Status" : "Status",
"Active" : "Aktivan"

View File

@@ -9,14 +9,13 @@ OC.L10N.register(
"Underlined text" : "Aláhúzott szöveg",
"Forum" : "Fórum",
"Deleted user" : "Törölt felhasználó",
"User ID" : "Felhasználóazonosító",
"Role" : "Szerepkör",
"Loading …" : "Betöltés…",
"Search" : "Keresés",
"Home" : "Kezdőlap",
"Bookmarks" : "Könyvjelzők",
"Preferences" : "Beállítások",
"Dashboard" : "Irányítópult",
"Users" : "Felhasználók",
"Categories" : "Kategóriák",
"Moderation" : "Moderálás",
"Expand" : "Kibontás",
@@ -87,7 +86,6 @@ OC.L10N.register(
"Bookmark" : "Könyvjelző",
"Edit title" : "Cím szerkesztése",
"Move thread" : "Szál áthelyezése",
"Preferences" : "Beállítások",
"Notifications" : "Értesítések",
"Files" : "Fájlok",
"Browse" : "Tallózás",
@@ -98,7 +96,6 @@ OC.L10N.register(
"Tag" : "Címke",
"Description" : "Leírás",
"Enabled" : "Engedélyezve",
"New" : "Új",
"Permissions" : "Jogosultságok",
"Preview" : "Előnézet",
"Move up" : "Mozgatás fel",
@@ -119,8 +116,6 @@ OC.L10N.register(
"No description" : "Nincs leírás",
"No teams found" : "Nem találhatók csapatok",
"Members" : "Tagok",
"Loading users …" : "Felhasználók betöltése…",
"No users found" : "Nem találhatók felhasználók",
"Joined" : "Csatlakozott",
"Status" : "Állapot",
"Active" : "Aktív"

View File

@@ -7,14 +7,13 @@
"Underlined text" : "Aláhúzott szöveg",
"Forum" : "Fórum",
"Deleted user" : "Törölt felhasználó",
"User ID" : "Felhasználóazonosító",
"Role" : "Szerepkör",
"Loading …" : "Betöltés…",
"Search" : "Keresés",
"Home" : "Kezdőlap",
"Bookmarks" : "Könyvjelzők",
"Preferences" : "Beállítások",
"Dashboard" : "Irányítópult",
"Users" : "Felhasználók",
"Categories" : "Kategóriák",
"Moderation" : "Moderálás",
"Expand" : "Kibontás",
@@ -85,7 +84,6 @@
"Bookmark" : "Könyvjelző",
"Edit title" : "Cím szerkesztése",
"Move thread" : "Szál áthelyezése",
"Preferences" : "Beállítások",
"Notifications" : "Értesítések",
"Files" : "Fájlok",
"Browse" : "Tallózás",
@@ -96,7 +94,6 @@
"Tag" : "Címke",
"Description" : "Leírás",
"Enabled" : "Engedélyezve",
"New" : "Új",
"Permissions" : "Jogosultságok",
"Preview" : "Előnézet",
"Move up" : "Mozgatás fel",
@@ -117,8 +114,6 @@
"No description" : "Nincs leírás",
"No teams found" : "Nem találhatók csapatok",
"Members" : "Tagok",
"Loading users …" : "Felhasználók betöltése…",
"No users found" : "Nem találhatók felhasználók",
"Joined" : "Csatlakozott",
"Status" : "Állapot",
"Active" : "Aktív"

View File

@@ -6,7 +6,6 @@ OC.L10N.register(
"Forum" : "Foro",
"Search" : "Cercar",
"Home" : "Initio",
"Users" : "Usatores",
"Collapse" : "Collaber",
"Close" : "Clauder",
"Category" : "Categoria",
@@ -26,7 +25,6 @@ OC.L10N.register(
"Disable" : "Disactivar",
"Description" : "Description",
"Enabled" : "Activate",
"New" : "Nove",
"Preview" : "Previsualisar",
"Settings saved" : "Configurationes salveguardate",
"Reset" : "Re-fixar",

View File

@@ -4,7 +4,6 @@
"Forum" : "Foro",
"Search" : "Cercar",
"Home" : "Initio",
"Users" : "Usatores",
"Collapse" : "Collaber",
"Close" : "Clauder",
"Category" : "Categoria",
@@ -24,7 +23,6 @@
"Disable" : "Disactivar",
"Description" : "Description",
"Enabled" : "Activate",
"New" : "Nove",
"Preview" : "Previsualisar",
"Settings saved" : "Configurationes salveguardate",
"Reset" : "Re-fixar",

View File

@@ -45,9 +45,6 @@ OC.L10N.register(
"Welcome to the forum!" : "Selamat datang di forum!",
"Deleted user" : "Pengguna dihapus",
"A community-driven forum built right into your Nextcloud instance" : "Forum berbasis komunitas yang dibangun langsung ke dalam instance Nextcloud Anda",
"User Roles" : "Peran pengguna",
"User ID" : "ID Pengguna",
"Enter user ID" : "Masukkan ID pengguna",
"Role" : "Peran",
"Select a role" : "Pilih peran",
"Assign Role" : "Tetapkan Peran",
@@ -55,10 +52,9 @@ OC.L10N.register(
"Search" : "Cari",
"Home" : "Beranda",
"Bookmarks" : "Markah",
"User preferences" : "Preferensi pengguna",
"Preferences" : "Preferensi",
"Dashboard" : "Dasbor",
"Forum settings" : "Pengaturan forum",
"Users" : "Pengguna",
"Categories" : "Kategori",
"BBCodes" : "BBCode",
"Expand" : "Perluas",
@@ -223,10 +219,7 @@ OC.L10N.register(
"Threads ({count})" : "Utas ({count})",
"Replies ({count})" : "Balasan ({count})",
"No threads" : "Tidak ada utas",
"This user has not created any threads yet" : "Pengguna ini belum membuat utas apa pun",
"No replies" : "Tidak ada balasan",
"This user has not written any replies yet" : "Pengguna ini belum menulis balasan apa pun",
"Failed to load user profile" : "Gagal memuat profil pengguna",
"Enter search query …" : "Masukkan kueri pencarian …",
"Search in threads" : "Cari di utas",
"Search in replies" : "Cari di balasan",
@@ -295,7 +288,6 @@ OC.L10N.register(
"Failed to update bookmark" : "Gagal memperbarui markah",
"Failed to update thread title" : "Gagal memperbarui judul utas",
"Failed to move thread" : "Gagal memindahkan utas",
"Preferences" : "Preferensi",
"Customize your forum experience" : "Sesuaikan pengalaman forum Anda",
"Loading preferences …" : "Memuat preferensi …",
"Error loading preferences" : "Kesalahan saat memuat preferensi",
@@ -351,14 +343,11 @@ OC.L10N.register(
"Edit category" : "Edit kategori",
"Configure category details" : "Konfigurasikan detail kategori",
"Basic information" : "Informasi dasar",
"Category header" : "Header kategori",
"-- Select a header --" : "-- Pilih sebuah header --",
"Enter category name" : "Masukkan nama kategori",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "Pengenal ramah-URL (misalnya, \"{slug}\")",
"Slug cannot be changed after category creation" : "Slug tidak dapat diubah setelah kategori dibuat",
"Enter category description (optional)" : "Masukkan deskripsi kategori (opsional)",
"New" : "Baru",
"Permissions" : "Izin",
"Preview" : "Pratinjau",
"Manage forum categories and organization" : "Kelola kategori forum dan pengorganisasiannya",
@@ -384,6 +373,7 @@ OC.L10N.register(
"Delete all categories" : "Hapus semua kategori",
"All categories and their threads will be permanently deleted" : "Semua kategori dan utasnya akan dihapus secara permanen",
"Select target header" : "Pilih header tujuan",
"-- Select a header --" : "-- Pilih sebuah header --",
"Move up" : "Pindah ke atas",
"Move down" : "Pindah ke bawah",
"Overview of forum activity and statistics" : "Ikhtisar aktivitas dan statistik forum",
@@ -391,7 +381,6 @@ OC.L10N.register(
"Error loading dashboard" : "Kesalahan saat memuat dasbor",
"Total statistics" : "Total statistik",
"Recent activity (last 7 days)" : "Aktivitas terbaru (7 hari terakhir)",
"New users" : "Pengguna baru",
"New threads" : "Utas baru",
"New replies" : "Balasan baru",
"Top contributors" : "Kontributor teratas",
@@ -403,7 +392,6 @@ OC.L10N.register(
"Loading settings …" : "Memuat pengaturan …",
"Error loading settings" : "Kesalahan saat memuat pengaturan",
"Appearance" : "Tampilan",
"Customize how your forum looks to users" : "Sesuaikan tampilan forum Anda bagi pengguna",
"Forum title" : "Judul forum",
"Displayed at the top of the forum home page" : "Ditampilkan di bagian atas halaman beranda forum",
"Forum subtitle" : "Subjudul forum",
@@ -457,19 +445,12 @@ OC.L10N.register(
"System roles cannot be deleted" : "Peran sistem tidak dapat dihapus",
"No teams found" : "Tidak ada tim yang ditemukan",
"Members" : "Anggota",
"User management" : "Pengelolaan pengguna",
"Manage forum users, roles and permissions" : "Kelola pengguna forum, peran, dan izin",
"Loading users …" : "Memuat pengguna …",
"Error loading users" : "Kesalahan saat memuat pengguna",
"No users found" : "Tidak ada pengguna yang ditemukan",
"There are no forum users yet" : "Belum ada pengguna forum",
"Roles" : "Peran",
"Joined" : "Bergabung",
"Status" : "Status",
"Active" : "Aktif",
"No roles" : "Tidak ada peran",
"Select roles" : "Pilih peran",
"Edit roles" : "Edit peran",
"Edit user roles" : "Edit peran pengguna"
"Edit roles" : "Edit peran"
},
"nplurals=1; plural=0;");

View File

@@ -43,9 +43,6 @@
"Welcome to the forum!" : "Selamat datang di forum!",
"Deleted user" : "Pengguna dihapus",
"A community-driven forum built right into your Nextcloud instance" : "Forum berbasis komunitas yang dibangun langsung ke dalam instance Nextcloud Anda",
"User Roles" : "Peran pengguna",
"User ID" : "ID Pengguna",
"Enter user ID" : "Masukkan ID pengguna",
"Role" : "Peran",
"Select a role" : "Pilih peran",
"Assign Role" : "Tetapkan Peran",
@@ -53,10 +50,9 @@
"Search" : "Cari",
"Home" : "Beranda",
"Bookmarks" : "Markah",
"User preferences" : "Preferensi pengguna",
"Preferences" : "Preferensi",
"Dashboard" : "Dasbor",
"Forum settings" : "Pengaturan forum",
"Users" : "Pengguna",
"Categories" : "Kategori",
"BBCodes" : "BBCode",
"Expand" : "Perluas",
@@ -221,10 +217,7 @@
"Threads ({count})" : "Utas ({count})",
"Replies ({count})" : "Balasan ({count})",
"No threads" : "Tidak ada utas",
"This user has not created any threads yet" : "Pengguna ini belum membuat utas apa pun",
"No replies" : "Tidak ada balasan",
"This user has not written any replies yet" : "Pengguna ini belum menulis balasan apa pun",
"Failed to load user profile" : "Gagal memuat profil pengguna",
"Enter search query …" : "Masukkan kueri pencarian …",
"Search in threads" : "Cari di utas",
"Search in replies" : "Cari di balasan",
@@ -293,7 +286,6 @@
"Failed to update bookmark" : "Gagal memperbarui markah",
"Failed to update thread title" : "Gagal memperbarui judul utas",
"Failed to move thread" : "Gagal memindahkan utas",
"Preferences" : "Preferensi",
"Customize your forum experience" : "Sesuaikan pengalaman forum Anda",
"Loading preferences …" : "Memuat preferensi …",
"Error loading preferences" : "Kesalahan saat memuat preferensi",
@@ -349,14 +341,11 @@
"Edit category" : "Edit kategori",
"Configure category details" : "Konfigurasikan detail kategori",
"Basic information" : "Informasi dasar",
"Category header" : "Header kategori",
"-- Select a header --" : "-- Pilih sebuah header --",
"Enter category name" : "Masukkan nama kategori",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "Pengenal ramah-URL (misalnya, \"{slug}\")",
"Slug cannot be changed after category creation" : "Slug tidak dapat diubah setelah kategori dibuat",
"Enter category description (optional)" : "Masukkan deskripsi kategori (opsional)",
"New" : "Baru",
"Permissions" : "Izin",
"Preview" : "Pratinjau",
"Manage forum categories and organization" : "Kelola kategori forum dan pengorganisasiannya",
@@ -382,6 +371,7 @@
"Delete all categories" : "Hapus semua kategori",
"All categories and their threads will be permanently deleted" : "Semua kategori dan utasnya akan dihapus secara permanen",
"Select target header" : "Pilih header tujuan",
"-- Select a header --" : "-- Pilih sebuah header --",
"Move up" : "Pindah ke atas",
"Move down" : "Pindah ke bawah",
"Overview of forum activity and statistics" : "Ikhtisar aktivitas dan statistik forum",
@@ -389,7 +379,6 @@
"Error loading dashboard" : "Kesalahan saat memuat dasbor",
"Total statistics" : "Total statistik",
"Recent activity (last 7 days)" : "Aktivitas terbaru (7 hari terakhir)",
"New users" : "Pengguna baru",
"New threads" : "Utas baru",
"New replies" : "Balasan baru",
"Top contributors" : "Kontributor teratas",
@@ -401,7 +390,6 @@
"Loading settings …" : "Memuat pengaturan …",
"Error loading settings" : "Kesalahan saat memuat pengaturan",
"Appearance" : "Tampilan",
"Customize how your forum looks to users" : "Sesuaikan tampilan forum Anda bagi pengguna",
"Forum title" : "Judul forum",
"Displayed at the top of the forum home page" : "Ditampilkan di bagian atas halaman beranda forum",
"Forum subtitle" : "Subjudul forum",
@@ -455,19 +443,12 @@
"System roles cannot be deleted" : "Peran sistem tidak dapat dihapus",
"No teams found" : "Tidak ada tim yang ditemukan",
"Members" : "Anggota",
"User management" : "Pengelolaan pengguna",
"Manage forum users, roles and permissions" : "Kelola pengguna forum, peran, dan izin",
"Loading users …" : "Memuat pengguna …",
"Error loading users" : "Kesalahan saat memuat pengguna",
"No users found" : "Tidak ada pengguna yang ditemukan",
"There are no forum users yet" : "Belum ada pengguna forum",
"Roles" : "Peran",
"Joined" : "Bergabung",
"Status" : "Status",
"Active" : "Aktif",
"No roles" : "Tidak ada peran",
"Select roles" : "Pilih peran",
"Edit roles" : "Edit peran",
"Edit user roles" : "Edit peran pengguna"
"Edit roles" : "Edit peran"
},"pluralForm" :"nplurals=1; plural=0;"
}

View File

@@ -13,8 +13,8 @@ OC.L10N.register(
"Search" : "Search",
"Home" : "Heim",
"Bookmarks" : "Bókamerki",
"Preferences" : "Kjörstillingar",
"Dashboard" : "Stjórnborð",
"Users" : "Notendur",
"Categories" : "Flokkar",
"Expand" : "Fletta út",
"Collapse" : "Fella saman",
@@ -70,7 +70,6 @@ OC.L10N.register(
"Bookmark" : "Bókamerki",
"Edit title" : "Breyta titli",
"Move thread" : "Færa spjallþráð",
"Preferences" : "Kjörstillingar",
"Files" : "Skráaforrit",
"Signature" : "Undirskrift",
"Privacy" : "Meðferð persónuupplýsinga",
@@ -78,7 +77,6 @@ OC.L10N.register(
"Tag" : "Merki",
"Description" : "Lýsing",
"Enabled" : "Virkt",
"New" : "Nýtt",
"Permissions" : "Heimildir",
"Preview" : "Forskoðun",
"Move up" : "Færa upp",
@@ -99,7 +97,6 @@ OC.L10N.register(
"Actions" : "Aðgerðir",
"No teams found" : "Engin teymi fundust",
"Members" : "Meðlimir",
"Loading users …" : "Hleð inn notendum …",
"Joined" : "Gekk inn",
"Active" : "Virkur"
},

View File

@@ -11,8 +11,8 @@
"Search" : "Search",
"Home" : "Heim",
"Bookmarks" : "Bókamerki",
"Preferences" : "Kjörstillingar",
"Dashboard" : "Stjórnborð",
"Users" : "Notendur",
"Categories" : "Flokkar",
"Expand" : "Fletta út",
"Collapse" : "Fella saman",
@@ -68,7 +68,6 @@
"Bookmark" : "Bókamerki",
"Edit title" : "Breyta titli",
"Move thread" : "Færa spjallþráð",
"Preferences" : "Kjörstillingar",
"Files" : "Skráaforrit",
"Signature" : "Undirskrift",
"Privacy" : "Meðferð persónuupplýsinga",
@@ -76,7 +75,6 @@
"Tag" : "Merki",
"Description" : "Lýsing",
"Enabled" : "Virkt",
"New" : "Nýtt",
"Permissions" : "Heimildir",
"Preview" : "Forskoðun",
"Move up" : "Færa upp",
@@ -97,7 +95,6 @@
"Actions" : "Aðgerðir",
"No teams found" : "Engin teymi fundust",
"Members" : "Meðlimir",
"Loading users …" : "Hleð inn notendum …",
"Joined" : "Gekk inn",
"Active" : "Virkur"
},"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"

Some files were not shown because too many files have changed in this diff Show More