Compare commits

...

29 Commits

Author SHA1 Message Date
29b3281f41 chore(master): release 0.13.1 2025-11-27 09:15:33 +02:00
adf1ab4f7b build: run all tests on pr 2025-11-27 08:49:08 +02:00
4b468dbfc8 test: add tests 2025-11-27 08:47:01 +02:00
9f8b4c3463 fix(UserInfo): hide User role from display 2025-11-27 08:45:09 +02:00
b849c4781a fix: role assignments 2025-11-27 08:45:07 +02:00
df29d3ad2b fix: edit/delete permissions for category mods 2025-11-27 08:16:32 +02:00
67f41ab876 chore: remove excessive logs 2025-11-27 08:09:54 +02:00
Nextcloud bot
ab3ea5cbb7 fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-11-27 02:03:10 +00:00
7db4740022 build: reduce workflow runs when unnecessary 2025-11-26 15:23:59 +02:00
3b2112864b docs: update README.md 2025-11-26 15:12:52 +02:00
d6a5d9de71 fix(10n): remove number-only translated string 2025-11-26 12:33:27 +02:00
292f6d5ac8 chore(master): release 0.13.0 2025-11-26 10:52:13 +02:00
Nextcloud bot
ecf49a3df0 fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-11-26 02:00:44 +00:00
aa00750504 docs: update README.md 2025-11-26 01:22:17 +02:00
229f93c551 test: add user/admin settings tests 2025-11-26 01:03:32 +02:00
2d4b239d9d refactor: extract admin settings to its own service 2025-11-26 01:03:19 +02:00
43885f9ffa feat: allow attachment uploads 2025-11-26 00:50:14 +02:00
549d7e17d2 fix(l10n): simplify translation text 2025-11-26 00:35:56 +02:00
f936f1dc25 fix(l10n): update wrong translation string 2025-11-25 23:36:52 +02:00
4832a95d43 fix(l10n): translation source strings 2025-11-25 18:50:54 +02:00
eb5a400f90 chore(master): release 0.12.0 2025-11-25 12:38:41 +02:00
b6ce286c41 fix: don't show loader when reordering categories/headers 2025-11-25 12:24:10 +02:00
04d1d1c658 fix: use same header create/edit dialog everywhere 2025-11-25 12:17:13 +02:00
c38a929a36 fix: default sort order for new categories 2025-11-25 11:58:23 +02:00
47288753a2 fix: lock slug input when editing category 2025-11-25 11:50:32 +02:00
c807929c94 feat: allow moving thread to a different category (admin/moderator) 2025-11-25 10:53:09 +02:00
a85dbaed91 feat: allow updating thread title (author/admin/moderator) 2025-11-25 10:52:34 +02:00
Nextcloud bot
33e6055d47 fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-11-25 02:02:30 +00:00
d2baf2a813 feat: add optional guest access with role-based permissions
Implement opt-in guest access system allowing unauthenticated users to
view forum content with configurable permissions.

Features Added:
  - Guest access toggle in admin settings for forum-wide control
  - Guest role with configurable category-level permissions
(view/post/reply)
  - Role type system (admin, moderator, default, guest, custom) for
enhanced access control
  - Public page support in routing with automatic redirect to login when
disabled
  - Public settings API endpoint for unauthenticated access to forum
metadata
  - Guest role permissions UI in admin panel with clear capability
restrictions
  - Database migration with automatic role type assignment and guest
role seeding

Security & Permission Improvements:
  - Permission middleware now validates permissions on public pages
instead of skipping checks
  - Admin/moderator roles have full access; guest/default roles
restricted from moderation
  - Guest role cannot be assigned to authenticated users

Breaking Changes:
  - Forum title/subtitle moved from system config to app config
(auto-migrated)
  - Permission middleware behavior changed for PublicPage routes (now
checks permissions)
2025-11-25 02:02:46 +02:00
263 changed files with 24314 additions and 1544 deletions

View File

@@ -10,6 +10,9 @@ on:
push:
branches:
- master
paths:
- 'appinfo/info.xml'
- '.github/workflows/lint-appinfo-xml.yml'
permissions:
contents: read

View File

@@ -5,6 +5,10 @@ on:
push:
branches:
- master
paths:
- 'lib/**/*.php'
- 'openapi.json'
- '.github/workflows/lint-openapi.yml'
permissions:
contents: read

View File

@@ -10,6 +10,10 @@ on:
push:
branches:
- master
paths:
- '**.php'
- '.php-cs-fixer.dist.php'
- '.github/workflows/lint-php-cs.yml'
permissions:
contents: read

View File

@@ -10,6 +10,9 @@ on:
push:
branches:
- master
paths:
- '**.php'
- '.github/workflows/lint-php.yml'
permissions:
contents: read

View File

@@ -1 +1 @@
{".":"0.11.1"}
{".":"0.13.1"}

View File

@@ -1,5 +1,49 @@
# Changelog
## [0.13.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.13.0...v0.13.1) (2025-11-27)
### Bug Fixes
* **10n:** remove number-only translated string ([d6a5d9d](https://github.com/chenasraf/nextcloud-forum/commit/d6a5d9de71c7cf24055ae52a7b05ad2a64e9eaab))
* edit/delete permissions for category mods ([df29d3a](https://github.com/chenasraf/nextcloud-forum/commit/df29d3ad2ba4a0eda004f3221bbdea28cd3131f1))
* **l10n:** Update translations from Transifex ([ab3ea5c](https://github.com/chenasraf/nextcloud-forum/commit/ab3ea5cbb77462fa78486102fcf7cfed7dfea3a8))
* role assignments ([b849c47](https://github.com/chenasraf/nextcloud-forum/commit/b849c4781a27d5351194da441d394945b77823e0))
* **UserInfo:** hide User role from display ([9f8b4c3](https://github.com/chenasraf/nextcloud-forum/commit/9f8b4c3463db8fa74ab6ed086c476a96d89f49c2))
## [0.13.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.12.0...v0.13.0) (2025-11-26)
### Features
* allow attachment uploads ([43885f9](https://github.com/chenasraf/nextcloud-forum/commit/43885f9ffa23dccfce6fb86f29a8a763f8d67ecf))
### Bug Fixes
* **l10n:** simplify translation text ([549d7e1](https://github.com/chenasraf/nextcloud-forum/commit/549d7e17d271013bd3176c7d4217361d93ba87f3))
* **l10n:** translation source strings ([4832a95](https://github.com/chenasraf/nextcloud-forum/commit/4832a95d436c8764f28d633fca5a6a03561d995c))
* **l10n:** Update translations from Transifex ([ecf49a3](https://github.com/chenasraf/nextcloud-forum/commit/ecf49a3df0084b7c7aebd0eb7a3867f7919b99be))
* **l10n:** update wrong translation string ([f936f1d](https://github.com/chenasraf/nextcloud-forum/commit/f936f1dc2594b13334aa7adb1fab30d9244410f6))
## [0.12.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.11.1...v0.12.0) (2025-11-25)
### Features
* add optional guest access with role-based permissions ([d2baf2a](https://github.com/chenasraf/nextcloud-forum/commit/d2baf2a81338ee8db6316c8bffc9c5b78a312ac6))
* allow moving thread to a different category (admin/moderator) ([c807929](https://github.com/chenasraf/nextcloud-forum/commit/c807929c94089f9e0c66714a948e0387a08002ed))
* allow updating thread title (author/admin/moderator) ([a85dbae](https://github.com/chenasraf/nextcloud-forum/commit/a85dbaed91b3589f1fb2f8ef195bf3cf40936e8c))
### Bug Fixes
* default sort order for new categories ([c38a929](https://github.com/chenasraf/nextcloud-forum/commit/c38a929a366a78062268a3c7cca2c68ff7e38dda))
* don't show loader when reordering categories/headers ([b6ce286](https://github.com/chenasraf/nextcloud-forum/commit/b6ce286c412f0146f5530ad29abf6012e1481bf3))
* **l10n:** Update translations from Transifex ([33e6055](https://github.com/chenasraf/nextcloud-forum/commit/33e6055d47aa56a85414d5ad66cc6a2cf986752d))
* lock slug input when editing category ([4728875](https://github.com/chenasraf/nextcloud-forum/commit/47288753a2cb9a5e42cc5a6a18d6e050d53964d5))
* use same header create/edit dialog everywhere ([04d1d1c](https://github.com/chenasraf/nextcloud-forum/commit/04d1d1c65885a7b5d668d69455f5e457ffb4f1a2))
## [0.11.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.11.0...v0.11.1) (2025-11-24)

101
README.md
View File

@@ -29,6 +29,7 @@ your data regularly.
- **File Attachments**: Attach files from Nextcloud to posts with secure permission-based access
- **Reactions**: React to posts with emoji reactions
- **User Roles & Permissions**: Fine-grained permission system for moderators and administrators
- **Guest Access**: Optional public access for unauthenticated users with configurable permissions
- **Read Markers**: Track unread posts and threads
- **Search**: Full-text search across threads and posts
- **Modern UI**: Built with Vue 3 and Nextcloud Vue components
@@ -62,6 +63,9 @@ php occ app:enable forum
## Administration
For detailed administration guides, usage instructions, and more, visit the
[Administration Wiki](https://github.com/chenasraf/nextcloud-forum/wiki/Administration).
### OCC Commands
The Forum app provides several OCC commands for administration and maintenance, including commands
@@ -85,92 +89,21 @@ just a small amount to help sustain this project, I would be very very thankful!
I welcome any issues or pull requests on GitHub. If you find a bug, or would like a new feature,
don't hesitate to open an appropriate issue and I will do my best to reply promptly.
### Translations
If you're interested in translating this app, please visit the
[Forum app resource on Transifex](https://app.transifex.com/nextcloud/nextcloud/forum/).
For more information about translations, including how to join the Nextcloud project, see
[Translate Nextcloud](https://nextcloud.com/translation/).
Translation resources are synced daily and updates are available on the next release of the app
after they are synced.
## Development
### Automation
Most development processes are automated:
- **GitHub Actions** run tests, builds, and validations on each push or pull request.
- **Pre-commit formatting** is handled by [lint-staged](https://github.com/okonet/lint-staged),
which automatically formats code before committing.
> 🛠️ The NPM package [husky](https://www.npmjs.com/package/husky) takes care of installing the
> pre-commit hook automatically after `pnpm install`.
---
### Manual Commands
While automation handles most workflows, the following commands are available for local development
and debugging:
| Command | Description | Notes |
| ---------------- | ---------------------------------------------------------- | ----------------------------------------------------------------------------------- |
| `make` | Installs dependencies and compiles frontend/backend assets | |
| `make test` | Runs unit and integration tests | |
| `make format` | Auto-fix code style | |
| `make lint` | Check code quality | |
| `make openapi` | Generate OpenAPI documentation | Output saved to `openapi.json` |
| `make appstore` | Production build for Nextcloud app store | |
| `make source` | Create full source package | |
| `make distclean` | Clean build artifacts and dependencies | |
| `make sign` | Sign release archive with SHA-512 signature | Run after uploading `.tar.gz` to GitHub. Uses `~/.nextcloud/certificates/forum.key` |
---
### Scaffolding
Generate boilerplate for common app pieces with:
```bash
pnpm gen <type> [name]
```
> **`name` is required** for every type **except** `migration`.
#### Available generators
| Type | Purpose | Output directory | Name required? | Template folder | Notes |
| ------------- | ----------------------------------------- | ---------------- | -------------- | ----------------- | ------------------------------------------------- |
| `component` | Vue single-file component for reusable UI | `src/components` | ✅ | `gen/component` | For user-facing building blocks. |
| `view` | Vue view / route view | `src/views` | ✅ | `gen/view` | Pair with your router. |
| `api` | PHP controller (API endpoint) | `lib/Controller` | ✅ | `gen/api` | PSR-4 namespace: `OCA\<App>\Controller`. |
| `service` | PHP service class | `lib/Service` | ✅ | `gen/service` | Business logic; DI-friendly. |
| `util` | PHP utility/helper | `lib/Util` | ✅ | `gen/util` | Pure helpers / small utilities. |
| `model` | PHP DB model / entity | `lib/Db` | ✅ | `gen/model` | Pair with migrations. |
| `command` | Nextcloud OCC console command | `lib/Command` | ✅ | `gen/command` | Shows up in `occ`. |
| `task-queued` | Queued background job | `lib/Cron` | ✅ | `gen/task-queued` | Extend queued job base. |
| `task-timed` | Timed background job (cron) | `lib/Cron` | ✅ | `gen/task-timed` | Scheduled execution. |
| `migration` | Database migration | `lib/Migration` | ❌ | `gen/migration` | Auto-numbers version; injects `version` and `dt`. |
##### How migrations are numbered
The scaffolder looks at `lib/Migration`, finds the latest `VersionNNNN...` file, and **increments**
it for you. It also injects:
- `version` — the next numeric version
- `dt` — a timestamp like `YYYYMMDDHHmmss` (via `date-fns`)
You dont pass a name for migrations.
## Resources
### Nextcloud Development
- [Nextcloud App Development Guide](https://nextcloud.com/developer/)
- [Nextcloud Developer Manual](https://docs.nextcloud.com/server/latest/developer_manual/)
- [Nextcloud Vue Components](https://github.com/nextcloud/nextcloud-vue)
- [Publishing to the App Store](https://nextcloudappstore.readthedocs.io/en/latest/developer.html)
### Technologies Used
- **Frontend**: [Vue 3](https://vuejs.org/), [Vite](https://vitejs.dev/),
[TypeScript](https://www.typescriptlang.org/)
- **Backend**: PHP 8.1+,
[Nextcloud OCP API](https://docs.nextcloud.com/server/latest/developer_manual/)
- **Database**: SQLite, MySQL, or PostgreSQL (via Nextcloud)
- **BBCode Parsing**: [ChrisKonnertz/BBCode](https://github.com/chriskonnertz/bbcode)
For detailed development guides and documentation, visit the
[Development Wiki](https://github.com/chenasraf/nextcloud-forum/wiki/Development).
## License

View File

@@ -23,6 +23,7 @@ This app is in early stages of development. While functional, you may encounter
- **Search** - Find discussions quickly with built-in search
- **User Profiles** - View user post history and statistics
- **Role-Based Permissions** - Control access and moderation with flexible roles
- **Guest Access**: Optional public access for unauthenticated users with configurable permissions
- **Admin Tools** - Manage categories, roles, BBCodes and forum settings
- **Moderation Tools** - Pin, lock and manage threads and posts
@@ -36,7 +37,7 @@ This app is in early stages of development. While functional, you may encounter
The forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control.
]]></description>
<version>0.11.1</version>
<version>0.13.1</version>
<licence>agpl</licence>
<author mail="contact@casraf.dev" homepage="https://casraf.dev">Chen Asraf</author>
<namespace>Forum</namespace>

35
l10n/af.js Normal file
View File

@@ -0,0 +1,35 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"User" : "Gebruiker",
"Forum" : "Forum",
"Search" : "Soek",
"Home" : "Tuis",
"Users" : "Gebruikers",
"Collapse" : "Vou In",
"Hello world!" : "Hallo wêreld!",
"Cancel" : "Cancel",
"Update" : "Werk by",
"Move" : "Skuif",
"Page not found" : "Blad nie gevind nie",
"Delete" : "Skrap",
"Save" : "Stoor",
"Retry" : "Herprobeer",
"Back to {category}" : "Terug na {category}",
"by" : "deur",
"Subscribe" : "Teken in",
"Files" : "Lêer ",
"Disable" : "Deaktiveer",
"Description" : "Beskrywing",
"New" : "Nuut",
"Access control" : "Toegangsbeheer",
"Settings saved" : "Instellings gestoor",
"Reset" : "Herstel",
"Category" : "Kategorie",
"ID" : "ID",
"Actions" : "Aksies",
"Active" : "Aktief",
"Deleted" : "Geskrap"
},
"nplurals=2; plural=(n != 1);");

33
l10n/af.json Normal file
View File

@@ -0,0 +1,33 @@
{ "translations": {
"Admin" : "Admin",
"User" : "Gebruiker",
"Forum" : "Forum",
"Search" : "Soek",
"Home" : "Tuis",
"Users" : "Gebruikers",
"Collapse" : "Vou In",
"Hello world!" : "Hallo wêreld!",
"Cancel" : "Cancel",
"Update" : "Werk by",
"Move" : "Skuif",
"Page not found" : "Blad nie gevind nie",
"Delete" : "Skrap",
"Save" : "Stoor",
"Retry" : "Herprobeer",
"Back to {category}" : "Terug na {category}",
"by" : "deur",
"Subscribe" : "Teken in",
"Files" : "Lêer ",
"Disable" : "Deaktiveer",
"Description" : "Beskrywing",
"New" : "Nuut",
"Access control" : "Toegangsbeheer",
"Settings saved" : "Instellings gestoor",
"Reset" : "Herstel",
"Category" : "Kategorie",
"ID" : "ID",
"Actions" : "Aksies",
"Active" : "Aktief",
"Deleted" : "Geskrap"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

89
l10n/ar.js Normal file
View File

@@ -0,0 +1,89 @@
OC.L10N.register(
"forum",
{
"Admin" : "مدير",
"Moderator" : "مشرف",
"User" : "المُستخدِم",
"General" : "عامٌّ",
"Support" : "المساعدة",
"Bold text" : "نص داكن",
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
"Forum" : "المنتدى",
"Deleted user" : "مستخدم محذوف",
"Search" : "بحث",
"Home" : "الرئيسية",
"Dashboard" : "الرئيسية",
"Users" : "المستخدمين",
"Categories" : "التصنيفات",
"Expand" : "توسيع",
"Collapse" : "طوي",
"Hello world!" : "مرحبا بالعالم!",
"Code" : "الرمز",
"Quote" : "عرض الأسعار",
"Font size" : "حجم الخط",
"List" : "قائمة",
"Insert emoji" : "أدخِل \"إيموجي\" emoji",
"Close" : "إغلاق",
"Failed to upload file" : "تعذّر رفع الملف",
"Sort order" : "ترتيب الفرز",
"Cancel" : "Cancel",
"Create" : "إنشاء",
"Update" : "تحديث",
"Move" : "نقل",
"Page not found" : "الصفحة غير موجودة",
"Back" : "عودة",
"Edit" : "تحرير",
"Delete" : "حذف",
"Unread" : "غير مقروء",
"Save" : "حفظ",
"React with {emoji}" : "تفاعل باستخدام {emoji}",
"Uncategorized" : "غير مُصنّفة",
"Views" : "مشاهدات",
"Title" : "العنوان",
"Refresh" : "إنعاش",
"Loading …" : "التحميل جارٍ ...",
"Retry" : "أعِدِ المحاولة",
"Error" : "خطأ",
"Searching …" : "يتم الآن البحث…",
"No results found" : "لا توجد أي نتائج",
"Back to {category}" : "عودة إلى {category}",
"Reply" : "الرَّدّ",
"by" : "من قِبَل",
"Subscribe" : "إشترك",
"Subscribed" : "مشترك",
"Edit title" : "تحرير عنوان",
"Move thread" : "أنقُل النَّظْمَة thread",
"Preferences" : "التفضيلات",
"Notifications" : "الإشعارات",
"Files" : "الملفّات",
"Browse" : "تصفُّح",
"Enable" : "تمكين",
"Disable" : "تعطيل",
"Description" : "الوصف",
"Enabled" : "مُفعّل",
"Name" : "الاسم",
"New" : "جديد",
"Permissions" : "الصلاحيّات",
"Move up" : "نقلٌ للأعلي",
"Move down" : "نقلٌ للأسفل",
"Last 7 days" : "آخر 7 أيام",
"General settings" : "الإعدادات العامة",
"Appearance" : "المظهر",
"Access control" : "مراقبة النفاذ",
"Settings saved" : "تمّ حفظ الإعدادات",
"Failed to save settings" : "فشل في حفظ الإعدادات",
"Reset" : "إعادة تعيين",
"Category" : "التصنيف",
"Allow" : "سماح",
"ID" : "معرف ID",
"Created" : "أُنشِئَ",
"Actions" : "الإجراءات",
"No description" : "بدون وصف",
"User management" : "إدارة المستخدِمين",
"Loading users …" : "تحميل المستخدِمين جارٍ ...",
"No users found" : "لا يوجد مستخدمون",
"Status" : "الحاله",
"Active" : "نَشِط",
"Deleted" : "محذوف"
},
"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;");

87
l10n/ar.json Normal file
View File

@@ -0,0 +1,87 @@
{ "translations": {
"Admin" : "مدير",
"Moderator" : "مشرف",
"User" : "المُستخدِم",
"General" : "عامٌّ",
"Support" : "المساعدة",
"Bold text" : "نص داكن",
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
"Forum" : "المنتدى",
"Deleted user" : "مستخدم محذوف",
"Search" : "بحث",
"Home" : "الرئيسية",
"Dashboard" : "الرئيسية",
"Users" : "المستخدمين",
"Categories" : "التصنيفات",
"Expand" : "توسيع",
"Collapse" : "طوي",
"Hello world!" : "مرحبا بالعالم!",
"Code" : "الرمز",
"Quote" : "عرض الأسعار",
"Font size" : "حجم الخط",
"List" : "قائمة",
"Insert emoji" : "أدخِل \"إيموجي\" emoji",
"Close" : "إغلاق",
"Failed to upload file" : "تعذّر رفع الملف",
"Sort order" : "ترتيب الفرز",
"Cancel" : "Cancel",
"Create" : "إنشاء",
"Update" : "تحديث",
"Move" : "نقل",
"Page not found" : "الصفحة غير موجودة",
"Back" : "عودة",
"Edit" : "تحرير",
"Delete" : "حذف",
"Unread" : "غير مقروء",
"Save" : "حفظ",
"React with {emoji}" : "تفاعل باستخدام {emoji}",
"Uncategorized" : "غير مُصنّفة",
"Views" : "مشاهدات",
"Title" : "العنوان",
"Refresh" : "إنعاش",
"Loading …" : "التحميل جارٍ ...",
"Retry" : "أعِدِ المحاولة",
"Error" : "خطأ",
"Searching …" : "يتم الآن البحث…",
"No results found" : "لا توجد أي نتائج",
"Back to {category}" : "عودة إلى {category}",
"Reply" : "الرَّدّ",
"by" : "من قِبَل",
"Subscribe" : "إشترك",
"Subscribed" : "مشترك",
"Edit title" : "تحرير عنوان",
"Move thread" : "أنقُل النَّظْمَة thread",
"Preferences" : "التفضيلات",
"Notifications" : "الإشعارات",
"Files" : "الملفّات",
"Browse" : "تصفُّح",
"Enable" : "تمكين",
"Disable" : "تعطيل",
"Description" : "الوصف",
"Enabled" : "مُفعّل",
"Name" : "الاسم",
"New" : "جديد",
"Permissions" : "الصلاحيّات",
"Move up" : "نقلٌ للأعلي",
"Move down" : "نقلٌ للأسفل",
"Last 7 days" : "آخر 7 أيام",
"General settings" : "الإعدادات العامة",
"Appearance" : "المظهر",
"Access control" : "مراقبة النفاذ",
"Settings saved" : "تمّ حفظ الإعدادات",
"Failed to save settings" : "فشل في حفظ الإعدادات",
"Reset" : "إعادة تعيين",
"Category" : "التصنيف",
"Allow" : "سماح",
"ID" : "معرف ID",
"Created" : "أُنشِئَ",
"Actions" : "الإجراءات",
"No description" : "بدون وصف",
"User management" : "إدارة المستخدِمين",
"Loading users …" : "تحميل المستخدِمين جارٍ ...",
"No users found" : "لا يوجد مستخدمون",
"Status" : "الحاله",
"Active" : "نَشِط",
"Deleted" : "محذوف"
},"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;"
}

82
l10n/ast.js Normal file
View File

@@ -0,0 +1,82 @@
OC.L10N.register(
"forum",
{
"Admin" : "Alministración",
"Moderator" : "Llendador",
"User" : "Usuariu",
"Guest" : "Convidáu",
"General" : "Xeneral",
"Support" : "Sofitu",
"Bold text" : "Testu en negrina",
"Underlined text" : "Testu solliniáu",
"Forum" : "Foru",
"Deleted user" : "Usuariu desaniciáu",
"Search" : "Buscar",
"Home" : "Aniciu",
"Dashboard" : "Panel",
"Users" : "Usuarios",
"Categories" : "Categories",
"Expand" : "Espander",
"Collapse" : "Contrayer",
"Hello world!" : "¡Hola, mundu!",
"Code" : "Códigu",
"List" : "Llista",
"Upload failed" : "Xuba fallida",
"Close" : "Zarrar",
"Cancel" : "Cancel",
"Create" : "Crear",
"Update" : "Anovar",
"Move" : "Mover",
"Page not found" : "Nun s'atopó la páxina",
"Back" : "Atrás",
"Edit" : "Editar",
"Delete" : "Desaniciar",
"Unread" : "Ensin lleer",
"Save" : "Guardar",
"Uncategorized" : "Ensin categoría",
"Views" : "Vistes",
"Title" : "Títulu",
"Refresh" : "Anovar",
"Loading …" : "Cargando…",
"Retry" : "Retentar",
"Error" : "Error",
"Searching …" : "Buscando…",
"No results found" : "Nun s'atopó nengún resultáu",
"Back to {category}" : "Volver a «{category}»",
"Reply" : "Responder",
"by" : "por",
"Subscribe" : "Soscribise",
"Edit title" : "Editar el títulu",
"Move thread" : "Mover el filu",
"Preferences" : "Preferencies",
"Notifications" : "Avisos",
"Files" : "Ficheros",
"Enable" : "Activar",
"Disable" : "Desactivar",
"Description" : "Descripción",
"Enabled" : "Activóse",
"Name" : "Nome",
"New" : "Nuevu",
"Permissions" : "Permisos",
"Move up" : "Xubir",
"Move down" : "Baxar",
"Last 7 days" : "Los últimos 7 díes",
"All time" : "Tol tiempu",
"General settings" : "Configuración xeneral",
"Appearance" : "Aspeutu",
"Access control" : "Control d'accesu",
"Settings saved" : "Guardóse la configuración",
"Failed to save settings" : "Nun se pue guardar la configuración",
"Reset" : "Reafitar",
"Category" : "Categoría",
"Allow" : "Permitir",
"ID" : "ID",
"Actions" : "Aiciones",
"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",
"Deleted" : "Desanicióse"
},
"nplurals=2; plural=(n != 1);");

80
l10n/ast.json Normal file
View File

@@ -0,0 +1,80 @@
{ "translations": {
"Admin" : "Alministración",
"Moderator" : "Llendador",
"User" : "Usuariu",
"Guest" : "Convidáu",
"General" : "Xeneral",
"Support" : "Sofitu",
"Bold text" : "Testu en negrina",
"Underlined text" : "Testu solliniáu",
"Forum" : "Foru",
"Deleted user" : "Usuariu desaniciáu",
"Search" : "Buscar",
"Home" : "Aniciu",
"Dashboard" : "Panel",
"Users" : "Usuarios",
"Categories" : "Categories",
"Expand" : "Espander",
"Collapse" : "Contrayer",
"Hello world!" : "¡Hola, mundu!",
"Code" : "Códigu",
"List" : "Llista",
"Upload failed" : "Xuba fallida",
"Close" : "Zarrar",
"Cancel" : "Cancel",
"Create" : "Crear",
"Update" : "Anovar",
"Move" : "Mover",
"Page not found" : "Nun s'atopó la páxina",
"Back" : "Atrás",
"Edit" : "Editar",
"Delete" : "Desaniciar",
"Unread" : "Ensin lleer",
"Save" : "Guardar",
"Uncategorized" : "Ensin categoría",
"Views" : "Vistes",
"Title" : "Títulu",
"Refresh" : "Anovar",
"Loading …" : "Cargando…",
"Retry" : "Retentar",
"Error" : "Error",
"Searching …" : "Buscando…",
"No results found" : "Nun s'atopó nengún resultáu",
"Back to {category}" : "Volver a «{category}»",
"Reply" : "Responder",
"by" : "por",
"Subscribe" : "Soscribise",
"Edit title" : "Editar el títulu",
"Move thread" : "Mover el filu",
"Preferences" : "Preferencies",
"Notifications" : "Avisos",
"Files" : "Ficheros",
"Enable" : "Activar",
"Disable" : "Desactivar",
"Description" : "Descripción",
"Enabled" : "Activóse",
"Name" : "Nome",
"New" : "Nuevu",
"Permissions" : "Permisos",
"Move up" : "Xubir",
"Move down" : "Baxar",
"Last 7 days" : "Los últimos 7 díes",
"All time" : "Tol tiempu",
"General settings" : "Configuración xeneral",
"Appearance" : "Aspeutu",
"Access control" : "Control d'accesu",
"Settings saved" : "Guardóse la configuración",
"Failed to save settings" : "Nun se pue guardar la configuración",
"Reset" : "Reafitar",
"Category" : "Categoría",
"Allow" : "Permitir",
"ID" : "ID",
"Actions" : "Aiciones",
"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",
"Deleted" : "Desanicióse"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

38
l10n/az.js Normal file
View File

@@ -0,0 +1,38 @@
OC.L10N.register(
"forum",
{
"Admin" : "İnzibatçı",
"User" : "User",
"General" : "Ümumi",
"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",
"Cancel" : "Cancel",
"Update" : "Yenilənmə",
"Move" : "Move",
"Back" : "Geri",
"Edit" : "Dəyişiklik et",
"Delete" : "Sil",
"Save" : "Saxla",
"Refresh" : "Yenilə",
"Error" : "Səhv",
"by" : "onunla",
"Subscribe" : "Abunə",
"Disable" : "Dayandır",
"Description" : "Açıqlanma",
"Enabled" : "İşə salınıb",
"Name" : "Ad",
"New" : "Yeni",
"Settings saved" : "Parametrlər yaddaşa verildi",
"Reset" : "Sıfırla",
"Category" : "Kateqoriya",
"Actions" : "İşlər",
"Status" : "Status",
"Deleted" : "Silinib"
},
"nplurals=2; plural=(n != 1);");

36
l10n/az.json Normal file
View File

@@ -0,0 +1,36 @@
{ "translations": {
"Admin" : "İnzibatçı",
"User" : "User",
"General" : "Ümumi",
"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",
"Cancel" : "Cancel",
"Update" : "Yenilənmə",
"Move" : "Move",
"Back" : "Geri",
"Edit" : "Dəyişiklik et",
"Delete" : "Sil",
"Save" : "Saxla",
"Refresh" : "Yenilə",
"Error" : "Səhv",
"by" : "onunla",
"Subscribe" : "Abunə",
"Disable" : "Dayandır",
"Description" : "Açıqlanma",
"Enabled" : "İşə salınıb",
"Name" : "Ad",
"New" : "Yeni",
"Settings saved" : "Parametrlər yaddaşa verildi",
"Reset" : "Sıfırla",
"Category" : "Kateqoriya",
"Actions" : "İşlər",
"Status" : "Status",
"Deleted" : "Silinib"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

97
l10n/be.js Normal file
View File

@@ -0,0 +1,97 @@
OC.L10N.register(
"forum",
{
"Admin" : "Адміністратар",
"Moderator" : "Мадэратар",
"User" : "Карыстальнік",
"Guest" : "Госць",
"General" : "Агульныя",
"Support" : "Падтрымка",
"Attachment" : "Далучэнне",
"Welcome to Nextcloud Forums" : "Вітаем на Форумах Nextcloud",
"Welcome to the Nextcloud Forums!" : "Вітаем на Форумах Nextcloud!",
"Bold text" : "Тоўсты тэкст",
"Italic text" : "Тэкст курсівам",
"Underlined text" : "Падкрэслены тэкст",
"Forum" : "Форум",
"Welcome to the forum!" : "Вітаем на форуме!",
"Deleted user" : "Выдалены карыстальнік",
"Search" : "Пошук",
"Home" : "Дадому",
"Dashboard" : "Панэль кіравання",
"Users" : "Карыстальнікі",
"Roles" : "Ролі",
"Categories" : "Катэгорыі",
"Expand" : "Разгарнуць",
"Collapse" : "Згарнуць",
"Hello world!" : "Hello world!",
"Code" : "Код",
"Font size" : "Памер шрыфта",
"Font color" : "Колер шрыфта",
"Align left" : "Выраўнаваць па левым краі",
"Align center" : "Выраўнаваць па цэнтры",
"Align right" : "Выраўнаваць па правым краі",
"List" : "Спіс",
"Example" : "Прыклад",
"Insert emoji" : "Уставіць эмодзі",
"Uploading file …" : "Запампоўванне файла …",
"Close" : "Закрыць",
"_Post_::_Posts_" : ["Допіс","Допісы","Допісы","Допісы"],
"No description available" : "Апісанне недаступна",
"Cancel" : "Скасаваць",
"Create" : "Ствараць",
"Update" : "Абнавіць",
"Move" : "Перамясціць",
"Page not found" : "Старонка не знойдзена",
"Back" : "Назад",
"Edit" : "Рэдагаваць",
"Delete" : "Выдаліць",
"Are you sure you want to delete this post? This action cannot be undone." : "Вы ўпэўнены, што хочаце выдаліць гэты допіс? Гэта дзеянне нельга адрабіць.",
"Unread" : "Непрачытанае",
"Save" : "Захаваць",
"Add reaction" : "Дадаць рэакцыю",
"React with {emoji}" : "Адрэагаваць з {emoji}",
"_%n post_::_%n posts_" : ["%n допіс","%n допісы","%n допісаў","%n допісаў"],
"Replies" : "Адказы",
"Title" : "Загаловак",
"Refresh" : "Абнавіць",
"Loading …" : "Загрузка …",
"Retry" : "Паўтарыць спробу",
"In {category}" : "У {category}",
"Error" : "Памылка",
"First post" : "Першы допіс",
"Searching …" : "Пошук …",
"No results found" : "Вынікаў не знойдзена",
"Back to {category}" : "Назад да {category}",
"Reply" : "Адказаць",
"Edit title" : "Рэдагаваць загаловак",
"Notifications" : "Апавяшчэнні",
"Files" : "Файлы",
"Browse" : "Агляд",
"Enable" : "Уключыць",
"Disable" : "Адключыць",
"Tag" : "Тэг",
"Description" : "Апісанне",
"Enabled" : "Уключаны",
"Name" : "Назва",
"Enter category name" : "Увядзіце назву катэгорыі",
"New" : "Новы",
"Permissions" : "Дазволы",
"Move up" : "Перамясціць уверх",
"Move down" : "Перамясціць уніз",
"Last 7 days" : "Апошнія 7 дзён",
"General settings" : "Агульныя налады",
"Appearance" : "Знешні выгляд",
"Settings saved" : "Налады захаваны",
"Failed to save settings" : "Не ўдалося захаваць налады",
"Reset" : "Скінуць",
"Category" : "Катэгорыя",
"Allow" : "Дазволіць",
"ID" : "Ідэнтыфікатар",
"Actions" : "Дзеянні",
"Posts" : "Допісы",
"Status" : "Статус",
"Active" : "Актыўны",
"Deleted" : "Выдалены"
},
"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);");

95
l10n/be.json Normal file
View File

@@ -0,0 +1,95 @@
{ "translations": {
"Admin" : "Адміністратар",
"Moderator" : "Мадэратар",
"User" : "Карыстальнік",
"Guest" : "Госць",
"General" : "Агульныя",
"Support" : "Падтрымка",
"Attachment" : "Далучэнне",
"Welcome to Nextcloud Forums" : "Вітаем на Форумах Nextcloud",
"Welcome to the Nextcloud Forums!" : "Вітаем на Форумах Nextcloud!",
"Bold text" : "Тоўсты тэкст",
"Italic text" : "Тэкст курсівам",
"Underlined text" : "Падкрэслены тэкст",
"Forum" : "Форум",
"Welcome to the forum!" : "Вітаем на форуме!",
"Deleted user" : "Выдалены карыстальнік",
"Search" : "Пошук",
"Home" : "Дадому",
"Dashboard" : "Панэль кіравання",
"Users" : "Карыстальнікі",
"Roles" : "Ролі",
"Categories" : "Катэгорыі",
"Expand" : "Разгарнуць",
"Collapse" : "Згарнуць",
"Hello world!" : "Hello world!",
"Code" : "Код",
"Font size" : "Памер шрыфта",
"Font color" : "Колер шрыфта",
"Align left" : "Выраўнаваць па левым краі",
"Align center" : "Выраўнаваць па цэнтры",
"Align right" : "Выраўнаваць па правым краі",
"List" : "Спіс",
"Example" : "Прыклад",
"Insert emoji" : "Уставіць эмодзі",
"Uploading file …" : "Запампоўванне файла …",
"Close" : "Закрыць",
"_Post_::_Posts_" : ["Допіс","Допісы","Допісы","Допісы"],
"No description available" : "Апісанне недаступна",
"Cancel" : "Скасаваць",
"Create" : "Ствараць",
"Update" : "Абнавіць",
"Move" : "Перамясціць",
"Page not found" : "Старонка не знойдзена",
"Back" : "Назад",
"Edit" : "Рэдагаваць",
"Delete" : "Выдаліць",
"Are you sure you want to delete this post? This action cannot be undone." : "Вы ўпэўнены, што хочаце выдаліць гэты допіс? Гэта дзеянне нельга адрабіць.",
"Unread" : "Непрачытанае",
"Save" : "Захаваць",
"Add reaction" : "Дадаць рэакцыю",
"React with {emoji}" : "Адрэагаваць з {emoji}",
"_%n post_::_%n posts_" : ["%n допіс","%n допісы","%n допісаў","%n допісаў"],
"Replies" : "Адказы",
"Title" : "Загаловак",
"Refresh" : "Абнавіць",
"Loading …" : "Загрузка …",
"Retry" : "Паўтарыць спробу",
"In {category}" : "У {category}",
"Error" : "Памылка",
"First post" : "Першы допіс",
"Searching …" : "Пошук …",
"No results found" : "Вынікаў не знойдзена",
"Back to {category}" : "Назад да {category}",
"Reply" : "Адказаць",
"Edit title" : "Рэдагаваць загаловак",
"Notifications" : "Апавяшчэнні",
"Files" : "Файлы",
"Browse" : "Агляд",
"Enable" : "Уключыць",
"Disable" : "Адключыць",
"Tag" : "Тэг",
"Description" : "Апісанне",
"Enabled" : "Уключаны",
"Name" : "Назва",
"Enter category name" : "Увядзіце назву катэгорыі",
"New" : "Новы",
"Permissions" : "Дазволы",
"Move up" : "Перамясціць уверх",
"Move down" : "Перамясціць уніз",
"Last 7 days" : "Апошнія 7 дзён",
"General settings" : "Агульныя налады",
"Appearance" : "Знешні выгляд",
"Settings saved" : "Налады захаваны",
"Failed to save settings" : "Не ўдалося захаваць налады",
"Reset" : "Скінуць",
"Category" : "Катэгорыя",
"Allow" : "Дазволіць",
"ID" : "Ідэнтыфікатар",
"Actions" : "Дзеянні",
"Posts" : "Допісы",
"Status" : "Статус",
"Active" : "Актыўны",
"Deleted" : "Выдалены"
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
}

85
l10n/bg.js Normal file
View File

@@ -0,0 +1,85 @@
OC.L10N.register(
"forum",
{
"Admin" : "Админ",
"User" : "Потребител",
"General" : "Общи",
"Support" : "Поддръжка",
"Bold text" : "Удебелен текст",
"Underlined text" : "Подчертан текст",
"Forum" : "Форум",
"Deleted user" : "Изтрит потребител",
"Search" : "Търсене",
"Home" : "Начало",
"Dashboard" : "Табло",
"Categories" : "Категории",
"Expand" : "Разгъване",
"Collapse" : "Сгъване",
"Hello world!" : "Здравей Свят!",
"Code" : "Код",
"Quote" : "Оферта",
"Font size" : "Размер на шрифта",
"List" : "Списък",
"Insert emoji" : "Вмъкване на емотикон",
"Upload failed" : "Неуспешно качване",
"Close" : "Затваряне",
"Sort order" : "Сортиране на реда",
"Cancel" : "Cancel",
"Create" : "Създаване",
"Update" : "Обновяване",
"Move" : "Преместване",
"Page not found" : "Страницата не е намерена",
"Back" : "Назад",
"Edit" : "Промяна",
"Delete" : "Изтриване",
"Unread" : "Непрочетено",
"Save" : "Запиши",
"React with {emoji}" : "Реагирайте с {emoji}",
"Uncategorized" : "Некатегоризирани",
"Views" : "Изгледи",
"Title" : "Заглавие",
"Refresh" : "Опресняване",
"Loading …" : "Зареждане …",
"Retry" : "Опитай отново",
"Error" : "Грешка",
"Searching …" : "Търсене ...",
"No results found" : "Няма намерени резултати",
"Back to {category}" : "Обратно към {category}",
"by" : "от",
"Subscribe" : "Абониране",
"Subscribed" : "Абониран",
"Edit title" : "Редактиране на заглавието",
"Move thread" : "Преместване на нишката",
"Preferences" : "Предпочитания",
"Notifications" : "Известия",
"Files" : "Файлове",
"Enable" : "Включена",
"Disable" : "Изключване",
"Tag" : "Етикет",
"Description" : "Описание",
"Enabled" : "Включено",
"Name" : "Име",
"New" : "Нов",
"Permissions" : "Права",
"Move up" : "Преместване нагоре",
"Move down" : "Преместване надолу",
"Total users" : "Общо потребители",
"Last 7 days" : "Последните 7 дни",
"General settings" : "Общи настройки",
"Appearance" : "Изглед",
"Access control" : "Контрол на достъпа",
"Settings saved" : "Настройките са запазени",
"Failed to save settings" : "Неуспешно запазване на настройките",
"Reset" : "Възстановяване",
"Category" : "Категория",
"Allow" : "Да",
"ID" : "ID /Идентификатор/",
"Actions" : "Действия",
"No description" : "Без описание",
"No users found" : "Няма намерени потребители",
"Joined" : "Присъединен",
"Status" : "Състояние",
"Active" : "Активен",
"Deleted" : "Изтрито"
},
"nplurals=2; plural=(n != 1);");

83
l10n/bg.json Normal file
View File

@@ -0,0 +1,83 @@
{ "translations": {
"Admin" : "Админ",
"User" : "Потребител",
"General" : "Общи",
"Support" : "Поддръжка",
"Bold text" : "Удебелен текст",
"Underlined text" : "Подчертан текст",
"Forum" : "Форум",
"Deleted user" : "Изтрит потребител",
"Search" : "Търсене",
"Home" : "Начало",
"Dashboard" : "Табло",
"Categories" : "Категории",
"Expand" : "Разгъване",
"Collapse" : "Сгъване",
"Hello world!" : "Здравей Свят!",
"Code" : "Код",
"Quote" : "Оферта",
"Font size" : "Размер на шрифта",
"List" : "Списък",
"Insert emoji" : "Вмъкване на емотикон",
"Upload failed" : "Неуспешно качване",
"Close" : "Затваряне",
"Sort order" : "Сортиране на реда",
"Cancel" : "Cancel",
"Create" : "Създаване",
"Update" : "Обновяване",
"Move" : "Преместване",
"Page not found" : "Страницата не е намерена",
"Back" : "Назад",
"Edit" : "Промяна",
"Delete" : "Изтриване",
"Unread" : "Непрочетено",
"Save" : "Запиши",
"React with {emoji}" : "Реагирайте с {emoji}",
"Uncategorized" : "Некатегоризирани",
"Views" : "Изгледи",
"Title" : "Заглавие",
"Refresh" : "Опресняване",
"Loading …" : "Зареждане …",
"Retry" : "Опитай отново",
"Error" : "Грешка",
"Searching …" : "Търсене ...",
"No results found" : "Няма намерени резултати",
"Back to {category}" : "Обратно към {category}",
"by" : "от",
"Subscribe" : "Абониране",
"Subscribed" : "Абониран",
"Edit title" : "Редактиране на заглавието",
"Move thread" : "Преместване на нишката",
"Preferences" : "Предпочитания",
"Notifications" : "Известия",
"Files" : "Файлове",
"Enable" : "Включена",
"Disable" : "Изключване",
"Tag" : "Етикет",
"Description" : "Описание",
"Enabled" : "Включено",
"Name" : "Име",
"New" : "Нов",
"Permissions" : "Права",
"Move up" : "Преместване нагоре",
"Move down" : "Преместване надолу",
"Total users" : "Общо потребители",
"Last 7 days" : "Последните 7 дни",
"General settings" : "Общи настройки",
"Appearance" : "Изглед",
"Access control" : "Контрол на достъпа",
"Settings saved" : "Настройките са запазени",
"Failed to save settings" : "Неуспешно запазване на настройките",
"Reset" : "Възстановяване",
"Category" : "Категория",
"Allow" : "Да",
"ID" : "ID /Идентификатор/",
"Actions" : "Действия",
"No description" : "Без описание",
"No users found" : "Няма намерени потребители",
"Joined" : "Присъединен",
"Status" : "Състояние",
"Active" : "Активен",
"Deleted" : "Изтрито"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

33
l10n/bn_BD.js Normal file
View File

@@ -0,0 +1,33 @@
OC.L10N.register(
"forum",
{
"Admin" : "প্রশাসন",
"User" : "User",
"General" : "সাধারণ",
"Forum" : "ফোরাম",
"Search" : "Search",
"Home" : "বাড়ি",
"Users" : "ব্যবহারকারী",
"Collapse" : "ভাঙো",
"Upload failed" : "আপলোড হয়নি",
"Close" : "বন্ধ",
"Cancel" : "Cancel",
"Update" : "পরিবর্ধন",
"Move" : "Move",
"Edit" : "সম্পাদনা",
"Delete" : "মুছে",
"Save" : "সংরক্ষণ",
"Refresh" : "নবোদ্যম",
"Error" : "সমস্যা",
"by" : "কর্তৃক",
"Subscribe" : "গ্রাহক হোন",
"Disable" : "নিষ্ক্রিয়",
"Description" : "বিবরণ",
"Enabled" : "কার্যকর",
"Name" : "নাম",
"New" : "নতুন",
"Reset" : "পূণঃনির্ধানণ",
"Actions" : "পদক্ষেপসমূহ",
"Deleted" : "মুছে ফেলা"
},
"nplurals=2; plural=(n != 1);");

31
l10n/bn_BD.json Normal file
View File

@@ -0,0 +1,31 @@
{ "translations": {
"Admin" : "প্রশাসন",
"User" : "User",
"General" : "সাধারণ",
"Forum" : "ফোরাম",
"Search" : "Search",
"Home" : "বাড়ি",
"Users" : "ব্যবহারকারী",
"Collapse" : "ভাঙো",
"Upload failed" : "আপলোড হয়নি",
"Close" : "বন্ধ",
"Cancel" : "Cancel",
"Update" : "পরিবর্ধন",
"Move" : "Move",
"Edit" : "সম্পাদনা",
"Delete" : "মুছে",
"Save" : "সংরক্ষণ",
"Refresh" : "নবোদ্যম",
"Error" : "সমস্যা",
"by" : "কর্তৃক",
"Subscribe" : "গ্রাহক হোন",
"Disable" : "নিষ্ক্রিয়",
"Description" : "বিবরণ",
"Enabled" : "কার্যকর",
"Name" : "নাম",
"New" : "নতুন",
"Reset" : "পূণঃনির্ধানণ",
"Actions" : "পদক্ষেপসমূহ",
"Deleted" : "মুছে ফেলা"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

48
l10n/br.js Normal file
View File

@@ -0,0 +1,48 @@
OC.L10N.register(
"forum",
{
"Admin" : "Merour",
"User" : "Implijer",
"General" : "Hollek",
"Forum" : "Forum",
"Search" : "Klask",
"Home" : "Degemer",
"Dashboard" : "Taolenn-stur",
"Users" : "Implijer",
"Categories" : "Rummadoù",
"Hello world!" : "Hello world!",
"List" : "Roll",
"Upload failed" : "Pellkasaden c'hwitet",
"Close" : "Serriñ",
"Cancel" : "Cancel",
"Update" : "Hizivaat",
"Move" : "Diplasañ",
"Edit" : "Embann",
"Delete" : "Dilemel",
"Save" : "Enrollañ",
"Title" : "Titl",
"Refresh" : "Freskaat",
"Retry" : "Klaskit en dro",
"Error" : "Fazi",
"Searching …" : "O klask ...",
"Back to {category}" : "Distro da {category}",
"by" : "gant",
"Preferences" : "Penndibaboù",
"Notifications" : "Kemennadennoù",
"Enable" : "Aotreañ",
"Disable" : "Diweredekaat",
"Description" : "Deskrivadur",
"Name" : "Anv",
"New" : "Nevez",
"General settings" : "Stummoù hollek",
"Access control" : "Kontrol tremen",
"Settings saved" : "Stummoù enrollet",
"Allow" : "Aotrañ",
"ID" : "ID",
"Created" : "Krouet",
"Actions" : "Oberoù",
"Status" : "Statud",
"Active" : "O labourat",
"Deleted" : "Dilamet"
},
"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);");

46
l10n/br.json Normal file
View File

@@ -0,0 +1,46 @@
{ "translations": {
"Admin" : "Merour",
"User" : "Implijer",
"General" : "Hollek",
"Forum" : "Forum",
"Search" : "Klask",
"Home" : "Degemer",
"Dashboard" : "Taolenn-stur",
"Users" : "Implijer",
"Categories" : "Rummadoù",
"Hello world!" : "Hello world!",
"List" : "Roll",
"Upload failed" : "Pellkasaden c'hwitet",
"Close" : "Serriñ",
"Cancel" : "Cancel",
"Update" : "Hizivaat",
"Move" : "Diplasañ",
"Edit" : "Embann",
"Delete" : "Dilemel",
"Save" : "Enrollañ",
"Title" : "Titl",
"Refresh" : "Freskaat",
"Retry" : "Klaskit en dro",
"Error" : "Fazi",
"Searching …" : "O klask ...",
"Back to {category}" : "Distro da {category}",
"by" : "gant",
"Preferences" : "Penndibaboù",
"Notifications" : "Kemennadennoù",
"Enable" : "Aotreañ",
"Disable" : "Diweredekaat",
"Description" : "Deskrivadur",
"Name" : "Anv",
"New" : "Nevez",
"General settings" : "Stummoù hollek",
"Access control" : "Kontrol tremen",
"Settings saved" : "Stummoù enrollet",
"Allow" : "Aotrañ",
"ID" : "ID",
"Created" : "Krouet",
"Actions" : "Oberoù",
"Status" : "Statud",
"Active" : "O labourat",
"Deleted" : "Dilamet"
},"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"
}

30
l10n/bs.js Normal file
View File

@@ -0,0 +1,30 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administrator",
"User" : "User",
"Forum" : "Forum",
"Search" : "Search",
"Home" : "Početna stranica",
"Users" : "Korisnici",
"Collapse" : "Proširi",
"Hello world!" : "Halo svijete!",
"Close" : "Zatvori",
"Cancel" : "Cancel",
"Create" : "Kreiraj",
"Update" : "Ažuriraj",
"Move" : "Move",
"Edit" : "Izmjeni",
"Delete" : "Obriši",
"Save" : "Spremi",
"Title" : "Naslov",
"Error" : "Greška",
"by" : "od strane",
"Disable" : "Onemogući",
"Description" : "Opis",
"Enabled" : "Aktivirano",
"Name" : "Ime",
"New" : "Novo",
"Actions" : "Radnje"
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");

28
l10n/bs.json Normal file
View File

@@ -0,0 +1,28 @@
{ "translations": {
"Admin" : "Administrator",
"User" : "User",
"Forum" : "Forum",
"Search" : "Search",
"Home" : "Početna stranica",
"Users" : "Korisnici",
"Collapse" : "Proširi",
"Hello world!" : "Halo svijete!",
"Close" : "Zatvori",
"Cancel" : "Cancel",
"Create" : "Kreiraj",
"Update" : "Ažuriraj",
"Move" : "Move",
"Edit" : "Izmjeni",
"Delete" : "Obriši",
"Save" : "Spremi",
"Title" : "Naslov",
"Error" : "Greška",
"by" : "od strane",
"Disable" : "Onemogući",
"Description" : "Opis",
"Enabled" : "Aktivirano",
"Name" : "Ime",
"New" : "Novo",
"Actions" : "Radnje"
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
}

92
l10n/ca.js Normal file
View File

@@ -0,0 +1,92 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administració",
"Moderator" : "Moderació",
"User" : "Usuari",
"Guest" : "Convidat",
"General" : "General",
"Support" : "Suport",
"Bold text" : "Text en negreta",
"Underlined text" : "Text subratllat",
"Forum" : "Fòrum",
"Deleted user" : "Usuari suprimit",
"Search" : "Cercar",
"Home" : "Casa",
"Dashboard" : "Tauler",
"Categories" : "Categories",
"Expand" : "Expandeix",
"Collapse" : "Replega",
"Hello world!" : "Hola a tothom!",
"Code" : "Codi",
"Quote" : "Pressupost",
"Font size" : "Mida de la lletra",
"List" : "Llista",
"Insert emoji" : "Insereix un emoji",
"Upload failed" : "S'ha produït un error durant la pujada",
"Close" : "Tanca",
"Failed to upload file" : "No s'ha pogut pujar el fitxer",
"Sort order" : "Ordenació",
"Cancel" : "Cancel",
"Create" : "Crea",
"Update" : "Actualitza",
"Move" : "Mou",
"Page not found" : "No s'ha trobat la pàgina",
"Back" : "Torna",
"Edit" : "Edició",
"Delete" : "Suprimir",
"Unread" : "Per llegir",
"Save" : "Desar",
"React with {emoji}" : "Reacciona amb {emoji}",
"Uncategorized" : "Sense categoria",
"Views" : "Vistes",
"Title" : "Títol",
"Refresh" : "Actualitza",
"Loading …" : "S'està carregant…",
"Retry" : "Torna-ho a provar",
"Error" : "Error",
"Searching …" : "S'està cercant…",
"No results found" : "No s'ha trobat cap resultat",
"Back to {category}" : "Torna a {category}",
"Reply" : "Resposta",
"by" : "per",
"Subscribe" : "Subscriu-m'hi",
"Subscribed" : "Subscrit",
"Edit title" : "Edició del títol",
"Move thread" : "Mou el fil",
"Preferences" : "Preferències",
"Notifications" : "Notificacions",
"Files" : "Fitxers",
"Browse" : "Navegació",
"Enable" : "Habilitar",
"Disable" : "Inhabilitar",
"Tag" : "Etiqueta",
"Description" : "Descripció",
"Enabled" : "Habilitat",
"Name" : "Nom",
"New" : "Crea",
"Permissions" : "Permisos",
"Move up" : "Mou amunt",
"Move down" : "Mou avall",
"Total users" : "Total d'usuaris",
"Last 7 days" : "Darrers 7 dies",
"All time" : "Tot el temps",
"General settings" : "Paràmetres generals",
"Appearance" : "Aparença",
"Access control" : "Control d'accés",
"Settings saved" : "S'han desat els paràmetres",
"Failed to save settings" : "Ha fallat desar els paràmetres",
"Reset" : "Reinicialitza",
"Category" : "Categoria",
"Allow" : "Permet",
"ID" : "ID",
"Created" : "S'ha creat",
"Actions" : "Accions",
"User management" : "Gestió d'usuaris",
"Loading users …" : "S'estan carregant usuaris …",
"No users found" : "No s'ha trobat cap usuari",
"Joined" : "Unit",
"Active" : "Actiu",
"Deleted" : "Suprimit"
},
"nplurals=2; plural=(n != 1);");

90
l10n/ca.json Normal file
View File

@@ -0,0 +1,90 @@
{ "translations": {
"Admin" : "Administració",
"Moderator" : "Moderació",
"User" : "Usuari",
"Guest" : "Convidat",
"General" : "General",
"Support" : "Suport",
"Bold text" : "Text en negreta",
"Underlined text" : "Text subratllat",
"Forum" : "Fòrum",
"Deleted user" : "Usuari suprimit",
"Search" : "Cercar",
"Home" : "Casa",
"Dashboard" : "Tauler",
"Categories" : "Categories",
"Expand" : "Expandeix",
"Collapse" : "Replega",
"Hello world!" : "Hola a tothom!",
"Code" : "Codi",
"Quote" : "Pressupost",
"Font size" : "Mida de la lletra",
"List" : "Llista",
"Insert emoji" : "Insereix un emoji",
"Upload failed" : "S'ha produït un error durant la pujada",
"Close" : "Tanca",
"Failed to upload file" : "No s'ha pogut pujar el fitxer",
"Sort order" : "Ordenació",
"Cancel" : "Cancel",
"Create" : "Crea",
"Update" : "Actualitza",
"Move" : "Mou",
"Page not found" : "No s'ha trobat la pàgina",
"Back" : "Torna",
"Edit" : "Edició",
"Delete" : "Suprimir",
"Unread" : "Per llegir",
"Save" : "Desar",
"React with {emoji}" : "Reacciona amb {emoji}",
"Uncategorized" : "Sense categoria",
"Views" : "Vistes",
"Title" : "Títol",
"Refresh" : "Actualitza",
"Loading …" : "S'està carregant…",
"Retry" : "Torna-ho a provar",
"Error" : "Error",
"Searching …" : "S'està cercant…",
"No results found" : "No s'ha trobat cap resultat",
"Back to {category}" : "Torna a {category}",
"Reply" : "Resposta",
"by" : "per",
"Subscribe" : "Subscriu-m'hi",
"Subscribed" : "Subscrit",
"Edit title" : "Edició del títol",
"Move thread" : "Mou el fil",
"Preferences" : "Preferències",
"Notifications" : "Notificacions",
"Files" : "Fitxers",
"Browse" : "Navegació",
"Enable" : "Habilitar",
"Disable" : "Inhabilitar",
"Tag" : "Etiqueta",
"Description" : "Descripció",
"Enabled" : "Habilitat",
"Name" : "Nom",
"New" : "Crea",
"Permissions" : "Permisos",
"Move up" : "Mou amunt",
"Move down" : "Mou avall",
"Total users" : "Total d'usuaris",
"Last 7 days" : "Darrers 7 dies",
"All time" : "Tot el temps",
"General settings" : "Paràmetres generals",
"Appearance" : "Aparença",
"Access control" : "Control d'accés",
"Settings saved" : "S'han desat els paràmetres",
"Failed to save settings" : "Ha fallat desar els paràmetres",
"Reset" : "Reinicialitza",
"Category" : "Categoria",
"Allow" : "Permet",
"ID" : "ID",
"Created" : "S'ha creat",
"Actions" : "Accions",
"User management" : "Gestió d'usuaris",
"Loading users …" : "S'estan carregant usuaris …",
"No users found" : "No s'ha trobat cap usuari",
"Joined" : "Unit",
"Active" : "Actiu",
"Deleted" : "Suprimit"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

436
l10n/cs.js Normal file
View File

@@ -0,0 +1,436 @@
OC.L10N.register(
"forum",
{
"Admin" : "Správce",
"Administrator role with full permissions" : "Role správce s plnými oprávněními",
"Moderator" : "Moderátor",
"Moderator role with elevated permissions" : "Role moderátora s povýšeními oprávněními",
"User" : "Uživatel",
"Default user role with basic permissions" : "Výchozí uživatelská role se základními oprávněními",
"Guest" : "Host",
"Guest role for unauthenticated users with read-only access" : "Role hosta pro nepřihlášené uživatele přístup pouze pro čtení",
"General" : "Obecné",
"General discussion categories" : "Obecné diskuzní kategorie",
"General discussions" : "Obecné diskuze",
"A place for general conversations and discussions" : "Místo pro obecné konverzace a diskuze",
"Support" : "Podpora",
"Ask questions about the forum, provide feedback or report issues." : "Pokládejte dotazy ohledně fóra, dávejte zpětnou vazbu nebo hlaste problémy.",
"Inline code" : "Kód v řádku",
"Spoiler title" : "Nadpis spoileru",
"Hidden content" : "Skrytý obsah",
"Spoilers" : "Spoilery",
"Attachment" : "Příloha",
"Welcome to Nextcloud Forums" : "Vítejte v Nextcloud fórech",
"Welcome to the Nextcloud Forums!" : "Vítejte v Nextcloud fórech!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Toto je komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud. Je možné zde probírat témata, sdílet nápady a spolupracovat s ostatními uživateli.",
"Features:" : "Funkce:",
"Create and reply to threads" : "Vytvářejte a odpovídejte na vlákna",
"Organize discussions by categories" : "Uspořádávejte diskuze podle kategorií",
"Use BBCode for rich text formatting" : "Formátujte text pomocí BBCode",
"Attach files from your Nextcloud storage" : "Připojujte soubory ze svého Nextcloud úložiště",
"React to posts" : "Reagujte na příspěvky",
"Track read/unread threads" : "Udržujte si přehled o (ne)přečtených vláknech",
"BBCode examples:" : "Příklady BBCode:",
"Bold text" : "Tučný text",
"Use %1$stext%2$s" : "Použijte %1$stext%2$s",
"Italic text" : "Skloněný text",
"Underlined text" : "Podtržený text",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Neváhejte zahájit novou diskuzi nebo odpovězte na existující vlákna. Vesele pište příspěvky!.",
"Forum" : "Diskuzní fórum",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nová odpověď v {thread} ","{count} nové odpovědi v {thread} ","{count} nových odpovědí v {thread} ","{count} nové odpovědi v {thread} "],
"Welcome to the forum!" : "Vítejte ve fóru!",
"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",
"Search" : "Hledat",
"Home" : "Domů",
"User preferences" : "Předvolby uživatele",
"Dashboard" : "Nástěnka",
"Forum settings" : "Nastavení fóra",
"Users" : "Uživatelé",
"Roles" : "Role",
"Categories" : "Kategorie",
"BBCodes" : "BBCodes",
"Expand" : "Rozbalit",
"Collapse" : "Sbalit",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Upozornění:{bEnd} Přiložené soubory budou viditelné komukoli na fóru, nezávisle na nastavení sdílení souboru.",
"Drop file here to upload" : "Soubor sem nahrajete přetažením",
"Hello world!" : "Dobrý den světe!",
"Hello moon!" : "Ahoj Měsíci!",
"Font style bold" : "Tučný styl písma",
"Font style italic" : "Skloněný styl písma",
"Font style struck through" : "Přeškrtnutý styl písma",
"Font style underlined" : "Podtržený styl písma",
"Code" : "Kód",
"Email (clickable)" : "E-mail (klikatelný)",
"URL (clickable)" : "URL (klikatelné)",
"Image (not clickable)" : "Obrázek (neklikatelný)",
"Quote" : "Citace",
"Embedded YouTube video" : "Vnořené video z YouTube",
"Font (name)" : "Písmo (název)",
"Font size" : "Velikost písmen",
"Font color" : "Barva písma",
"Align left" : "Zarovnat vlevo",
"Align center" : "Zarovnat na střed",
"Align right" : "Zarovnat vpravo",
"List" : "Seznam",
"List item within a list" : "Položka seznamu v seznamu",
"List item within a list (alias)" : "Položka seznamu v seznamu (alternativně)",
"BBCode help" : "Nápověda k BBCode",
"Built-in BBCodes" : "Vestavěné BBCode kódy",
"These BBCodes are available by default." : "Tyto BBCode kódy jsou k dispozici už ve výchozím stavu.",
"Custom BBCodes" : "Uživatelsky určené BBCode kódy",
"These BBCodes are custom to this forum and configured by administrators." : "Tyto BBCode kódy jsou uživatelsky určené v rámci tohoto fóra a nastavované správci.",
"Example" : "Příklad",
"Replacement" : "Nahrazení",
"Loading custom BBCodes …" : "Načítání uživatelsky určených BBCode kódů …",
"No custom BBCodes configured." : "Nenastaveny žádné uživatelsky určené BBCode kódy.",
"Failed to load custom BBCodes" : "Nepodařilo se načíst uživatelsky určené BBCode kódy",
"Insert emoji" : "Vložit emotikonu",
"Pick file from Nextcloud" : "Vyberte soubor z Nextcloud",
"Upload file to Nextcloud" : "Nahrát soubor na Nextcloud",
"Uploading file …" : "Nahrávání souboru …",
"Upload failed" : "Nahrání se nezdařilo",
"Close" : "Zavřít",
"Pick a file to attach" : "Vyberte soubor a nasdílejte ho",
"Failed to upload file" : "Nepodařilo se nahrát soubor",
"_Thread_::_Threads_" : ["Vlákno","Vlákna","Vláken","Vlákna"],
"_Post_::_Posts_" : ["Příspěvek","Příspěvky","Příspěvků","Příspěvky"],
"No description available" : "Není k dispozici žádný popis",
"Create category header" : "Vytvořit záhlaví kategorie",
"Edit category header" : "Upravit záhlaví kategorie",
"Header name" : "Název záhlaví",
"Enter header name" : "Zadejte název pro záhlaví",
"Header description" : "Popis záhlaví",
"Enter header description (optional)" : "Zadejte popis záhlaví (volitelné)",
"Sort order" : "Pořadí řazení",
"Lower numbers appear first" : "Nižší čísla se objeví jako první",
"Cancel" : "Zrušit",
"Create" : "Vytvářet",
"Update" : "Aktualizovat",
"Move thread to category" : "Přesunout vlákno do kategorie",
"Select the category to move this thread to:" : "Vyberte kategorii do které toto vlákno přesunout:",
"Select a category …" : "Vybrat kategorii …",
"Loading categories …" : "Načítání kategorií …",
"Move" : "Přesunout",
"Cannot move to a category header. Please select a category instead." : "Není možné přesunout záhlaví kategorie. Namísto toho vyberte kategorii.",
"This thread is already in this category." : "Toto vlákno už se v této kategorii nachází.",
"Failed to load categories" : "Nepodařilo se načíst kategorie",
"Page not found" : "Stránka nenalezena",
"The page you are looking for could not be found." : "Stránka kterou hledáte nebylo možné nalézt.",
"Back" : "Zpět",
"Go to home" : "Přejít na úvodní stránku",
"Edited" : "Upraveno",
"Quote reply" : "Odpovědět s citací",
"Edit" : "Upravit",
"Delete" : "Smazat",
"Are you sure you want to delete this post? This action cannot be undone." : "Opravdu chcete tento příspěvek smazat? Tuto akci nepůjde vzít zpět.",
"Unread" : "Nastavit jako nepřečtené",
"Edit your post …" : "Upravit váš příspěvek …",
"Save" : "Uložit",
"Are you sure you want to discard your changes?" : "Opravdu chcete vámi provedené změny zahodit?",
"Add reaction" : "Přidat reakci",
"React with {emoji}" : "Zareagovat {emoji}",
"You reacted with {emoji}" : "Zareagovali jste s použitím {emoji}",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n dalších jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n osoba zareagovala s použitím {emoji}","%n lidé zareagovali s použitím {emoji}","%n lidí zareagovalo s použitím {emoji}","%n lidé zareagovali s použitím {emoji}"],
"Write your reply …" : "Napište svou odpověď …",
"Post reply" : "Odeslat odpověď",
"Are you sure you want to discard your reply?" : "Opravdu chcete svou odpověď zahodit?",
"In thread" : "Ve vláknu",
"Thread unavailable" : "Vlákno není k dispozici",
"Pinned thread" : "Připnuté vlákno",
"Locked thread" : "Uzamčené vlákno",
"Uncategorized" : "Nezařazeno",
"_%n post_::_%n posts_" : ["%n příspěvek","%n příspěvky","%n příspěvků","%n příspěvky"],
"_%n view_::_%n views_" : ["%n zobrazení","%n zobrazení","%n zobrazení","%n zobrazení"],
"Replies" : "Odpovědi",
"Views" : "Zobrazení",
"Title" : "Titul",
"Enter thread title …" : "Zadejte titulek vlákna …",
"Write your first post …" : "Napište svůj první příspěvek …",
"Create thread" : "Vytvořit vlákno",
"Are you sure you want to discard this thread?" : "Opravdu chcete toto vlákno zahodit?",
"Refresh" : "Znovu načíst",
"Loading …" : "Načítání …",
"No categories yet" : "Zatím ještě žádné kategorie",
"Categories will appear here once they are created." : "Kategorie se objeví, jakmile budou vytvořeny.",
"No categories in this section" : "Žádné kategorie v této sekci",
"Category not found" : "Kategorie nenalezena",
"The category you are looking for does not exist or has been removed." : "Kategorie kterou hledáte neexistuje nebo byla odebrána.",
"Back to categories" : "Zpět na kategorie",
"New thread" : "Nové vlákno",
"Error loading category" : "Chyba při načítání kategorie",
"No threads yet" : "Zatím žádná vlákna",
"Be the first to start a discussion in this category." : "Buďte první kdo začne diskutovat v této kategorii.",
"Retry" : "Zkusit znovu",
"_Showing %n thread_::_Showing %n threads_" : ["Zobrazuje se %n vlákno","Zobrazují se %n vlákna","Zobrazuje se %n vláken","Zobrazují se %n vlákna"],
"An unexpected error occurred" : "Došlo k neočekávané chybě",
"No category ID or slug provided" : "Nezadán žádný identifikátor kategorie nebo slug",
"Failed to load threads" : "Nepodařilo se načíst vlákna",
"Create New Thread" : "Vytvořit nové vlákno",
"In {category}" : "V {category}",
"Creating thread …" : "Vytváření vlákna …",
"Thread created" : "Vlákno vytvořeno",
"Failed to create thread" : "Vlákno se nepodařilo vytvořit",
"No category specified" : "Neurčena žádná kategorie",
"Error" : "Error",
"First post" : "První příspěvek",
"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 posted any replies yet" : "Tento uživatel zatím neposlal žá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 posts" : "Hledat v příspěvcích",
"Syntax help" : "Nápověda k syntaxi",
"Search syntax" : "Syntaxe vyhledávání",
"Match exact phrase" : "Hledat shodu v přesné frázi",
"Both terms required" : "Jsou zapotřebí oba pojmy",
"Either term matches" : "Postačí shoda s jedním či druhým pojmem",
"Group conditions with parentheses" : "Podmínky je možné seskupovat pomocí závorek",
"Exclude term from results" : "Vynechat pojem z výsledků",
"Searching …" : "Hledání …",
"Search Error" : "Chyba hledání",
"Enter a search query" : "Zadejte vyhledávací dotaz",
"Use the search box above to find threads and posts" : "Ve vláknech a příspěvcích je možné vyhledávat pomocí kolonky výše",
"No results found" : "Nic nenalezeno",
"Try different keywords or check your syntax" : "Zkuste jiná klíčová slova nebo zkontrolujte syntaxi",
"_%n thread found_::_%n threads found_" : ["Nalezeno %n vlákno","Nalezena %n vlákna","Nalezeno %n vláken","Nalezena %n vlákna"],
"_%n post found_::_%n posts found_" : ["Nalezen %n příspěvek","Nalezeny %n příspěvky","Nalezeno %n příspěvků","Nalezeny %n příspěvky"],
"Please enter a search query" : "Zadejte vyhledávací dotaz",
"Please select at least one search scope" : "Vyberte alespoň jednu oblast vyhledávání",
"Failed to search" : "Nepodařilo se hledat",
"Thread not found" : "Vlákno nenalezeno",
"The thread you are looking for does not exist or has been removed." : "Vlákno které hledáte neexistuje nebo bylo odebráno.",
"Back to {category}" : "Zpět na {category}",
"Reply" : "Odpověď",
"Error loading thread" : "Chyba při načítání vlákna",
"No posts yet" : "Zatím žádné příspěvky",
"Be the first to post in this thread." : "Buďte první kdo začne zasílat příspěvky do tohoto vlákna.",
"by" : "od",
"This thread is locked. Only moderators can post replies." : "Toto vlákno je uzamčeno. Odpovědi mohou zasíat pouze moderátoři.",
"You must be signed in to reply to this thread." : "Pokud chcete v tomto vlákně odpovědět, je třeba, abyste byli přihlášení.",
"Sign in to reply" : "Pokud chcete odpovědět, přihlaste se ke svému účtu",
"_Showing %n post_::_Showing %n posts_" : ["Zobrazování %n příspěvku","Zobrazování %n příspěvků","Zobrazování %n příspěvků","Zobrazování %n příspěvků"],
"Lock thread" : "Uzamknout vlákno",
"Unlock thread" : "Odemknout vlákno",
"Pin thread" : "Připnout vlákno",
"Unpin thread" : "Zrušit připnutí vlákna",
"Thread locked" : "Vlákno uzamčen",
"Thread unlocked" : "Vlákno odemčen",
"Thread pinned" : "Vlákno připnuto",
"Thread unpinned" : "Připnutí vlákna zrušeno",
"Subscribe" : "Přihlásit se k odběru",
"Subscribed" : "Přihlášeno se k odběru",
"Subscribed to thread" : "Přihlášeno se k odběru vlákna",
"Unsubscribed from thread" : "Zrušeno odebírání vlákna",
"Edit title" : "Upravit nadpis",
"Save title" : "Uložit nadpis",
"Thread title updated" : "Nadpis vlákna zaktualizován",
"Move thread" : "Přesunout vlákno",
"Thread moved successfully" : "Vlákno úspěšně přesunuto",
"No thread ID or slug provided" : "Nezadán žádný identifikátor vlákna nebo slug",
"Failed to load posts" : "Nepodařilo se načíst příspěvky",
"Post updated" : "Příspěvek aktualizován",
"Failed to update post" : "Nepodařilo se zaktualizovat příspěvek",
"Thread deleted" : "Vlákno smazáno",
"Post deleted" : "Příspěvek smazán",
"Failed to delete post" : "Příspěvek se nepodařilo smazat",
"Failed to update thread lock status" : "Nepodařilo se zaktualizovat stav zámku vlákna",
"Failed to update thread pin status" : "Nepodařilo se zaktualizovat stav připnutí vlákna",
"Failed to update subscription" : "Nepodařilo se zaktualizovat přihlášení se k odběru",
"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",
"Notifications" : "Upozornění",
"Configure how you receive notifications" : "Nastavte jak získáváte upozornění",
"Auto-subscribe to threads I create" : "Automaticky se přihlašovat k odběru vláken, která vytvořím",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Pokud zapnuto, automaticky obdržíte upozornění na odpovědi na vlákna, která vytvoříte",
"Files" : "Soubory",
"Configure file upload settings" : "Nastavit nahrávání souborů",
"Upload directory" : "Složka pro nahrání",
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Soubory připojené k tomuto příspěvku budou nahrány do této složky v Nextcloud Soubory",
"Browse" : "Procházet",
"Preferences saved" : "Předvolby uloženy",
"Failed to save preferences" : "Nepodařilo se uložit vaše předvolby",
"Select upload directory" : "Vyberte složku pro nahrávání",
"BBCode management" : "Správa BBCode",
"Manage custom BBCode tags for post formatting" : "Spravovat uživatelsky určené BBCode značky pro formátování příspěvků",
"Error loading BBCodes" : "Chyba při načítání BBCode kódů",
"Create BBCode" : "Vytvořit BBCode",
"Enable" : "Povolit",
"Disable" : "Vypnout",
"Enabled BBCodes" : "Povolené BBCode kódy",
"These BBCode tags are currently active" : "Tyto BBCode značky jsou v tuto chvíli aktivní",
"Disabled BBCodes" : "Zakázané BBCode kódy",
"These BBCode tags are currently inactive" : "V tuto chvíli jsou neaktivní tyto BBCode značky",
"No enabled BBCodes" : "Žádné povolené BBCode kódy",
"Parses Inner" : "Zpracovává vnitřní",
"Delete BBCode" : "Smazat BBCode",
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Opravdu chcete BBCode značku [{tag}] smazat?",
"This action cannot be undone." : "Tuto akci není možné vzít zpět.",
"Edit BBCode" : "Upravit BBCode",
"Tag" : "Štítek",
"e.g., b, i, url, color" : "např. b, i, url, color",
"The BBCode tag name (without brackets)" : "Název BBCode značky (bez závorek)",
"HTML replacement" : "HTML nahrazení",
"e.g., {strongStart}{content}{strongEnd}" : "např., {strongStart}{content}{strongEnd}",
"Use {content} for the tag content and {paramName} for parameters" : "Použijte {content} pro obsah značky a {paramName} pro parametry k ní",
"e.g., {tagStart}Hello world{tagEnd}" : "např. {tagStart}Ahoj světe{tagEnd}",
"Example usage of this BBCode tag" : "Ukázka použití této BBCode značky",
"Description" : "Popis",
"Brief description of what this BBCode does" : "Stručný popis toho, co tento BBCode dělá",
"Enabled" : "Zapnuto",
"Parse inner content" : "Zpracovat vnitřní obsah",
"If enabled, BBCode tags inside this tag will also be parsed" : "Pokud zapnuto, značky BBCode uvnitř této značky budou zpracovány také",
"Create category" : "Vytvořit kategorii",
"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í --",
"Name" : "Název",
"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 can access and moderate this category" : "Určete které role mohou k této kategorii přistupovat a moderovat v ní",
"Roles that can view" : "Role, které mohou zobrazovat",
"Select roles that can view this category and its threads" : "Vyberte role které si mohou zobrazovat tuto kategorii a její vlákna",
"Roles that can moderate" : "Role, které mohou moderovat",
"Select roles that can moderate (edit/delete) content in this category" : "Vyberte role které mohou moderovat (upravovat/mazat) obsah v této kategorii",
"Select roles …" : "Vybrat role …",
"Manage forum categories and organization" : "Spravovat kategorie fóra a organizování",
"Error loading categories" : "Chyba při načítání kategorií",
"No categories in this header" : "Žádné kategorie v tomto záhlaví",
"Delete category" : "Smazat kategorii",
"Are you sure you want to delete the category \"{name}\"?" : "Opravdu chcete kategorii „{name}“ smazat?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Tato kategorie obsahuje %n vlákno.","Tato kategorie obsahuje %n vlákna.","Tato kategorie obsahuje %n vláken.","Tato kategorie obsahuje %n vlákna."],
"What should happen to the threads?" : "Co se má stát s těmito vlákny?",
"Move threads to another category" : "Přesunout vlákna do jiné kategorie",
"Delete all threads (soft delete)" : "Smazat všechna vlákna („měkké“ smazání)",
"Threads will be hidden but not permanently deleted" : "Vlákna budou skryta, ale ještě ne smazána",
"Select target category" : "Vyberte cílovou kategorii",
"-- Select a category --" : "-- Vybrat kategorii --",
"Create header" : "Vytvořit záhlaví",
"_%n category_::_%n categories_" : ["%n kategorie","%n kategorie","%n kategorií","%n kategorie"],
"_%n thread_::_%n threads_" : ["%n vlákno","%n vlákna","%n vláken","%n vlákna"],
"Delete header" : "Smazat záhlaví",
"Are you sure you want to delete the header \"{name}\"?" : "Opravdu chcete záhlaví „{name}“ smazat?",
"_This header contains %n category._::_This header contains %n categories._" : ["Toto záhlaví obsahuje %n kategorii.","Toto záhlaví obsahuje %n kategorie.","Toto záhlaví obsahuje %n kategorií.","Toto záhlaví obsahuje %n kategorie."],
"This action cannot be undone" : "Tuto akci není možné vzít zpět",
"What should happen to the categories?" : "Co se má stát s těmito kategoriemi?",
"Move categories to another header" : "Přesunout kategorie do jiného záhlaví",
"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í",
"Move up" : "Přesunout výše",
"Move down" : "Přesunout dolů",
"Admin dashboard" : "Přehled správce",
"Overview of forum activity and statistics" : "Přehled aktivity na fóru a statistiky",
"Loading statistics …" : "Načítání statistik …",
"Error loading dashboard" : "Chyba při načítání přehledu",
"Total statistics" : "Celkové statistiky",
"Total users" : "Celkem uživatelů",
"Total threads" : "Celkem vláken",
"Total posts" : "Celkem příspěvků",
"Total categories" : "Celkem kategorií",
"Recent activity (last 7 days)" : "Nedávná aktivita (uplynulých 7 dnů)",
"New users" : "Nový uživatelé",
"New threads" : "Nová vlákna",
"New posts" : "Nové příspěvky",
"Top contributors" : "Nejaktivnější přispěvatelé",
"No contributors yet" : "Zatím žádní přispěvatelé",
"Last 7 days" : "Uplynulých 7 dnů",
"All time" : "Na vždy",
"General settings" : "Obecná nastavení",
"Configure general forum settings" : "Obecná nastavení fóra",
"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",
"Welcome to the forum" : "Vítejte ve fóru",
"A brief description shown below the title" : "Stručný popis zobrazený pod titulkem",
"Access control" : "Řízení přístupu",
"Manage who can access the forum" : "Spravujte kdo může do fóra přistupovat",
"Allow guest access" : "Umožnit přístup hostům",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Pokud zapnuto, nepřihlášení uživatelé mohou zobrazovat obsah fóra v režimu pouze pro čtení",
"Settings saved" : "Nastavení uložena",
"Failed to save settings" : "Nastavení se nepodařilo uložit",
"Create role" : "Vytvořit rol",
"Edit role" : "Upravit roli",
"Configure role permissions and category access" : "Nastavit oprávnění rolí a přístupu ke kategoriím",
"Error loading role" : "Chyba při načítání role",
"Enter role name" : "Zadejte název role",
"Enter role description (optional)" : "Zadejte popis role (volitelné)",
"System role names cannot be changed" : "Názvy systémových rolí není možné měnit",
"Colors" : "Barvy",
"Set colors for this role badge" : "Nastavit barvy pro odznáček této role",
"Light mode color" : "Barva světlého režimu",
"Dark mode color" : "Barva tmavého režim",
"Reset" : "Vrátit na výchozí",
"Role permissions" : "Oprávnění role",
"Set global permissions for this role" : "Nastavit globální oprávnění pro tuto roli",
"Can access admin tools" : "Může přistupovat k nástrojům pro správu",
"Allow access to the admin dashboard and tools" : "Umožnit přístup k přehledu správce a nástrojům",
"Can edit roles" : "Může upravovat role",
"Allow creating, editing and deleting roles" : "Umožnit vytváření, upravování a mazání rolí",
"Can edit categories" : "Může upravovat kategorie",
"Allow creating, editing and deleting categories" : "Umožnit vytváření, upravování a mazání kategorií",
"Category permissions" : "Oprávnění kategorie",
"Set which categories this role can access" : "Nastavit ke kterým kategoriím tato role může přistupovat",
"Category" : "Kategorie",
"Can view" : "Může zobrazovat",
"Can moderate" : "Může moderovat",
"Allow" : "Umožnit",
"No categories available" : "Nejsou k dispozici žádné kategorie",
"Admin role must have all permissions enabled" : "Je třeba, aby role správce měla povolené všechna oprávnění",
"Admin role has full access to all categories" : "Role správce má plný přístup do všech kategorií",
"Guest role cannot have admin permissions" : "Role hosta nemůže mít roli správce",
"Guest role cannot moderate categories" : "Role hosta nemůže moderovat kategorie",
"You can control which categories guests can view using the checkboxes below." : "Pomocí zaškrtávacích kolonek níže je možné určovat, které kategorie mohou hosté vidět.",
"Guest access is currently disabled" : "Přístup pro hosty je v tuto chvíli zakázán",
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Uživatelé hosté nebudou moci přistupovat do fóra dokud jim nebude přístup povolený v nastavení fóra.",
"Go to forum settings" : "Přejít do nastavení fóra",
"Default role cannot moderate categories" : "Výchozí role nemůže moderovat kategorie",
"Role management" : "Správa rolí",
"Create and manage forum roles and permissions" : "Vytvořit a spravovat role v rámci fóra a jejich oprávnění",
"Loading roles …" : "Načítání rolí …",
"Error loading roles" : "Chyba při načítání rolí",
"No roles found" : "Nenalezeny žádné role",
"Create your first role to get started" : "Začněte vytvořením první role",
"ID" : "Identif.",
"Created" : "Vytvořeno",
"Actions" : "Akce",
"No description" : "Bez popisu",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Opravdu chcete roli „{name}“ smazat? Tuto akci nepůjde vzít zpět.",
"System roles cannot be deleted" : "Systémové role není možné smazat",
"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",
"Posts" : "Příspěvků",
"Joined" : "Připojený",
"Status" : "Stav",
"Active" : "Aktivní",
"Deleted" : "Smazáno",
"No roles" : "Žádné role",
"Select roles" : "Vybrat role",
"Edit roles" : "Upravit role",
"Edit user roles" : "Upravit role uživatelů"
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");

434
l10n/cs.json Normal file
View File

@@ -0,0 +1,434 @@
{ "translations": {
"Admin" : "Správce",
"Administrator role with full permissions" : "Role správce s plnými oprávněními",
"Moderator" : "Moderátor",
"Moderator role with elevated permissions" : "Role moderátora s povýšeními oprávněními",
"User" : "Uživatel",
"Default user role with basic permissions" : "Výchozí uživatelská role se základními oprávněními",
"Guest" : "Host",
"Guest role for unauthenticated users with read-only access" : "Role hosta pro nepřihlášené uživatele přístup pouze pro čtení",
"General" : "Obecné",
"General discussion categories" : "Obecné diskuzní kategorie",
"General discussions" : "Obecné diskuze",
"A place for general conversations and discussions" : "Místo pro obecné konverzace a diskuze",
"Support" : "Podpora",
"Ask questions about the forum, provide feedback or report issues." : "Pokládejte dotazy ohledně fóra, dávejte zpětnou vazbu nebo hlaste problémy.",
"Inline code" : "Kód v řádku",
"Spoiler title" : "Nadpis spoileru",
"Hidden content" : "Skrytý obsah",
"Spoilers" : "Spoilery",
"Attachment" : "Příloha",
"Welcome to Nextcloud Forums" : "Vítejte v Nextcloud fórech",
"Welcome to the Nextcloud Forums!" : "Vítejte v Nextcloud fórech!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Toto je komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud. Je možné zde probírat témata, sdílet nápady a spolupracovat s ostatními uživateli.",
"Features:" : "Funkce:",
"Create and reply to threads" : "Vytvářejte a odpovídejte na vlákna",
"Organize discussions by categories" : "Uspořádávejte diskuze podle kategorií",
"Use BBCode for rich text formatting" : "Formátujte text pomocí BBCode",
"Attach files from your Nextcloud storage" : "Připojujte soubory ze svého Nextcloud úložiště",
"React to posts" : "Reagujte na příspěvky",
"Track read/unread threads" : "Udržujte si přehled o (ne)přečtených vláknech",
"BBCode examples:" : "Příklady BBCode:",
"Bold text" : "Tučný text",
"Use %1$stext%2$s" : "Použijte %1$stext%2$s",
"Italic text" : "Skloněný text",
"Underlined text" : "Podtržený text",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Neváhejte zahájit novou diskuzi nebo odpovězte na existující vlákna. Vesele pište příspěvky!.",
"Forum" : "Diskuzní fórum",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nová odpověď v {thread} ","{count} nové odpovědi v {thread} ","{count} nových odpovědí v {thread} ","{count} nové odpovědi v {thread} "],
"Welcome to the forum!" : "Vítejte ve fóru!",
"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",
"Search" : "Hledat",
"Home" : "Domů",
"User preferences" : "Předvolby uživatele",
"Dashboard" : "Nástěnka",
"Forum settings" : "Nastavení fóra",
"Users" : "Uživatelé",
"Roles" : "Role",
"Categories" : "Kategorie",
"BBCodes" : "BBCodes",
"Expand" : "Rozbalit",
"Collapse" : "Sbalit",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Upozornění:{bEnd} Přiložené soubory budou viditelné komukoli na fóru, nezávisle na nastavení sdílení souboru.",
"Drop file here to upload" : "Soubor sem nahrajete přetažením",
"Hello world!" : "Dobrý den světe!",
"Hello moon!" : "Ahoj Měsíci!",
"Font style bold" : "Tučný styl písma",
"Font style italic" : "Skloněný styl písma",
"Font style struck through" : "Přeškrtnutý styl písma",
"Font style underlined" : "Podtržený styl písma",
"Code" : "Kód",
"Email (clickable)" : "E-mail (klikatelný)",
"URL (clickable)" : "URL (klikatelné)",
"Image (not clickable)" : "Obrázek (neklikatelný)",
"Quote" : "Citace",
"Embedded YouTube video" : "Vnořené video z YouTube",
"Font (name)" : "Písmo (název)",
"Font size" : "Velikost písmen",
"Font color" : "Barva písma",
"Align left" : "Zarovnat vlevo",
"Align center" : "Zarovnat na střed",
"Align right" : "Zarovnat vpravo",
"List" : "Seznam",
"List item within a list" : "Položka seznamu v seznamu",
"List item within a list (alias)" : "Položka seznamu v seznamu (alternativně)",
"BBCode help" : "Nápověda k BBCode",
"Built-in BBCodes" : "Vestavěné BBCode kódy",
"These BBCodes are available by default." : "Tyto BBCode kódy jsou k dispozici už ve výchozím stavu.",
"Custom BBCodes" : "Uživatelsky určené BBCode kódy",
"These BBCodes are custom to this forum and configured by administrators." : "Tyto BBCode kódy jsou uživatelsky určené v rámci tohoto fóra a nastavované správci.",
"Example" : "Příklad",
"Replacement" : "Nahrazení",
"Loading custom BBCodes …" : "Načítání uživatelsky určených BBCode kódů …",
"No custom BBCodes configured." : "Nenastaveny žádné uživatelsky určené BBCode kódy.",
"Failed to load custom BBCodes" : "Nepodařilo se načíst uživatelsky určené BBCode kódy",
"Insert emoji" : "Vložit emotikonu",
"Pick file from Nextcloud" : "Vyberte soubor z Nextcloud",
"Upload file to Nextcloud" : "Nahrát soubor na Nextcloud",
"Uploading file …" : "Nahrávání souboru …",
"Upload failed" : "Nahrání se nezdařilo",
"Close" : "Zavřít",
"Pick a file to attach" : "Vyberte soubor a nasdílejte ho",
"Failed to upload file" : "Nepodařilo se nahrát soubor",
"_Thread_::_Threads_" : ["Vlákno","Vlákna","Vláken","Vlákna"],
"_Post_::_Posts_" : ["Příspěvek","Příspěvky","Příspěvků","Příspěvky"],
"No description available" : "Není k dispozici žádný popis",
"Create category header" : "Vytvořit záhlaví kategorie",
"Edit category header" : "Upravit záhlaví kategorie",
"Header name" : "Název záhlaví",
"Enter header name" : "Zadejte název pro záhlaví",
"Header description" : "Popis záhlaví",
"Enter header description (optional)" : "Zadejte popis záhlaví (volitelné)",
"Sort order" : "Pořadí řazení",
"Lower numbers appear first" : "Nižší čísla se objeví jako první",
"Cancel" : "Zrušit",
"Create" : "Vytvářet",
"Update" : "Aktualizovat",
"Move thread to category" : "Přesunout vlákno do kategorie",
"Select the category to move this thread to:" : "Vyberte kategorii do které toto vlákno přesunout:",
"Select a category …" : "Vybrat kategorii …",
"Loading categories …" : "Načítání kategorií …",
"Move" : "Přesunout",
"Cannot move to a category header. Please select a category instead." : "Není možné přesunout záhlaví kategorie. Namísto toho vyberte kategorii.",
"This thread is already in this category." : "Toto vlákno už se v této kategorii nachází.",
"Failed to load categories" : "Nepodařilo se načíst kategorie",
"Page not found" : "Stránka nenalezena",
"The page you are looking for could not be found." : "Stránka kterou hledáte nebylo možné nalézt.",
"Back" : "Zpět",
"Go to home" : "Přejít na úvodní stránku",
"Edited" : "Upraveno",
"Quote reply" : "Odpovědět s citací",
"Edit" : "Upravit",
"Delete" : "Smazat",
"Are you sure you want to delete this post? This action cannot be undone." : "Opravdu chcete tento příspěvek smazat? Tuto akci nepůjde vzít zpět.",
"Unread" : "Nastavit jako nepřečtené",
"Edit your post …" : "Upravit váš příspěvek …",
"Save" : "Uložit",
"Are you sure you want to discard your changes?" : "Opravdu chcete vámi provedené změny zahodit?",
"Add reaction" : "Přidat reakci",
"React with {emoji}" : "Zareagovat {emoji}",
"You reacted with {emoji}" : "Zareagovali jste s použitím {emoji}",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n dalších jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n osoba zareagovala s použitím {emoji}","%n lidé zareagovali s použitím {emoji}","%n lidí zareagovalo s použitím {emoji}","%n lidé zareagovali s použitím {emoji}"],
"Write your reply …" : "Napište svou odpověď …",
"Post reply" : "Odeslat odpověď",
"Are you sure you want to discard your reply?" : "Opravdu chcete svou odpověď zahodit?",
"In thread" : "Ve vláknu",
"Thread unavailable" : "Vlákno není k dispozici",
"Pinned thread" : "Připnuté vlákno",
"Locked thread" : "Uzamčené vlákno",
"Uncategorized" : "Nezařazeno",
"_%n post_::_%n posts_" : ["%n příspěvek","%n příspěvky","%n příspěvků","%n příspěvky"],
"_%n view_::_%n views_" : ["%n zobrazení","%n zobrazení","%n zobrazení","%n zobrazení"],
"Replies" : "Odpovědi",
"Views" : "Zobrazení",
"Title" : "Titul",
"Enter thread title …" : "Zadejte titulek vlákna …",
"Write your first post …" : "Napište svůj první příspěvek …",
"Create thread" : "Vytvořit vlákno",
"Are you sure you want to discard this thread?" : "Opravdu chcete toto vlákno zahodit?",
"Refresh" : "Znovu načíst",
"Loading …" : "Načítání …",
"No categories yet" : "Zatím ještě žádné kategorie",
"Categories will appear here once they are created." : "Kategorie se objeví, jakmile budou vytvořeny.",
"No categories in this section" : "Žádné kategorie v této sekci",
"Category not found" : "Kategorie nenalezena",
"The category you are looking for does not exist or has been removed." : "Kategorie kterou hledáte neexistuje nebo byla odebrána.",
"Back to categories" : "Zpět na kategorie",
"New thread" : "Nové vlákno",
"Error loading category" : "Chyba při načítání kategorie",
"No threads yet" : "Zatím žádná vlákna",
"Be the first to start a discussion in this category." : "Buďte první kdo začne diskutovat v této kategorii.",
"Retry" : "Zkusit znovu",
"_Showing %n thread_::_Showing %n threads_" : ["Zobrazuje se %n vlákno","Zobrazují se %n vlákna","Zobrazuje se %n vláken","Zobrazují se %n vlákna"],
"An unexpected error occurred" : "Došlo k neočekávané chybě",
"No category ID or slug provided" : "Nezadán žádný identifikátor kategorie nebo slug",
"Failed to load threads" : "Nepodařilo se načíst vlákna",
"Create New Thread" : "Vytvořit nové vlákno",
"In {category}" : "V {category}",
"Creating thread …" : "Vytváření vlákna …",
"Thread created" : "Vlákno vytvořeno",
"Failed to create thread" : "Vlákno se nepodařilo vytvořit",
"No category specified" : "Neurčena žádná kategorie",
"Error" : "Error",
"First post" : "První příspěvek",
"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 posted any replies yet" : "Tento uživatel zatím neposlal žá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 posts" : "Hledat v příspěvcích",
"Syntax help" : "Nápověda k syntaxi",
"Search syntax" : "Syntaxe vyhledávání",
"Match exact phrase" : "Hledat shodu v přesné frázi",
"Both terms required" : "Jsou zapotřebí oba pojmy",
"Either term matches" : "Postačí shoda s jedním či druhým pojmem",
"Group conditions with parentheses" : "Podmínky je možné seskupovat pomocí závorek",
"Exclude term from results" : "Vynechat pojem z výsledků",
"Searching …" : "Hledání …",
"Search Error" : "Chyba hledání",
"Enter a search query" : "Zadejte vyhledávací dotaz",
"Use the search box above to find threads and posts" : "Ve vláknech a příspěvcích je možné vyhledávat pomocí kolonky výše",
"No results found" : "Nic nenalezeno",
"Try different keywords or check your syntax" : "Zkuste jiná klíčová slova nebo zkontrolujte syntaxi",
"_%n thread found_::_%n threads found_" : ["Nalezeno %n vlákno","Nalezena %n vlákna","Nalezeno %n vláken","Nalezena %n vlákna"],
"_%n post found_::_%n posts found_" : ["Nalezen %n příspěvek","Nalezeny %n příspěvky","Nalezeno %n příspěvků","Nalezeny %n příspěvky"],
"Please enter a search query" : "Zadejte vyhledávací dotaz",
"Please select at least one search scope" : "Vyberte alespoň jednu oblast vyhledávání",
"Failed to search" : "Nepodařilo se hledat",
"Thread not found" : "Vlákno nenalezeno",
"The thread you are looking for does not exist or has been removed." : "Vlákno které hledáte neexistuje nebo bylo odebráno.",
"Back to {category}" : "Zpět na {category}",
"Reply" : "Odpověď",
"Error loading thread" : "Chyba při načítání vlákna",
"No posts yet" : "Zatím žádné příspěvky",
"Be the first to post in this thread." : "Buďte první kdo začne zasílat příspěvky do tohoto vlákna.",
"by" : "od",
"This thread is locked. Only moderators can post replies." : "Toto vlákno je uzamčeno. Odpovědi mohou zasíat pouze moderátoři.",
"You must be signed in to reply to this thread." : "Pokud chcete v tomto vlákně odpovědět, je třeba, abyste byli přihlášení.",
"Sign in to reply" : "Pokud chcete odpovědět, přihlaste se ke svému účtu",
"_Showing %n post_::_Showing %n posts_" : ["Zobrazování %n příspěvku","Zobrazování %n příspěvků","Zobrazování %n příspěvků","Zobrazování %n příspěvků"],
"Lock thread" : "Uzamknout vlákno",
"Unlock thread" : "Odemknout vlákno",
"Pin thread" : "Připnout vlákno",
"Unpin thread" : "Zrušit připnutí vlákna",
"Thread locked" : "Vlákno uzamčen",
"Thread unlocked" : "Vlákno odemčen",
"Thread pinned" : "Vlákno připnuto",
"Thread unpinned" : "Připnutí vlákna zrušeno",
"Subscribe" : "Přihlásit se k odběru",
"Subscribed" : "Přihlášeno se k odběru",
"Subscribed to thread" : "Přihlášeno se k odběru vlákna",
"Unsubscribed from thread" : "Zrušeno odebírání vlákna",
"Edit title" : "Upravit nadpis",
"Save title" : "Uložit nadpis",
"Thread title updated" : "Nadpis vlákna zaktualizován",
"Move thread" : "Přesunout vlákno",
"Thread moved successfully" : "Vlákno úspěšně přesunuto",
"No thread ID or slug provided" : "Nezadán žádný identifikátor vlákna nebo slug",
"Failed to load posts" : "Nepodařilo se načíst příspěvky",
"Post updated" : "Příspěvek aktualizován",
"Failed to update post" : "Nepodařilo se zaktualizovat příspěvek",
"Thread deleted" : "Vlákno smazáno",
"Post deleted" : "Příspěvek smazán",
"Failed to delete post" : "Příspěvek se nepodařilo smazat",
"Failed to update thread lock status" : "Nepodařilo se zaktualizovat stav zámku vlákna",
"Failed to update thread pin status" : "Nepodařilo se zaktualizovat stav připnutí vlákna",
"Failed to update subscription" : "Nepodařilo se zaktualizovat přihlášení se k odběru",
"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",
"Notifications" : "Upozornění",
"Configure how you receive notifications" : "Nastavte jak získáváte upozornění",
"Auto-subscribe to threads I create" : "Automaticky se přihlašovat k odběru vláken, která vytvořím",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Pokud zapnuto, automaticky obdržíte upozornění na odpovědi na vlákna, která vytvoříte",
"Files" : "Soubory",
"Configure file upload settings" : "Nastavit nahrávání souborů",
"Upload directory" : "Složka pro nahrání",
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Soubory připojené k tomuto příspěvku budou nahrány do této složky v Nextcloud Soubory",
"Browse" : "Procházet",
"Preferences saved" : "Předvolby uloženy",
"Failed to save preferences" : "Nepodařilo se uložit vaše předvolby",
"Select upload directory" : "Vyberte složku pro nahrávání",
"BBCode management" : "Správa BBCode",
"Manage custom BBCode tags for post formatting" : "Spravovat uživatelsky určené BBCode značky pro formátování příspěvků",
"Error loading BBCodes" : "Chyba při načítání BBCode kódů",
"Create BBCode" : "Vytvořit BBCode",
"Enable" : "Povolit",
"Disable" : "Vypnout",
"Enabled BBCodes" : "Povolené BBCode kódy",
"These BBCode tags are currently active" : "Tyto BBCode značky jsou v tuto chvíli aktivní",
"Disabled BBCodes" : "Zakázané BBCode kódy",
"These BBCode tags are currently inactive" : "V tuto chvíli jsou neaktivní tyto BBCode značky",
"No enabled BBCodes" : "Žádné povolené BBCode kódy",
"Parses Inner" : "Zpracovává vnitřní",
"Delete BBCode" : "Smazat BBCode",
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Opravdu chcete BBCode značku [{tag}] smazat?",
"This action cannot be undone." : "Tuto akci není možné vzít zpět.",
"Edit BBCode" : "Upravit BBCode",
"Tag" : "Štítek",
"e.g., b, i, url, color" : "např. b, i, url, color",
"The BBCode tag name (without brackets)" : "Název BBCode značky (bez závorek)",
"HTML replacement" : "HTML nahrazení",
"e.g., {strongStart}{content}{strongEnd}" : "např., {strongStart}{content}{strongEnd}",
"Use {content} for the tag content and {paramName} for parameters" : "Použijte {content} pro obsah značky a {paramName} pro parametry k ní",
"e.g., {tagStart}Hello world{tagEnd}" : "např. {tagStart}Ahoj světe{tagEnd}",
"Example usage of this BBCode tag" : "Ukázka použití této BBCode značky",
"Description" : "Popis",
"Brief description of what this BBCode does" : "Stručný popis toho, co tento BBCode dělá",
"Enabled" : "Zapnuto",
"Parse inner content" : "Zpracovat vnitřní obsah",
"If enabled, BBCode tags inside this tag will also be parsed" : "Pokud zapnuto, značky BBCode uvnitř této značky budou zpracovány také",
"Create category" : "Vytvořit kategorii",
"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í --",
"Name" : "Název",
"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 can access and moderate this category" : "Určete které role mohou k této kategorii přistupovat a moderovat v ní",
"Roles that can view" : "Role, které mohou zobrazovat",
"Select roles that can view this category and its threads" : "Vyberte role které si mohou zobrazovat tuto kategorii a její vlákna",
"Roles that can moderate" : "Role, které mohou moderovat",
"Select roles that can moderate (edit/delete) content in this category" : "Vyberte role které mohou moderovat (upravovat/mazat) obsah v této kategorii",
"Select roles …" : "Vybrat role …",
"Manage forum categories and organization" : "Spravovat kategorie fóra a organizování",
"Error loading categories" : "Chyba při načítání kategorií",
"No categories in this header" : "Žádné kategorie v tomto záhlaví",
"Delete category" : "Smazat kategorii",
"Are you sure you want to delete the category \"{name}\"?" : "Opravdu chcete kategorii „{name}“ smazat?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Tato kategorie obsahuje %n vlákno.","Tato kategorie obsahuje %n vlákna.","Tato kategorie obsahuje %n vláken.","Tato kategorie obsahuje %n vlákna."],
"What should happen to the threads?" : "Co se má stát s těmito vlákny?",
"Move threads to another category" : "Přesunout vlákna do jiné kategorie",
"Delete all threads (soft delete)" : "Smazat všechna vlákna („měkké“ smazání)",
"Threads will be hidden but not permanently deleted" : "Vlákna budou skryta, ale ještě ne smazána",
"Select target category" : "Vyberte cílovou kategorii",
"-- Select a category --" : "-- Vybrat kategorii --",
"Create header" : "Vytvořit záhlaví",
"_%n category_::_%n categories_" : ["%n kategorie","%n kategorie","%n kategorií","%n kategorie"],
"_%n thread_::_%n threads_" : ["%n vlákno","%n vlákna","%n vláken","%n vlákna"],
"Delete header" : "Smazat záhlaví",
"Are you sure you want to delete the header \"{name}\"?" : "Opravdu chcete záhlaví „{name}“ smazat?",
"_This header contains %n category._::_This header contains %n categories._" : ["Toto záhlaví obsahuje %n kategorii.","Toto záhlaví obsahuje %n kategorie.","Toto záhlaví obsahuje %n kategorií.","Toto záhlaví obsahuje %n kategorie."],
"This action cannot be undone" : "Tuto akci není možné vzít zpět",
"What should happen to the categories?" : "Co se má stát s těmito kategoriemi?",
"Move categories to another header" : "Přesunout kategorie do jiného záhlaví",
"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í",
"Move up" : "Přesunout výše",
"Move down" : "Přesunout dolů",
"Admin dashboard" : "Přehled správce",
"Overview of forum activity and statistics" : "Přehled aktivity na fóru a statistiky",
"Loading statistics …" : "Načítání statistik …",
"Error loading dashboard" : "Chyba při načítání přehledu",
"Total statistics" : "Celkové statistiky",
"Total users" : "Celkem uživatelů",
"Total threads" : "Celkem vláken",
"Total posts" : "Celkem příspěvků",
"Total categories" : "Celkem kategorií",
"Recent activity (last 7 days)" : "Nedávná aktivita (uplynulých 7 dnů)",
"New users" : "Nový uživatelé",
"New threads" : "Nová vlákna",
"New posts" : "Nové příspěvky",
"Top contributors" : "Nejaktivnější přispěvatelé",
"No contributors yet" : "Zatím žádní přispěvatelé",
"Last 7 days" : "Uplynulých 7 dnů",
"All time" : "Na vždy",
"General settings" : "Obecná nastavení",
"Configure general forum settings" : "Obecná nastavení fóra",
"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",
"Welcome to the forum" : "Vítejte ve fóru",
"A brief description shown below the title" : "Stručný popis zobrazený pod titulkem",
"Access control" : "Řízení přístupu",
"Manage who can access the forum" : "Spravujte kdo může do fóra přistupovat",
"Allow guest access" : "Umožnit přístup hostům",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Pokud zapnuto, nepřihlášení uživatelé mohou zobrazovat obsah fóra v režimu pouze pro čtení",
"Settings saved" : "Nastavení uložena",
"Failed to save settings" : "Nastavení se nepodařilo uložit",
"Create role" : "Vytvořit rol",
"Edit role" : "Upravit roli",
"Configure role permissions and category access" : "Nastavit oprávnění rolí a přístupu ke kategoriím",
"Error loading role" : "Chyba při načítání role",
"Enter role name" : "Zadejte název role",
"Enter role description (optional)" : "Zadejte popis role (volitelné)",
"System role names cannot be changed" : "Názvy systémových rolí není možné měnit",
"Colors" : "Barvy",
"Set colors for this role badge" : "Nastavit barvy pro odznáček této role",
"Light mode color" : "Barva světlého režimu",
"Dark mode color" : "Barva tmavého režim",
"Reset" : "Vrátit na výchozí",
"Role permissions" : "Oprávnění role",
"Set global permissions for this role" : "Nastavit globální oprávnění pro tuto roli",
"Can access admin tools" : "Může přistupovat k nástrojům pro správu",
"Allow access to the admin dashboard and tools" : "Umožnit přístup k přehledu správce a nástrojům",
"Can edit roles" : "Může upravovat role",
"Allow creating, editing and deleting roles" : "Umožnit vytváření, upravování a mazání rolí",
"Can edit categories" : "Může upravovat kategorie",
"Allow creating, editing and deleting categories" : "Umožnit vytváření, upravování a mazání kategorií",
"Category permissions" : "Oprávnění kategorie",
"Set which categories this role can access" : "Nastavit ke kterým kategoriím tato role může přistupovat",
"Category" : "Kategorie",
"Can view" : "Může zobrazovat",
"Can moderate" : "Může moderovat",
"Allow" : "Umožnit",
"No categories available" : "Nejsou k dispozici žádné kategorie",
"Admin role must have all permissions enabled" : "Je třeba, aby role správce měla povolené všechna oprávnění",
"Admin role has full access to all categories" : "Role správce má plný přístup do všech kategorií",
"Guest role cannot have admin permissions" : "Role hosta nemůže mít roli správce",
"Guest role cannot moderate categories" : "Role hosta nemůže moderovat kategorie",
"You can control which categories guests can view using the checkboxes below." : "Pomocí zaškrtávacích kolonek níže je možné určovat, které kategorie mohou hosté vidět.",
"Guest access is currently disabled" : "Přístup pro hosty je v tuto chvíli zakázán",
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Uživatelé hosté nebudou moci přistupovat do fóra dokud jim nebude přístup povolený v nastavení fóra.",
"Go to forum settings" : "Přejít do nastavení fóra",
"Default role cannot moderate categories" : "Výchozí role nemůže moderovat kategorie",
"Role management" : "Správa rolí",
"Create and manage forum roles and permissions" : "Vytvořit a spravovat role v rámci fóra a jejich oprávnění",
"Loading roles …" : "Načítání rolí …",
"Error loading roles" : "Chyba při načítání rolí",
"No roles found" : "Nenalezeny žádné role",
"Create your first role to get started" : "Začněte vytvořením první role",
"ID" : "Identif.",
"Created" : "Vytvořeno",
"Actions" : "Akce",
"No description" : "Bez popisu",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Opravdu chcete roli „{name}“ smazat? Tuto akci nepůjde vzít zpět.",
"System roles cannot be deleted" : "Systémové role není možné smazat",
"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",
"Posts" : "Příspěvků",
"Joined" : "Připojený",
"Status" : "Stav",
"Active" : "Aktivní",
"Deleted" : "Smazáno",
"No roles" : "Žádné role",
"Select roles" : "Vybrat role",
"Edit roles" : "Upravit role",
"Edit user roles" : "Upravit role uživatelů"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
}

41
l10n/cy_GB.js Normal file
View File

@@ -0,0 +1,41 @@
OC.L10N.register(
"forum",
{
"Admin" : "Gweinyddwr",
"Moderator" : "Cymedrolwr",
"User" : "Defnyddwyr",
"General" : "Cyffredinol",
"Forum" : "Fforwm",
"Search" : "Chwilio",
"Home" : "Cartref",
"Dashboard" : "Bwrdd Rheoli",
"Users" : "Defnyddwyr",
"Categories" : "Categorïau",
"List" : "Rhestr",
"Upload failed" : "Methwyd llwytho i fyny",
"Close" : "Cau",
"Cancel" : "Cancel",
"Update" : "Diweddaru",
"Move" : "Symud",
"Page not found" : "Heb ganfod y dudalen",
"Edit" : "Golygu",
"Delete" : "Dileu",
"Save" : "Cadw",
"Uncategorized" : "Dim categori",
"Views" : "Dangosiadau",
"Refresh" : "Ail-lwytho",
"Retry" : "Ceisio eto",
"Error" : "Gwall",
"by" : "gan",
"Subscribe" : "Tanysgrifio",
"Disable" : "Analluogi",
"Description" : "Disgrifiad",
"Name" : "Enw",
"New" : "Newydd",
"Category" : "Categori",
"ID" : "ID",
"Actions" : "Gweithredoedd",
"Status" : "Statws",
"Deleted" : "Wedi dileu"
},
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");

39
l10n/cy_GB.json Normal file
View File

@@ -0,0 +1,39 @@
{ "translations": {
"Admin" : "Gweinyddwr",
"Moderator" : "Cymedrolwr",
"User" : "Defnyddwyr",
"General" : "Cyffredinol",
"Forum" : "Fforwm",
"Search" : "Chwilio",
"Home" : "Cartref",
"Dashboard" : "Bwrdd Rheoli",
"Users" : "Defnyddwyr",
"Categories" : "Categorïau",
"List" : "Rhestr",
"Upload failed" : "Methwyd llwytho i fyny",
"Close" : "Cau",
"Cancel" : "Cancel",
"Update" : "Diweddaru",
"Move" : "Symud",
"Page not found" : "Heb ganfod y dudalen",
"Edit" : "Golygu",
"Delete" : "Dileu",
"Save" : "Cadw",
"Uncategorized" : "Dim categori",
"Views" : "Dangosiadau",
"Refresh" : "Ail-lwytho",
"Retry" : "Ceisio eto",
"Error" : "Gwall",
"by" : "gan",
"Subscribe" : "Tanysgrifio",
"Disable" : "Analluogi",
"Description" : "Disgrifiad",
"Name" : "Enw",
"New" : "Newydd",
"Category" : "Categori",
"ID" : "ID",
"Actions" : "Gweithredoedd",
"Status" : "Statws",
"Deleted" : "Wedi dileu"
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
}

86
l10n/da.js Normal file
View File

@@ -0,0 +1,86 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"Moderator" : "Modeator",
"User" : "Bruger",
"General" : "Generelt",
"Support" : "Support",
"Bold text" : "Fed tekst",
"Underlined text" : "Understreget tekst",
"Forum" : "Forum",
"Search" : "Søg",
"Home" : "Hjem",
"Dashboard" : "Dashboard",
"Users" : "Brugere",
"Categories" : "Kategorier",
"Expand" : "Udvid",
"Collapse" : "Sammenfold",
"Hello world!" : "Hej verden!",
"Code" : "Kode",
"Quote" : "Citat",
"Font size" : "Skriftstørrelse",
"List" : "Liste",
"Insert emoji" : "Indsæt emoji",
"Upload failed" : "Upload fejlede",
"Close" : "Luk",
"Failed to upload file" : "Kunne ikke uploade fil",
"Sort order" : "Sorteringsrækkefølge",
"Cancel" : "Annullér",
"Create" : "Opret",
"Update" : "Opdatér",
"Move" : "Flyt",
"Page not found" : "Siden blev ikke fundet",
"Back" : "Tilbage",
"Edit" : "Redigér",
"Delete" : "Slet",
"Unread" : "Ulæst",
"Save" : "Gem",
"Uncategorized" : "Udenfor kategori",
"Views" : "Visninger",
"Title" : "Titel",
"Refresh" : "Opdatér",
"Loading …" : "Indlæser ...",
"Retry" : "Prøv igen",
"Error" : "Fejl",
"Searching …" : "Søger …",
"No results found" : "Ingen resultater fundet",
"Back to {category}" : "Tilbage til {category}",
"Reply" : "Svar",
"by" : "af",
"Subscribe" : "Tilmeld",
"Subscribed" : "Abonneret",
"Edit title" : "Redigér titel",
"Move thread" : "Flyt tråden",
"Preferences" : "Indstillinger",
"Notifications" : "Påmindelser",
"Files" : "Filer",
"Enable" : "Aktiver",
"Disable" : "Deaktiver",
"This action cannot be undone." : "Denne handling kan ikke fortrydes.",
"Description" : "Beskrivelse",
"Enabled" : "Aktiveret",
"Name" : "Navn",
"New" : "Nyt",
"Permissions" : "Rettigheder",
"Move up" : "Flyt op",
"Move down" : "Flyt ned",
"Last 7 days" : "Sidste 7 dage",
"General settings" : "Generelle indstillinger",
"Appearance" : "Udseende",
"Access control" : "Adgangskontrol",
"Settings saved" : "Indstillinger gemt",
"Failed to save settings" : "Kunne ikke gemme indstillinger",
"Reset" : "Nulstil",
"Category" : "Kategori",
"Allow" : "Tillad",
"ID" : "ID",
"Created" : "Oprettet",
"Actions" : "Handlinger",
"Loading users …" : "Henter brugere ...",
"No users found" : "Ingen brugere fundet",
"Joined" : "Forbind",
"Status" : "Status",
"Deleted" : "Slettet"
},
"nplurals=2; plural=(n != 1);");

84
l10n/da.json Normal file
View File

@@ -0,0 +1,84 @@
{ "translations": {
"Admin" : "Admin",
"Moderator" : "Modeator",
"User" : "Bruger",
"General" : "Generelt",
"Support" : "Support",
"Bold text" : "Fed tekst",
"Underlined text" : "Understreget tekst",
"Forum" : "Forum",
"Search" : "Søg",
"Home" : "Hjem",
"Dashboard" : "Dashboard",
"Users" : "Brugere",
"Categories" : "Kategorier",
"Expand" : "Udvid",
"Collapse" : "Sammenfold",
"Hello world!" : "Hej verden!",
"Code" : "Kode",
"Quote" : "Citat",
"Font size" : "Skriftstørrelse",
"List" : "Liste",
"Insert emoji" : "Indsæt emoji",
"Upload failed" : "Upload fejlede",
"Close" : "Luk",
"Failed to upload file" : "Kunne ikke uploade fil",
"Sort order" : "Sorteringsrækkefølge",
"Cancel" : "Annullér",
"Create" : "Opret",
"Update" : "Opdatér",
"Move" : "Flyt",
"Page not found" : "Siden blev ikke fundet",
"Back" : "Tilbage",
"Edit" : "Redigér",
"Delete" : "Slet",
"Unread" : "Ulæst",
"Save" : "Gem",
"Uncategorized" : "Udenfor kategori",
"Views" : "Visninger",
"Title" : "Titel",
"Refresh" : "Opdatér",
"Loading …" : "Indlæser ...",
"Retry" : "Prøv igen",
"Error" : "Fejl",
"Searching …" : "Søger …",
"No results found" : "Ingen resultater fundet",
"Back to {category}" : "Tilbage til {category}",
"Reply" : "Svar",
"by" : "af",
"Subscribe" : "Tilmeld",
"Subscribed" : "Abonneret",
"Edit title" : "Redigér titel",
"Move thread" : "Flyt tråden",
"Preferences" : "Indstillinger",
"Notifications" : "Påmindelser",
"Files" : "Filer",
"Enable" : "Aktiver",
"Disable" : "Deaktiver",
"This action cannot be undone." : "Denne handling kan ikke fortrydes.",
"Description" : "Beskrivelse",
"Enabled" : "Aktiveret",
"Name" : "Navn",
"New" : "Nyt",
"Permissions" : "Rettigheder",
"Move up" : "Flyt op",
"Move down" : "Flyt ned",
"Last 7 days" : "Sidste 7 dage",
"General settings" : "Generelle indstillinger",
"Appearance" : "Udseende",
"Access control" : "Adgangskontrol",
"Settings saved" : "Indstillinger gemt",
"Failed to save settings" : "Kunne ikke gemme indstillinger",
"Reset" : "Nulstil",
"Category" : "Kategori",
"Allow" : "Tillad",
"ID" : "ID",
"Created" : "Oprettet",
"Actions" : "Handlinger",
"Loading users …" : "Henter brugere ...",
"No users found" : "Ingen brugere fundet",
"Joined" : "Forbind",
"Status" : "Status",
"Deleted" : "Slettet"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

391
l10n/de.js Normal file
View File

@@ -0,0 +1,391 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administration",
"Administrator role with full permissions" : "Administrationsrolle mit vollen Berechtigungen",
"Moderator" : "Moderation",
"Moderator role with elevated permissions" : "Moderationsrolle mit erweiterten Berechtigungen",
"User" : "Benutzer",
"Default user role with basic permissions" : "Standardbenutzerrolle mit grundlegenden Berechtigungen",
"Guest" : "Gast",
"Guest role for unauthenticated users with read-only access" : "Gastrolle für nicht angemeldete Benutzer mit schreibgeschütztem Zugriff",
"General" : "Allgemein",
"General discussion categories" : "Kategorien für Allgemeine Diskussionen",
"General discussions" : "Allgemeine Diskussionen",
"A place for general conversations and discussions" : "Ein Ort für allgemeine Gespräche und Diskussionen",
"Support" : "Support",
"Ask questions about the forum, provide feedback or report issues." : "Fragen zum Forum stellen, Feedback geben oder Probleme melden.",
"Inline code" : "Inline-Code",
"Hidden content" : "Versteckter Inhalt",
"Attachment" : "Anhang",
"Welcome to Nextcloud Forums" : "Willkommen in den Nextcloud Foren",
"Welcome to the Nextcloud Forums!" : "Willkommen in den Nextcloud Foren!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Dies ist ein Community-Forum, das direkt in deine Nextcloud-Instanz integriert ist. Hier kannst du Themen diskutieren, Ideen austauschen und mit anderen Nutzern zusammenarbeiten.",
"Features:" : "Funktionen:",
"Create and reply to threads" : "Threads erstellen und beantworten",
"Organize discussions by categories" : "Die Diskussionen nach Kategorien ordnen",
"Use BBCode for rich text formatting" : "BBCode für Rich-Text-Formatierung verwenden",
"Attach files from your Nextcloud storage" : "Dateien aus Ihrem Nextcloud-Speicher hinzufügen",
"React to posts" : "Auf Beiträge reagieren",
"Track read/unread threads" : "Gelesene/ungelesene Themen verfolgen",
"BBCode examples:" : "BBCode-Beispiele:",
"Bold text" : "Fetter Text",
"Use %1$stext%2$s" : "%1$sText%2$s verwenden",
"Italic text" : "Kursiver Text",
"Underlined text" : "Unterstrichener Text",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Gerne eine neue Diskussion starten oder auf bestehende Beiträge antworten. Viel Spaß beim Posten!",
"Forum" : "Forum",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} neue Antwort in {thread}","{count} neue Antworten in {thread}"],
"Welcome to the forum!" : "Willkommen in den Nextcloud Foren!",
"Deleted user" : "Gelöschter Benutzer",
"A community-driven forum built right into your Nextcloud instance" : "Ein Community-basiertes Forum, das direkt in deine Nextcloud-Instanz integriert ist.",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Diskussionen starten, Ideen austauschen und direkt in Nextcloud mit der Community zusammenarbeiten.\n\n**⚠️ Hinweis zur frühen Entwicklungsphase:** \nDiese App befindet sich in einer frühen Entwicklungsphase. Sie ist zwar funktionsfähig, es können jedoch Fehler oder unvollständige Funktionen auftreten. Bitte melden Sie alle Probleme auf GitHub und erstellen Sie regelmäßig Backups Ihrer Daten.\n\n**Hauptfunktionen:**\n\n- **Themenbasierte Diskussionen** Organisierte Diskussionsthemen erstellen und beantworten\n- **Kategorieorganisation** Das Forum mit anpassbaren Kategorien und Überschriften strukturieren.\n- **Rich-Text-Formatierung** BBCode verwenden, um Beiträge mit Fettdruck, Kursivschrift, Links, Bildern, Codeblöcken und mehr zu formatieren.\n- **Dateianhänge** Dateien aus dem Nextcloud-Speicher an Beiträge anhängen.\n- **Reaktionen auf Beiträge** Mit Emojis auf Beiträge reagieren.\n- **Lese-/Ungelesen-Status** Den Überblick darüber behalten, welche Threads bereits gelesen wurden.\n- **Suche** Diskussionen schnell mit der integrierten Suche finden.\n- **Benutzerprofile** Den Beitragsverlauf und die Statistiken der Benutzer ansehen.\n- **Rollenbasierte Berechtigungen** Den Zugriff und die Moderation mit flexiblen Rollen steuern.\n- **Gastzugriff**: Optionaler öffentlicher Zugriff für nicht authentifizierte Benutzer mit konfigurierbaren Berechtigungen.\n- **Admin-Tools** Kategorien, Rollen, BBCodes und Forumseinstellungen verwalten.\n- **Moderations-Tools** Themen und Beiträge anheften, sperren und verwalten.\n\n**Perfekt für:**\n- Teamdiskussionen und Zusammenarbeit\n- Community-Foren\n- Supportkanäle\n- Wissensdatenbanken\n- Projektdiskussionen\n- Interne Kommunikation\n\nDas Forum integriert sich nahtlos in die Nextcloud-Instanz und nutzt die bestehenden Benutzer und Gruppen für die Anmeldung und die Zugriffskontrolle.",
"Search" : "Suche",
"Home" : "Startseite",
"User preferences" : "Benutzereinstellungen",
"Dashboard" : "Dashboard",
"Forum settings" : "Forumseinstellungen",
"Users" : "Benutzer",
"Roles" : "Rollen",
"Categories" : "Kategorien",
"BBCodes" : "BBCodes",
"Expand" : "Erweitern",
"Collapse" : "Zuklappen",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Bitte beachten:{bEnd} Angehängte Dateien sind für alle im Forum sichtbar, unabhängig von den Freigabeeinstellungen der Datei.",
"Drop file here to upload" : "Datei zum Hochladen hier fallen lassen",
"Hello world!" : "Hallo Welt!",
"Hello moon!" : "Hallo Mond!",
"Font style bold" : "Schriftart fett",
"Font style italic" : "Schriftart kursiv",
"Font style struck through" : "Schriftart durchgestrichen",
"Font style underlined" : "Schriftart unterstrichen",
"Code" : "Quelltext",
"Email (clickable)" : "E-Mail (anklickbar)",
"URL (clickable)" : "URL (anklickbar)",
"Image (not clickable)" : "Bild (nicht anklickbar)",
"Quote" : "Zitat",
"Embedded YouTube video" : "Eingebettetes YouTube-Video",
"Font (name)" : "Schriftart (Name)",
"Font size" : "Schriftgröße",
"Font color" : "Schriftfarbe",
"Align left" : "Linksbündig",
"Align center" : "Zentriert ausrichten",
"Align right" : "Rechtsbündig",
"List" : "Liste",
"List item within a list" : "Listenelement innerhalb einer Liste",
"List item within a list (alias)" : "Listenelement innerhalb einer Liste (Alias)",
"BBCode help" : "BBCode-Hilfe",
"Built-in BBCodes" : "Vorgefertigte BBCodes",
"These BBCodes are available by default." : "Diese BBCodes sind standardmäßig verfügbar.",
"Custom BBCodes" : "Benutzerdefinierte BBCodes",
"These BBCodes are custom to this forum and configured by administrators." : "Diese BBCodes sind an dieses Forum angepasst und werden von der Administration konfiguriert.",
"Example" : "Beispiel",
"Replacement" : "Ersetzung",
"Loading custom BBCodes …" : "Lade benutzerdefinierte BBCodes …",
"No custom BBCodes configured." : "Keine benutzerdefinierten BBCodes eingerichtet.",
"Failed to load custom BBCodes" : "Benutzerdefinierter BBCodes konnten nicht geladen werden.",
"Insert emoji" : "Emoji einfügen",
"Uploading file …" : "Lade Datei hoch …",
"Upload failed" : "Hochladen fehlgeschlagen",
"Close" : "Schließen",
"Pick a file to attach" : "Eine Datei zum Anhängen auswählen",
"Failed to upload file" : "Datei konnte nicht hochgeladen werden",
"_Thread_::_Threads_" : ["Thema","Themen"],
"_Post_::_Posts_" : ["Beitrag","Beiträge"],
"No description available" : "Keine Beschreibung verfügbar",
"Create category header" : "Kategorieüberschrift erstellen",
"Edit category header" : "Kategorieüberschrift bearbeiten",
"Header name" : "Name der Überschrift",
"Enter header name" : "Namen der Überschrift eingeben",
"Header description" : "Überschriftsbeschreibung",
"Enter header description (optional)" : "Überschriftsbeschreibung eingeben (Optional)",
"Sort order" : "Sortierung",
"Lower numbers appear first" : "Niedrigere Zahlen erscheinen zuerst",
"Cancel" : "Abbrechen",
"Create" : "Erstellen",
"Update" : "Aktualisieren",
"Move thread to category" : "Thema in Kategorie verschieben",
"Select the category to move this thread to:" : "Die Kategorie auswählen, zu der dieses Thema verschoben werden soll:",
"Select a category …" : "Eine Kategorie auswählen …",
"Loading categories …" : "Lade Kategorien …",
"Move" : "Verschieben",
"This thread is already in this category." : "Dieses Thema befindet sich bereits in dieser Kategorie.",
"Failed to load categories" : "Kategorien konnten nicht geladen werden",
"Page not found" : "Seite nicht gefunden",
"The page you are looking for could not be found." : "Die gesuchte Seite konnte nicht gefunden werden.",
"Back" : "Zurück",
"Go to home" : "Zur Startseite",
"Edited" : "Bearbeitet",
"Quote reply" : "Antwort zitieren",
"Edit" : "Bearbeiten",
"Delete" : "Löschen",
"Are you sure you want to delete this post? This action cannot be undone." : "Soll dieser Beitrag gelöscht werden? Dies kann nicht rückgängig gemacht werden.",
"Unread" : "Ungelesen",
"Edit your post …" : "Deinen Beitrag bearbeiten …",
"Save" : "Speichern",
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
"Add reaction" : "Reaktion hinzufügen",
"React with {emoji}" : "Mit {emoji} reagieren",
"You reacted with {emoji}" : "Du hast mit {emoji} reagiert",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Du und %n Anderer haben mit {emoji} reagiert","Du und %n Andere haben mit {emoji} reagiert"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n Person hat mit {emoji} reagiert","%n Personen haben mit {emoji} reagiert"],
"Write your reply …" : "Schreibe deine Antwort ...",
"Post reply" : "Antwort senden",
"Are you sure you want to discard your reply?" : "Soll deine Antwort verworfen werden?",
"In thread" : "Im Thema",
"Thread unavailable" : "Thema nicht verfügbar",
"Pinned thread" : "Angeheftetes Thema",
"Locked thread" : "Gesperrtes Thema",
"Uncategorized" : "Ohne Kategorie",
"_%n post_::_%n posts_" : ["%n Beitrag","%n Beiträge"],
"_%n view_::_%n views_" : ["%n Ansicht","%n Ansichten"],
"Replies" : "Antworten",
"Views" : "Ansichten",
"Title" : "Titel",
"Enter thread title …" : "Titel des Themas eingeben …",
"Write your first post …" : "Deinen ersten Beitrag schreiben …",
"Create thread" : "Thema erstellen",
"Are you sure you want to discard this thread?" : "Soll dieses Thema verworfen werden?",
"Refresh" : "Aktualisieren",
"Loading …" : "Lade …",
"No categories yet" : "Bislang keine Kategorien",
"Categories will appear here once they are created." : "Kategorien werden hier angezeigt, sobald sie angelegt wurden.",
"No categories in this section" : "Keine Kategorien in diesem Abschnitt",
"Category not found" : "Kategorie nicht gefunden",
"The category you are looking for does not exist or has been removed." : "Die gesuchte Kategorie existiert nicht oder wurde entfernt.",
"Back to categories" : "Zurück zu Kategorien",
"New thread" : "Neues Thema",
"Error loading category" : "Fehler beim Laden der Kategorie",
"No threads yet" : "Bislang keine Themen",
"Be the first to start a discussion in this category." : "Sei der Erste, der eine Diskussion in dieser Kategorie beginnt.",
"Retry" : "Wiederholen",
"_Showing %n thread_::_Showing %n threads_" : ["Zeige %n Thema an","Zeige %n Themen an"],
"An unexpected error occurred" : "Ein unerwarteter Fehler ist aufgetreten",
"Failed to load threads" : "Themen konnten nicht geladen werden",
"Create New Thread" : "Ein neues Thema erstellen",
"In {category}" : "In {category}",
"Creating thread …" : "Erstelle Thema …",
"Thread created" : "Thema erstellt",
"Failed to create thread" : "Thema konnte nicht erstellt werden",
"No category specified" : "Keine Kategorie angegeben",
"Error" : "Fehler",
"First post" : "Erster Beitrag",
"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 posted any replies yet" : "Dieser Benutzer hat bislang noch keine Antwort gepostet",
"Failed to load user profile" : "Benutzerprofil konnte nicht geladen werden",
"Enter search query …" : "Suchanfrage eingeben ...",
"Search in threads" : "In Themen suchen",
"Search in posts" : "In Beiträgen suchen",
"Syntax help" : "Syntaxhilfe",
"Searching …" : "Suche …",
"Search Error" : "Suchfehler",
"Enter a search query" : "Eine Suchabfrage eingeben",
"Use the search box above to find threads and posts" : "Um Themen und Beiträge zu finden, die Box oben verwenden",
"No results found" : "Keine Ergebnisse gefunden",
"_%n thread found_::_%n threads found_" : ["%n Thema gefunden","%n Themen gefunden"],
"_%n post found_::_%n posts found_" : ["%n Beitrag gefunden","%n Beiträge gefunden"],
"Please enter a search query" : "Bitte eine Suchabfrage eingeben",
"Failed to search" : "Suche fehlgeschlagen",
"Thread not found" : "Thema nicht gefunden",
"The thread you are looking for does not exist or has been removed." : "Das gesuchte Thema existiert nicht oder wurde entfernt.",
"Back to {category}" : "Zurück zu {category}",
"Reply" : "Antwort",
"Error loading thread" : "Fehler beim Laden des Themas",
"No posts yet" : "Bislang keine Beträge",
"Be the first to post in this thread." : "Sei der Erste, der eine Diskussion in dieser Kategorie beginnt.",
"by" : "von",
"This thread is locked. Only moderators can post replies." : "Dieses Thema ist gesperrt. Nur die Moderation kann Antworten posten.",
"You must be signed in to reply to this thread." : "Du musst angemeldet sein, um auf dieses Thema zu antworten.",
"Sign in to reply" : "Anmelden um zu antworten",
"_Showing %n post_::_Showing %n posts_" : ["Angezeigt wird %n Beitrag","Angezeigt werden %n Beiträge"],
"Lock thread" : "Thema sperren",
"Unlock thread" : "Thema entsperren",
"Pin thread" : "Thema anheften",
"Unpin thread" : "Thema lösen",
"Thread locked" : "Thema gesperrt",
"Thread unlocked" : "Thema entsperrt",
"Thread pinned" : "Thema angeheftet",
"Thread unpinned" : "Thema abgelöst",
"Subscribe" : "Abonnieren",
"Subscribed" : "Abonniert",
"Subscribed to thread" : "Thema abonniert",
"Unsubscribed from thread" : "Thema abbestellt",
"Edit title" : "Titel bearbeiten",
"Save title" : "Titel speichern",
"Thread title updated" : "Titel des Themas aktualisiert",
"Move thread" : "Unterhaltung verschieben",
"Thread moved successfully" : "Thema verschoben",
"Failed to load posts" : "Beiträge konnten nicht geladen werden",
"Post updated" : "Beitrag aktualisiert",
"Failed to update post" : "Beitrag konnte nicht aktualisiert werden",
"Thread deleted" : "Thema gelöscht",
"Post deleted" : "Beitrag gelöscht",
"Failed to delete post" : "Beitrag konnte nicht gelöscht werden",
"Failed to update subscription" : "Das Abonnement 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",
"Notifications" : "Benachrichtigungen",
"Auto-subscribe to threads I create" : "Themen die ich erstellt habe, automatisch abonnieren",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Wenn diese Option aktiviert ist, erhältst du automatisch Benachrichtigungen für Antworten auf von dir erstellte Themen",
"Files" : "Dateien",
"Configure file upload settings" : "Einstellungen für das Hochladen von Dateien",
"Upload directory" : "Hochladeverzeichnis",
"Browse" : "Durchsuchen",
"Preferences saved" : "Einstellungen gespeichert",
"Failed to save preferences" : "Einstellungen konnten nicht gespeichert werden",
"Select upload directory" : "Hochladeverzeichnis auswählen",
"BBCode management" : "BBCode-Verwaltung",
"Error loading BBCodes" : "Fehler beim Laden der BBCodes",
"Create BBCode" : "BBCode erstellen",
"Enable" : "Aktivieren",
"Disable" : "Deaktivieren",
"Enabled BBCodes" : "Aktivierte BBCodes",
"Disabled BBCodes" : "Deaktivierte BBCodes",
"No enabled BBCodes" : "Keine aktivierten BBCodes",
"Delete BBCode" : "BBCode löschen",
"This action cannot be undone." : "Dies kann nicht rückgängig gemacht werden.",
"Edit BBCode" : "BBCode bearbeiten",
"Tag" : "Schlagwort",
"HTML replacement" : "HTML-Ersetzung",
"e.g., {strongStart}{content}{strongEnd}" : "Z. B. {strongStart}{content}{strongEnd}",
"Description" : "Beschreibung",
"Enabled" : "Aktiviert",
"Create category" : "Kategorie erstellen",
"Edit category" : "Kategorie bearbeiten",
"Basic information" : "Grundlegende Information",
"Category header" : "Kategorieüberschrift",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Name" : "Name",
"Enter category name" : "Kategorienamen eingeben",
"Enter category description (optional)" : "Kategoriebeschreibung eingeben (Optional)",
"New" : "Neu",
"Permissions" : "Berechtigungen",
"Roles that can view" : "Rollen, die ansehen können",
"Select roles that can view this category and its threads" : "Rollen auswählen, die dieses Thema und seine Beiträge anzeigen können",
"Roles that can moderate" : "Rollen mit Moderationsberechtigung",
"Select roles that can moderate (edit/delete) content in this category" : "Rollen auswählen, die Inhalte in dieser Kategorie moderieren (bearbeiten/löschen) können",
"Select roles …" : "Rollen auswählen ...",
"Delete category" : "Kategorie löschen",
"Are you sure you want to delete the category \"{name}\"?" : "Soll die Kategorie \"{name}\" gelöscht werden?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Diese Kategorie enthält %n Thema.","Diese Kategorie enthält %n Themen."],
"What should happen to the threads?" : "Was soll mit den Themen geschehen?",
"Move threads to another category" : "Themen in eine andere Kategorie verschieben",
"Delete all threads (soft delete)" : "Alle Themen löschen (Weiches Löschen)",
"Threads will be hidden but not permanently deleted" : "Themen werden verborgen, aber nicht endgültig gelöscht",
"Select target category" : "Zielkategorie auswählen",
"-- Select a category --" : "-- Eine Kategorie auswählen --",
"Create header" : "Überschrift erstellen",
"_%n category_::_%n categories_" : ["%n Kategorie","%n Kategorien"],
"_%n thread_::_%n threads_" : ["%n Thema","%n Themen"],
"Delete header" : "Überschrift löschen",
"Are you sure you want to delete the header \"{name}\"?" : "Soll die Überschrift \"{name}\" gelöscht werden?",
"_This header contains %n category._::_This header contains %n categories._" : ["Diese Überschrift enthält %n Kategorie.","Diese Überschrift enthält %n Kategorien."],
"This action cannot be undone" : "Dies kann nicht rückgängig gemacht werden.",
"What should happen to the categories?" : "Was soll mit den Kategorien geschehen?",
"Move categories to another header" : "Kategorien zu einer anderen Überschrift verschieben",
"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",
"Move up" : "Nach oben verschieben",
"Move down" : "Nach unten verschieben",
"Admin dashboard" : "Administrationsdashboard",
"Overview of forum activity and statistics" : "Übersicht der Forenaktivitäten und Statistiken",
"Loading statistics …" : "Lade Statistiken …",
"Error loading dashboard" : "Fehler beim Laden des Dashboards",
"Total statistics" : "Gesamtstatistik",
"Total users" : "Benutzer gesamt",
"Total threads" : "Themen insgesamt",
"Total posts" : "Beiträge insgesamt",
"Total categories" : "Kategorien insgesamt",
"Recent activity (last 7 days)" : "Neueste Aktivitäten (letzte 7 Tage)",
"New users" : "Neue Benutzer",
"New threads" : "Neue Themen",
"New posts" : "Neue Beiträge",
"Top contributors" : "Top-Beitragende",
"No contributors yet" : "Bislang keine Beitragende",
"Last 7 days" : "Die letzten 7 Tage",
"All time" : "Gesamte Zeit",
"General settings" : "Allgemeine Einstellungen",
"Configure general forum settings" : "Allgemeine Foreneinstellungen konfigurieren",
"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",
"Welcome to the forum" : "Willkommen im Forum",
"A brief description shown below the title" : "Eine kurze Beschreibung, die unter dem Titel angezeigt wird",
"Access control" : "Zugriffskontrolle",
"Manage who can access the forum" : "Verwalten, wer auf das Forum zugreifen darf",
"Allow guest access" : "Gästen den Zugriff gestatten",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Wenn diese Option aktiviert ist, können nicht angemeldete Benutzer Forumsinhalte im schreibgeschützten Modus ansehen",
"Settings saved" : "Einstellungen gespeichert",
"Failed to save settings" : "Einstellungen konnten nicht gespeichert werden",
"Create role" : "Rolle erstellen",
"Edit role" : "Rolle bearbeiten",
"Error loading role" : "Fehler beim Laden der Rolle",
"Enter role name" : "Rollennamen eingeben",
"Enter role description (optional)" : "Rollenbeschreibung eingeben (Optional)",
"Colors" : "Farben",
"Light mode color" : "Farbe für den hellen Modus",
"Dark mode color" : "Farbe für den dunklen Modus",
"Reset" : "Zurücksetzen",
"Role permissions" : "Rollenberechtigungen",
"Set global permissions for this role" : "Globale Berechtigungen für diese Rolle festlegen",
"Can access admin tools" : "Kann auf die Administrationswerkzeuge zugreifen",
"Allow access to the admin dashboard and tools" : "Zugriff auf das Administrations-Dashboard und -Werkzeuge zulassen",
"Can edit roles" : "Kann Rollen bearbeiten",
"Allow creating, editing and deleting roles" : "Erstellen, Bearbeiten und Löschen von Rollen zulassen",
"Can edit categories" : "Kann Kategorien bearbeiten",
"Allow creating, editing and deleting categories" : "Erstellen, Bearbeiten und Löschen von Kategorien zulassen",
"Category permissions" : "Kategorieberechtigungen",
"Category" : "Kategorie",
"Can view" : "Kann ansehen",
"Can moderate" : "Kann moderieren",
"Allow" : "Zulassen",
"No categories available" : "Keine Kategorien verfügbar",
"Admin role must have all permissions enabled" : "Für die Administrationsrolle müssen alle Berechtigungen aktiviert sein",
"Admin role has full access to all categories" : "Die Administrationsrolle hat vollen Zugriff auf alle Kategorien",
"Guest role cannot have admin permissions" : "Die Gastrolle darf keine Administrationsberechtigungen haben",
"Guest role cannot moderate categories" : "Die Gastrolle darf Kategorien nicht moderieren",
"Guest access is currently disabled" : "Gastzugriff ist aktuell deaktiviert",
"Go to forum settings" : "Zu den Foreneinstellungen gehen",
"Default role cannot moderate categories" : "Die Standardrolle darf Kategorien nicht moderieren",
"Role management" : "Rollenverwaltung",
"Create and manage forum roles and permissions" : "Forumsrollen und -berechtigungen erstellen und verwalten",
"Loading roles …" : "Lade Rollen …",
"Error loading roles" : "Fehler beim Laden der Rollen",
"No roles found" : "Keine Rollen gefunden",
"Create your first role to get started" : "Zum Beginnen, eine erste Rolle erstellen",
"ID" : "ID",
"Created" : "Erstellt",
"Actions" : "Aktionen",
"No description" : "Keine Beschreibung",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Soll die Rolle \"{name}\" gelöscht werden? Dies kann nicht rückgängig gemacht werden.",
"System roles cannot be deleted" : "Systemrollen können nicht gelöscht werden",
"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",
"Posts" : "Beiträge",
"Joined" : "Beigetreten",
"Status" : "Status",
"Active" : "Aktiv",
"Deleted" : "Gelöscht",
"No roles" : "Keine Rollen",
"Select roles" : "Rollen auswählen",
"Edit roles" : "Rollen bearbeiten",
"Edit user roles" : "Benutzerrollen bearbeiten"
},
"nplurals=2; plural=(n != 1);");

389
l10n/de.json Normal file
View File

@@ -0,0 +1,389 @@
{ "translations": {
"Admin" : "Administration",
"Administrator role with full permissions" : "Administrationsrolle mit vollen Berechtigungen",
"Moderator" : "Moderation",
"Moderator role with elevated permissions" : "Moderationsrolle mit erweiterten Berechtigungen",
"User" : "Benutzer",
"Default user role with basic permissions" : "Standardbenutzerrolle mit grundlegenden Berechtigungen",
"Guest" : "Gast",
"Guest role for unauthenticated users with read-only access" : "Gastrolle für nicht angemeldete Benutzer mit schreibgeschütztem Zugriff",
"General" : "Allgemein",
"General discussion categories" : "Kategorien für Allgemeine Diskussionen",
"General discussions" : "Allgemeine Diskussionen",
"A place for general conversations and discussions" : "Ein Ort für allgemeine Gespräche und Diskussionen",
"Support" : "Support",
"Ask questions about the forum, provide feedback or report issues." : "Fragen zum Forum stellen, Feedback geben oder Probleme melden.",
"Inline code" : "Inline-Code",
"Hidden content" : "Versteckter Inhalt",
"Attachment" : "Anhang",
"Welcome to Nextcloud Forums" : "Willkommen in den Nextcloud Foren",
"Welcome to the Nextcloud Forums!" : "Willkommen in den Nextcloud Foren!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Dies ist ein Community-Forum, das direkt in deine Nextcloud-Instanz integriert ist. Hier kannst du Themen diskutieren, Ideen austauschen und mit anderen Nutzern zusammenarbeiten.",
"Features:" : "Funktionen:",
"Create and reply to threads" : "Threads erstellen und beantworten",
"Organize discussions by categories" : "Die Diskussionen nach Kategorien ordnen",
"Use BBCode for rich text formatting" : "BBCode für Rich-Text-Formatierung verwenden",
"Attach files from your Nextcloud storage" : "Dateien aus Ihrem Nextcloud-Speicher hinzufügen",
"React to posts" : "Auf Beiträge reagieren",
"Track read/unread threads" : "Gelesene/ungelesene Themen verfolgen",
"BBCode examples:" : "BBCode-Beispiele:",
"Bold text" : "Fetter Text",
"Use %1$stext%2$s" : "%1$sText%2$s verwenden",
"Italic text" : "Kursiver Text",
"Underlined text" : "Unterstrichener Text",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Gerne eine neue Diskussion starten oder auf bestehende Beiträge antworten. Viel Spaß beim Posten!",
"Forum" : "Forum",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} neue Antwort in {thread}","{count} neue Antworten in {thread}"],
"Welcome to the forum!" : "Willkommen in den Nextcloud Foren!",
"Deleted user" : "Gelöschter Benutzer",
"A community-driven forum built right into your Nextcloud instance" : "Ein Community-basiertes Forum, das direkt in deine Nextcloud-Instanz integriert ist.",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Diskussionen starten, Ideen austauschen und direkt in Nextcloud mit der Community zusammenarbeiten.\n\n**⚠️ Hinweis zur frühen Entwicklungsphase:** \nDiese App befindet sich in einer frühen Entwicklungsphase. Sie ist zwar funktionsfähig, es können jedoch Fehler oder unvollständige Funktionen auftreten. Bitte melden Sie alle Probleme auf GitHub und erstellen Sie regelmäßig Backups Ihrer Daten.\n\n**Hauptfunktionen:**\n\n- **Themenbasierte Diskussionen** Organisierte Diskussionsthemen erstellen und beantworten\n- **Kategorieorganisation** Das Forum mit anpassbaren Kategorien und Überschriften strukturieren.\n- **Rich-Text-Formatierung** BBCode verwenden, um Beiträge mit Fettdruck, Kursivschrift, Links, Bildern, Codeblöcken und mehr zu formatieren.\n- **Dateianhänge** Dateien aus dem Nextcloud-Speicher an Beiträge anhängen.\n- **Reaktionen auf Beiträge** Mit Emojis auf Beiträge reagieren.\n- **Lese-/Ungelesen-Status** Den Überblick darüber behalten, welche Threads bereits gelesen wurden.\n- **Suche** Diskussionen schnell mit der integrierten Suche finden.\n- **Benutzerprofile** Den Beitragsverlauf und die Statistiken der Benutzer ansehen.\n- **Rollenbasierte Berechtigungen** Den Zugriff und die Moderation mit flexiblen Rollen steuern.\n- **Gastzugriff**: Optionaler öffentlicher Zugriff für nicht authentifizierte Benutzer mit konfigurierbaren Berechtigungen.\n- **Admin-Tools** Kategorien, Rollen, BBCodes und Forumseinstellungen verwalten.\n- **Moderations-Tools** Themen und Beiträge anheften, sperren und verwalten.\n\n**Perfekt für:**\n- Teamdiskussionen und Zusammenarbeit\n- Community-Foren\n- Supportkanäle\n- Wissensdatenbanken\n- Projektdiskussionen\n- Interne Kommunikation\n\nDas Forum integriert sich nahtlos in die Nextcloud-Instanz und nutzt die bestehenden Benutzer und Gruppen für die Anmeldung und die Zugriffskontrolle.",
"Search" : "Suche",
"Home" : "Startseite",
"User preferences" : "Benutzereinstellungen",
"Dashboard" : "Dashboard",
"Forum settings" : "Forumseinstellungen",
"Users" : "Benutzer",
"Roles" : "Rollen",
"Categories" : "Kategorien",
"BBCodes" : "BBCodes",
"Expand" : "Erweitern",
"Collapse" : "Zuklappen",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Bitte beachten:{bEnd} Angehängte Dateien sind für alle im Forum sichtbar, unabhängig von den Freigabeeinstellungen der Datei.",
"Drop file here to upload" : "Datei zum Hochladen hier fallen lassen",
"Hello world!" : "Hallo Welt!",
"Hello moon!" : "Hallo Mond!",
"Font style bold" : "Schriftart fett",
"Font style italic" : "Schriftart kursiv",
"Font style struck through" : "Schriftart durchgestrichen",
"Font style underlined" : "Schriftart unterstrichen",
"Code" : "Quelltext",
"Email (clickable)" : "E-Mail (anklickbar)",
"URL (clickable)" : "URL (anklickbar)",
"Image (not clickable)" : "Bild (nicht anklickbar)",
"Quote" : "Zitat",
"Embedded YouTube video" : "Eingebettetes YouTube-Video",
"Font (name)" : "Schriftart (Name)",
"Font size" : "Schriftgröße",
"Font color" : "Schriftfarbe",
"Align left" : "Linksbündig",
"Align center" : "Zentriert ausrichten",
"Align right" : "Rechtsbündig",
"List" : "Liste",
"List item within a list" : "Listenelement innerhalb einer Liste",
"List item within a list (alias)" : "Listenelement innerhalb einer Liste (Alias)",
"BBCode help" : "BBCode-Hilfe",
"Built-in BBCodes" : "Vorgefertigte BBCodes",
"These BBCodes are available by default." : "Diese BBCodes sind standardmäßig verfügbar.",
"Custom BBCodes" : "Benutzerdefinierte BBCodes",
"These BBCodes are custom to this forum and configured by administrators." : "Diese BBCodes sind an dieses Forum angepasst und werden von der Administration konfiguriert.",
"Example" : "Beispiel",
"Replacement" : "Ersetzung",
"Loading custom BBCodes …" : "Lade benutzerdefinierte BBCodes …",
"No custom BBCodes configured." : "Keine benutzerdefinierten BBCodes eingerichtet.",
"Failed to load custom BBCodes" : "Benutzerdefinierter BBCodes konnten nicht geladen werden.",
"Insert emoji" : "Emoji einfügen",
"Uploading file …" : "Lade Datei hoch …",
"Upload failed" : "Hochladen fehlgeschlagen",
"Close" : "Schließen",
"Pick a file to attach" : "Eine Datei zum Anhängen auswählen",
"Failed to upload file" : "Datei konnte nicht hochgeladen werden",
"_Thread_::_Threads_" : ["Thema","Themen"],
"_Post_::_Posts_" : ["Beitrag","Beiträge"],
"No description available" : "Keine Beschreibung verfügbar",
"Create category header" : "Kategorieüberschrift erstellen",
"Edit category header" : "Kategorieüberschrift bearbeiten",
"Header name" : "Name der Überschrift",
"Enter header name" : "Namen der Überschrift eingeben",
"Header description" : "Überschriftsbeschreibung",
"Enter header description (optional)" : "Überschriftsbeschreibung eingeben (Optional)",
"Sort order" : "Sortierung",
"Lower numbers appear first" : "Niedrigere Zahlen erscheinen zuerst",
"Cancel" : "Abbrechen",
"Create" : "Erstellen",
"Update" : "Aktualisieren",
"Move thread to category" : "Thema in Kategorie verschieben",
"Select the category to move this thread to:" : "Die Kategorie auswählen, zu der dieses Thema verschoben werden soll:",
"Select a category …" : "Eine Kategorie auswählen …",
"Loading categories …" : "Lade Kategorien …",
"Move" : "Verschieben",
"This thread is already in this category." : "Dieses Thema befindet sich bereits in dieser Kategorie.",
"Failed to load categories" : "Kategorien konnten nicht geladen werden",
"Page not found" : "Seite nicht gefunden",
"The page you are looking for could not be found." : "Die gesuchte Seite konnte nicht gefunden werden.",
"Back" : "Zurück",
"Go to home" : "Zur Startseite",
"Edited" : "Bearbeitet",
"Quote reply" : "Antwort zitieren",
"Edit" : "Bearbeiten",
"Delete" : "Löschen",
"Are you sure you want to delete this post? This action cannot be undone." : "Soll dieser Beitrag gelöscht werden? Dies kann nicht rückgängig gemacht werden.",
"Unread" : "Ungelesen",
"Edit your post …" : "Deinen Beitrag bearbeiten …",
"Save" : "Speichern",
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
"Add reaction" : "Reaktion hinzufügen",
"React with {emoji}" : "Mit {emoji} reagieren",
"You reacted with {emoji}" : "Du hast mit {emoji} reagiert",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Du und %n Anderer haben mit {emoji} reagiert","Du und %n Andere haben mit {emoji} reagiert"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n Person hat mit {emoji} reagiert","%n Personen haben mit {emoji} reagiert"],
"Write your reply …" : "Schreibe deine Antwort ...",
"Post reply" : "Antwort senden",
"Are you sure you want to discard your reply?" : "Soll deine Antwort verworfen werden?",
"In thread" : "Im Thema",
"Thread unavailable" : "Thema nicht verfügbar",
"Pinned thread" : "Angeheftetes Thema",
"Locked thread" : "Gesperrtes Thema",
"Uncategorized" : "Ohne Kategorie",
"_%n post_::_%n posts_" : ["%n Beitrag","%n Beiträge"],
"_%n view_::_%n views_" : ["%n Ansicht","%n Ansichten"],
"Replies" : "Antworten",
"Views" : "Ansichten",
"Title" : "Titel",
"Enter thread title …" : "Titel des Themas eingeben …",
"Write your first post …" : "Deinen ersten Beitrag schreiben …",
"Create thread" : "Thema erstellen",
"Are you sure you want to discard this thread?" : "Soll dieses Thema verworfen werden?",
"Refresh" : "Aktualisieren",
"Loading …" : "Lade …",
"No categories yet" : "Bislang keine Kategorien",
"Categories will appear here once they are created." : "Kategorien werden hier angezeigt, sobald sie angelegt wurden.",
"No categories in this section" : "Keine Kategorien in diesem Abschnitt",
"Category not found" : "Kategorie nicht gefunden",
"The category you are looking for does not exist or has been removed." : "Die gesuchte Kategorie existiert nicht oder wurde entfernt.",
"Back to categories" : "Zurück zu Kategorien",
"New thread" : "Neues Thema",
"Error loading category" : "Fehler beim Laden der Kategorie",
"No threads yet" : "Bislang keine Themen",
"Be the first to start a discussion in this category." : "Sei der Erste, der eine Diskussion in dieser Kategorie beginnt.",
"Retry" : "Wiederholen",
"_Showing %n thread_::_Showing %n threads_" : ["Zeige %n Thema an","Zeige %n Themen an"],
"An unexpected error occurred" : "Ein unerwarteter Fehler ist aufgetreten",
"Failed to load threads" : "Themen konnten nicht geladen werden",
"Create New Thread" : "Ein neues Thema erstellen",
"In {category}" : "In {category}",
"Creating thread …" : "Erstelle Thema …",
"Thread created" : "Thema erstellt",
"Failed to create thread" : "Thema konnte nicht erstellt werden",
"No category specified" : "Keine Kategorie angegeben",
"Error" : "Fehler",
"First post" : "Erster Beitrag",
"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 posted any replies yet" : "Dieser Benutzer hat bislang noch keine Antwort gepostet",
"Failed to load user profile" : "Benutzerprofil konnte nicht geladen werden",
"Enter search query …" : "Suchanfrage eingeben ...",
"Search in threads" : "In Themen suchen",
"Search in posts" : "In Beiträgen suchen",
"Syntax help" : "Syntaxhilfe",
"Searching …" : "Suche …",
"Search Error" : "Suchfehler",
"Enter a search query" : "Eine Suchabfrage eingeben",
"Use the search box above to find threads and posts" : "Um Themen und Beiträge zu finden, die Box oben verwenden",
"No results found" : "Keine Ergebnisse gefunden",
"_%n thread found_::_%n threads found_" : ["%n Thema gefunden","%n Themen gefunden"],
"_%n post found_::_%n posts found_" : ["%n Beitrag gefunden","%n Beiträge gefunden"],
"Please enter a search query" : "Bitte eine Suchabfrage eingeben",
"Failed to search" : "Suche fehlgeschlagen",
"Thread not found" : "Thema nicht gefunden",
"The thread you are looking for does not exist or has been removed." : "Das gesuchte Thema existiert nicht oder wurde entfernt.",
"Back to {category}" : "Zurück zu {category}",
"Reply" : "Antwort",
"Error loading thread" : "Fehler beim Laden des Themas",
"No posts yet" : "Bislang keine Beträge",
"Be the first to post in this thread." : "Sei der Erste, der eine Diskussion in dieser Kategorie beginnt.",
"by" : "von",
"This thread is locked. Only moderators can post replies." : "Dieses Thema ist gesperrt. Nur die Moderation kann Antworten posten.",
"You must be signed in to reply to this thread." : "Du musst angemeldet sein, um auf dieses Thema zu antworten.",
"Sign in to reply" : "Anmelden um zu antworten",
"_Showing %n post_::_Showing %n posts_" : ["Angezeigt wird %n Beitrag","Angezeigt werden %n Beiträge"],
"Lock thread" : "Thema sperren",
"Unlock thread" : "Thema entsperren",
"Pin thread" : "Thema anheften",
"Unpin thread" : "Thema lösen",
"Thread locked" : "Thema gesperrt",
"Thread unlocked" : "Thema entsperrt",
"Thread pinned" : "Thema angeheftet",
"Thread unpinned" : "Thema abgelöst",
"Subscribe" : "Abonnieren",
"Subscribed" : "Abonniert",
"Subscribed to thread" : "Thema abonniert",
"Unsubscribed from thread" : "Thema abbestellt",
"Edit title" : "Titel bearbeiten",
"Save title" : "Titel speichern",
"Thread title updated" : "Titel des Themas aktualisiert",
"Move thread" : "Unterhaltung verschieben",
"Thread moved successfully" : "Thema verschoben",
"Failed to load posts" : "Beiträge konnten nicht geladen werden",
"Post updated" : "Beitrag aktualisiert",
"Failed to update post" : "Beitrag konnte nicht aktualisiert werden",
"Thread deleted" : "Thema gelöscht",
"Post deleted" : "Beitrag gelöscht",
"Failed to delete post" : "Beitrag konnte nicht gelöscht werden",
"Failed to update subscription" : "Das Abonnement 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",
"Notifications" : "Benachrichtigungen",
"Auto-subscribe to threads I create" : "Themen die ich erstellt habe, automatisch abonnieren",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Wenn diese Option aktiviert ist, erhältst du automatisch Benachrichtigungen für Antworten auf von dir erstellte Themen",
"Files" : "Dateien",
"Configure file upload settings" : "Einstellungen für das Hochladen von Dateien",
"Upload directory" : "Hochladeverzeichnis",
"Browse" : "Durchsuchen",
"Preferences saved" : "Einstellungen gespeichert",
"Failed to save preferences" : "Einstellungen konnten nicht gespeichert werden",
"Select upload directory" : "Hochladeverzeichnis auswählen",
"BBCode management" : "BBCode-Verwaltung",
"Error loading BBCodes" : "Fehler beim Laden der BBCodes",
"Create BBCode" : "BBCode erstellen",
"Enable" : "Aktivieren",
"Disable" : "Deaktivieren",
"Enabled BBCodes" : "Aktivierte BBCodes",
"Disabled BBCodes" : "Deaktivierte BBCodes",
"No enabled BBCodes" : "Keine aktivierten BBCodes",
"Delete BBCode" : "BBCode löschen",
"This action cannot be undone." : "Dies kann nicht rückgängig gemacht werden.",
"Edit BBCode" : "BBCode bearbeiten",
"Tag" : "Schlagwort",
"HTML replacement" : "HTML-Ersetzung",
"e.g., {strongStart}{content}{strongEnd}" : "Z. B. {strongStart}{content}{strongEnd}",
"Description" : "Beschreibung",
"Enabled" : "Aktiviert",
"Create category" : "Kategorie erstellen",
"Edit category" : "Kategorie bearbeiten",
"Basic information" : "Grundlegende Information",
"Category header" : "Kategorieüberschrift",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Name" : "Name",
"Enter category name" : "Kategorienamen eingeben",
"Enter category description (optional)" : "Kategoriebeschreibung eingeben (Optional)",
"New" : "Neu",
"Permissions" : "Berechtigungen",
"Roles that can view" : "Rollen, die ansehen können",
"Select roles that can view this category and its threads" : "Rollen auswählen, die dieses Thema und seine Beiträge anzeigen können",
"Roles that can moderate" : "Rollen mit Moderationsberechtigung",
"Select roles that can moderate (edit/delete) content in this category" : "Rollen auswählen, die Inhalte in dieser Kategorie moderieren (bearbeiten/löschen) können",
"Select roles …" : "Rollen auswählen ...",
"Delete category" : "Kategorie löschen",
"Are you sure you want to delete the category \"{name}\"?" : "Soll die Kategorie \"{name}\" gelöscht werden?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Diese Kategorie enthält %n Thema.","Diese Kategorie enthält %n Themen."],
"What should happen to the threads?" : "Was soll mit den Themen geschehen?",
"Move threads to another category" : "Themen in eine andere Kategorie verschieben",
"Delete all threads (soft delete)" : "Alle Themen löschen (Weiches Löschen)",
"Threads will be hidden but not permanently deleted" : "Themen werden verborgen, aber nicht endgültig gelöscht",
"Select target category" : "Zielkategorie auswählen",
"-- Select a category --" : "-- Eine Kategorie auswählen --",
"Create header" : "Überschrift erstellen",
"_%n category_::_%n categories_" : ["%n Kategorie","%n Kategorien"],
"_%n thread_::_%n threads_" : ["%n Thema","%n Themen"],
"Delete header" : "Überschrift löschen",
"Are you sure you want to delete the header \"{name}\"?" : "Soll die Überschrift \"{name}\" gelöscht werden?",
"_This header contains %n category._::_This header contains %n categories._" : ["Diese Überschrift enthält %n Kategorie.","Diese Überschrift enthält %n Kategorien."],
"This action cannot be undone" : "Dies kann nicht rückgängig gemacht werden.",
"What should happen to the categories?" : "Was soll mit den Kategorien geschehen?",
"Move categories to another header" : "Kategorien zu einer anderen Überschrift verschieben",
"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",
"Move up" : "Nach oben verschieben",
"Move down" : "Nach unten verschieben",
"Admin dashboard" : "Administrationsdashboard",
"Overview of forum activity and statistics" : "Übersicht der Forenaktivitäten und Statistiken",
"Loading statistics …" : "Lade Statistiken …",
"Error loading dashboard" : "Fehler beim Laden des Dashboards",
"Total statistics" : "Gesamtstatistik",
"Total users" : "Benutzer gesamt",
"Total threads" : "Themen insgesamt",
"Total posts" : "Beiträge insgesamt",
"Total categories" : "Kategorien insgesamt",
"Recent activity (last 7 days)" : "Neueste Aktivitäten (letzte 7 Tage)",
"New users" : "Neue Benutzer",
"New threads" : "Neue Themen",
"New posts" : "Neue Beiträge",
"Top contributors" : "Top-Beitragende",
"No contributors yet" : "Bislang keine Beitragende",
"Last 7 days" : "Die letzten 7 Tage",
"All time" : "Gesamte Zeit",
"General settings" : "Allgemeine Einstellungen",
"Configure general forum settings" : "Allgemeine Foreneinstellungen konfigurieren",
"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",
"Welcome to the forum" : "Willkommen im Forum",
"A brief description shown below the title" : "Eine kurze Beschreibung, die unter dem Titel angezeigt wird",
"Access control" : "Zugriffskontrolle",
"Manage who can access the forum" : "Verwalten, wer auf das Forum zugreifen darf",
"Allow guest access" : "Gästen den Zugriff gestatten",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Wenn diese Option aktiviert ist, können nicht angemeldete Benutzer Forumsinhalte im schreibgeschützten Modus ansehen",
"Settings saved" : "Einstellungen gespeichert",
"Failed to save settings" : "Einstellungen konnten nicht gespeichert werden",
"Create role" : "Rolle erstellen",
"Edit role" : "Rolle bearbeiten",
"Error loading role" : "Fehler beim Laden der Rolle",
"Enter role name" : "Rollennamen eingeben",
"Enter role description (optional)" : "Rollenbeschreibung eingeben (Optional)",
"Colors" : "Farben",
"Light mode color" : "Farbe für den hellen Modus",
"Dark mode color" : "Farbe für den dunklen Modus",
"Reset" : "Zurücksetzen",
"Role permissions" : "Rollenberechtigungen",
"Set global permissions for this role" : "Globale Berechtigungen für diese Rolle festlegen",
"Can access admin tools" : "Kann auf die Administrationswerkzeuge zugreifen",
"Allow access to the admin dashboard and tools" : "Zugriff auf das Administrations-Dashboard und -Werkzeuge zulassen",
"Can edit roles" : "Kann Rollen bearbeiten",
"Allow creating, editing and deleting roles" : "Erstellen, Bearbeiten und Löschen von Rollen zulassen",
"Can edit categories" : "Kann Kategorien bearbeiten",
"Allow creating, editing and deleting categories" : "Erstellen, Bearbeiten und Löschen von Kategorien zulassen",
"Category permissions" : "Kategorieberechtigungen",
"Category" : "Kategorie",
"Can view" : "Kann ansehen",
"Can moderate" : "Kann moderieren",
"Allow" : "Zulassen",
"No categories available" : "Keine Kategorien verfügbar",
"Admin role must have all permissions enabled" : "Für die Administrationsrolle müssen alle Berechtigungen aktiviert sein",
"Admin role has full access to all categories" : "Die Administrationsrolle hat vollen Zugriff auf alle Kategorien",
"Guest role cannot have admin permissions" : "Die Gastrolle darf keine Administrationsberechtigungen haben",
"Guest role cannot moderate categories" : "Die Gastrolle darf Kategorien nicht moderieren",
"Guest access is currently disabled" : "Gastzugriff ist aktuell deaktiviert",
"Go to forum settings" : "Zu den Foreneinstellungen gehen",
"Default role cannot moderate categories" : "Die Standardrolle darf Kategorien nicht moderieren",
"Role management" : "Rollenverwaltung",
"Create and manage forum roles and permissions" : "Forumsrollen und -berechtigungen erstellen und verwalten",
"Loading roles …" : "Lade Rollen …",
"Error loading roles" : "Fehler beim Laden der Rollen",
"No roles found" : "Keine Rollen gefunden",
"Create your first role to get started" : "Zum Beginnen, eine erste Rolle erstellen",
"ID" : "ID",
"Created" : "Erstellt",
"Actions" : "Aktionen",
"No description" : "Keine Beschreibung",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Soll die Rolle \"{name}\" gelöscht werden? Dies kann nicht rückgängig gemacht werden.",
"System roles cannot be deleted" : "Systemrollen können nicht gelöscht werden",
"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",
"Posts" : "Beiträge",
"Joined" : "Beigetreten",
"Status" : "Status",
"Active" : "Aktiv",
"Deleted" : "Gelöscht",
"No roles" : "Keine Rollen",
"Select roles" : "Rollen auswählen",
"Edit roles" : "Rollen bearbeiten",
"Edit user roles" : "Benutzerrollen bearbeiten"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

402
l10n/de_DE.js Normal file
View File

@@ -0,0 +1,402 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administration",
"Administrator role with full permissions" : "Administrationsrolle mit vollen Berechtigungen",
"Moderator" : "Moderation",
"Moderator role with elevated permissions" : "Moderatorenrolle mit erweiterten Berechtigungen",
"User" : "Benutzer",
"Default user role with basic permissions" : "Standardbenutzerrolle mit grundlegenden Berechtigungen",
"Guest" : "Gast",
"Guest role for unauthenticated users with read-only access" : "Gastrolle für nicht angemeldete Benutzer mit schreibgeschütztem Zugriff",
"General" : "Allgemein",
"General discussion categories" : "Kategorien für Allgemeine Diskussionen",
"General discussions" : "Allgemeine Diskussionen",
"A place for general conversations and discussions" : "Ein Ort für allgemeine Gespräche und Diskussionen",
"Support" : "Support",
"Ask questions about the forum, provide feedback or report issues." : "Fragen zum Forum stellen, Feedback geben oder Probleme melden.",
"Inline code" : "Inline-Code",
"Spoiler title" : "Spoiler-Titel",
"Hidden content" : "Versteckter Inhalt",
"Spoilers" : "Spoilerwarnung",
"Attachment" : "Anhang",
"Welcome to Nextcloud Forums" : "Willkommen in den Nextcloud Foren",
"Welcome to the Nextcloud Forums!" : "Willkommen in den Nextcloud Foren!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Dies ist ein Community-Forum, das direkt in Ihre Nextcloud-Instanz integriert ist. Hier können Sie Themen diskutieren, Ideen austauschen und mit anderen Nutzern zusammenarbeiten.",
"Features:" : "Funktionen:",
"Create and reply to threads" : "Threads erstellen und beantworten",
"Organize discussions by categories" : "Die Diskussionen nach Kategorien ordnen",
"Use BBCode for rich text formatting" : "BBCode für Rich-Text-Formatierung verwenden",
"Attach files from your Nextcloud storage" : "Dateien aus Ihrem Nextcloud-Speicher hinzufügen",
"React to posts" : "Auf Beiträge reagieren",
"Track read/unread threads" : "Gelesene/ungelesene Threads verfolgen",
"BBCode examples:" : "BBCode-Beispiele:",
"Bold text" : "Fetter Text",
"Use %1$stext%2$s" : "%1$sText%2$s verwenden",
"Italic text" : "Kursiver Text",
"Underlined text" : "Unterstrichener Text",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Gerne eine neue Diskussion starten oder auf bestehende Beiträge antworten. Viel Spaß beim Posten!",
"Forum" : "Forum",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} neue Antwort in {thread}","{count} neue Antworten in {thread}"],
"Welcome to the forum!" : "Willkommen in den Nextcloud Foren!",
"Deleted user" : "Gelöschter Benutzer",
"A community-driven forum built right into your Nextcloud instance" : "Ein Community-basiertes Forum, das direkt in Ihre Nextcloud-Instanz integriert ist.",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Diskussionen starten, Ideen austauschen und direkt in Nextcloud mit der Community zusammenarbeiten.\n\n**⚠️ Hinweis zur frühen Entwicklungsphase:** \nDiese App befindet sich in einer frühen Entwicklungsphase. Sie ist zwar funktionsfähig, es können jedoch Fehler oder unvollständige Funktionen auftreten. Bitte melden Sie alle Probleme auf GitHub und erstellen Sie regelmäßig Backups Ihrer Daten.\n\n**Hauptfunktionen:**\n- **Themenbasierte Diskussionen** Organisierte Diskussionsthemen erstellen und beantworten\n- **Kategorieorganisation** Das Forum mit anpassbaren Kategorien und Überschriften strukturieren.\n- **Rich-Text-Formatierung** BBCode verwenden, um Beiträge mit Fettdruck, Kursivschrift, Links, Bildern, Codeblöcken und mehr zu formatieren.\n- **Dateianhänge** Dateien aus dem Nextcloud-Speicher an Beiträge anhängen.\n- **Reaktionen auf Beiträge** Mit Emojis auf Beiträge reagieren.\n- **Lese-/Ungelesen-Status** Den Überblick darüber behalten, welche Threads bereits gelesen wurden.\n- **Suche** Diskussionen schnell mit der integrierten Suche finden.\n- **Benutzerprofile** Den Beitragsverlauf und die Statistiken der Benutzer ansehen.\n- **Rollenbasierte Berechtigungen** Den Zugriff und die Moderation mit flexiblen Rollen steuern.\n- **Gastzugriff**: Optionaler öffentlicher Zugriff für nicht authentifizierte Benutzer mit konfigurierbaren Berechtigungen.\n- **Admin-Tools** Kategorien, Rollen, BBCodes und Forumseinstellungen verwalten.\n- **Moderations-Tools** Themen und Beiträge anheften, sperren und verwalten.\n\n**Perfekt für:**\n- Teamdiskussionen und Zusammenarbeit\n- Community-Foren\n- Supportkanäle\n- Wissensdatenbanken\n- Projektdiskussionen\n- Interne Kommunikation\n\nDas Forum integriert sich nahtlos in die Nextcloud-Instanz und nutzt die bestehenden Benutzer und Gruppen für die Anmeldung und die Zugriffskontrolle.",
"Search" : "Suche",
"Home" : "Startseite",
"User preferences" : "Benutzereinstellungen",
"Dashboard" : "Dashboard",
"Forum settings" : "Forumeinstellungen",
"Users" : "Personen",
"Roles" : "Rollen",
"Categories" : "Kategorien",
"BBCodes" : "BBCodes",
"Expand" : "Erweitern",
"Collapse" : "Zuklappen",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Bitte beachten:{bEnd} Angehängte Dateien sind für alle im Forum sichtbar, unabhängig von den Freigabeeinstellungen der Datei.",
"Drop file here to upload" : "Datei zum Hochladen hier fallen lassen",
"Hello world!" : "Hallo Welt!",
"Hello moon!" : "Hallo Mond!",
"Font style bold" : "Schriftart fett",
"Font style italic" : "Schriftart kursiv",
"Font style struck through" : "Schriftart durchgestrichen",
"Font style underlined" : "Schriftart unterstrichen",
"Code" : "Quelltext",
"Email (clickable)" : "E-Mail (anklickbar)",
"URL (clickable)" : "URL (anklickbar)",
"Image (not clickable)" : "Bild (nicht anklickbar)",
"Quote" : "Zitat",
"Embedded YouTube video" : "Eingebettetes YouTube-Video",
"Font (name)" : "Schriftart (Name)",
"Font size" : "Schriftgröße",
"Font color" : "Schriftfarbe",
"Align left" : "Linksbündig ausrichten",
"Align center" : "Zentriert ausrichten",
"Align right" : "Rechtsbündig ausrichten",
"List" : "Liste",
"List item within a list" : "Listenelement innerhalb einer Liste",
"List item within a list (alias)" : "Listenelement innerhalb einer Liste (Alias)",
"BBCode help" : "BBCode-Hilfe",
"Built-in BBCodes" : "Vorgefertigte BBCodes",
"These BBCodes are available by default." : "Diese BBCodes sind standardmäßig verfügbar.",
"Custom BBCodes" : "Maßgeschneiderte BBCodes",
"These BBCodes are custom to this forum and configured by administrators." : "Diese BBCodes sind an dieses Forum angepasst und werden von der Administration konfiguriert.",
"Example" : "Beispiel",
"Replacement" : "Ersatz",
"Loading custom BBCodes …" : "Lade benutzerdefinierte BBCodes …",
"No custom BBCodes configured." : "Keine benutzerdefinierten BBCodes eingerichtet.",
"Failed to load custom BBCodes" : "Benutzerdefinierter BBCodes konnten nicht geladen werden.",
"Insert emoji" : "Emoji einfügen",
"Pick file from Nextcloud" : "Datei aus Nextcloud auswählen",
"Upload file to Nextcloud" : "Datei in Nextcloud hochladen",
"Uploading file …" : "Lade Datei hoch …",
"Upload failed" : "Hochladen fehlgeschlagen",
"Close" : "Schließen",
"Pick a file to attach" : "Wähle eine Datei zum Anhängen aus",
"Failed to upload file" : "Datei konnte nicht hochgeladen werden",
"_Thread_::_Threads_" : ["Thema","Themen"],
"_Post_::_Posts_" : ["Beitrag","Beiträge"],
"No description available" : "Keine Beschreibung verfügbar",
"Create category header" : "Kategorieüberschrift erstellen",
"Edit category header" : "Kategorieüberschrift bearbeiten",
"Header name" : "Name der Überschrift",
"Enter header name" : "Überschriftsnamen eingeben",
"Header description" : "Überschriftsbeschreibung",
"Enter header description (optional)" : "Überschriftsbeschreibung eingeben (Optional)",
"Sort order" : "Sortierung",
"Lower numbers appear first" : "Niedrigere Zahlen erscheinen zuerst",
"Cancel" : "Abbrechen",
"Create" : "Erstellen",
"Update" : "Aktualisieren",
"Move thread to category" : "Thema in Kategorie verschieben",
"Select the category to move this thread to:" : "Die Kategorie auswählen, zu der dieses Thema verschoben werden soll:",
"Select a category …" : "Eine Kategorie auswählen …",
"Loading categories …" : "Lade Kategorien …",
"Move" : "Verschieben",
"This thread is already in this category." : "Dieses Thema befindet sich bereits in dieser Kategorie.",
"Failed to load categories" : "Kategorien konnten nicht geladen werden",
"Page not found" : "Seite nicht gefunden",
"The page you are looking for could not be found." : "Die gesuchte Seite konnte nicht gefunden werden.",
"Back" : "Zurück",
"Go to home" : "Zur Startseite",
"Edited" : "Bearbeitet",
"Quote reply" : "Antwort zitieren",
"Edit" : "Bearbeiten",
"Delete" : "Löschen",
"Are you sure you want to delete this post? This action cannot be undone." : "Soll dieser Beitrag wirklich gelöscht werden? Diese Aktion kann nicht rückgängig gemacht werden.",
"Unread" : "Ungelesen",
"Edit your post …" : "Ihren Beitrag bearbeiten …",
"Save" : "Speichern",
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
"Add reaction" : "Reaktion hinzufügen",
"React with {emoji}" : "Mit {emoji} reagieren",
"You reacted with {emoji}" : "Sie haben mit {emoji} reagiert",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Sie und %n Anderer haben mit {emoji} reagiert","Sie und %n Andere haben mit {emoji} reagiert"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n Person hat mit {emoji} reagiert","%n Personen haben mit {emoji} reagiert"],
"Write your reply …" : "Schreibe deine Antwort ...",
"Post reply" : "Antwort senden",
"Are you sure you want to discard your reply?" : "Soll Ihre Antwort wirklich verworfen werden?",
"In thread" : "Im Thema",
"Thread unavailable" : "Thema nicht verfügbar",
"Pinned thread" : "Angeheftetes Thema",
"Locked thread" : "Gesperrtes Thema",
"Uncategorized" : "Ohne Kategorie",
"_%n post_::_%n posts_" : ["%n Beitrag","%n Beiträge"],
"_%n view_::_%n views_" : ["%n Ansicht","%n Ansichten"],
"Replies" : "Antworten",
"Views" : "Ansichten",
"Title" : "Titel",
"Enter thread title …" : "Titel des Themas eingeben …",
"Write your first post …" : "Ihren ersten Beitrag schreiben …",
"Create thread" : "Thema erstellen",
"Are you sure you want to discard this thread?" : "Soll dieses Thema verworfen werden?",
"Refresh" : "Aktualisieren",
"Loading …" : "Lade …",
"No categories yet" : "Bislang keine Kategorien",
"Categories will appear here once they are created." : "Kategorien tauchen hier auf, sobald sie angelegt wurden.",
"No categories in this section" : "Keine Kategorien in diesem Abschnitt",
"Category not found" : "Kategorie nicht gefunden",
"The category you are looking for does not exist or has been removed." : "Die gesuchte Kategorie existiert nicht oder wurde entfernt.",
"Back to categories" : "Zurück zu Kategorien",
"New thread" : "Neues Thema",
"Error loading category" : "Fehler beim Laden der Kategorie",
"No threads yet" : "Bislang keine Themen",
"Be the first to start a discussion in this category." : "Seien Sie der Erste, der eine Diskussion in dieser Kategorie beginnt.",
"Retry" : "Wiederholen",
"_Showing %n thread_::_Showing %n threads_" : ["Zeige %n Thema an","Zeige %n Themen an"],
"An unexpected error occurred" : "Ein unerwarteter Fehler ist eingetreten",
"Failed to load threads" : "Themen konnten nicht geladen werden",
"Create New Thread" : "Ein neues Thema erstellen",
"In {category}" : "In {category}",
"Creating thread …" : "Erstelle Thema …",
"Thread created" : "Thema erstellt",
"Failed to create thread" : "Fehler beim Erstellen des Themas",
"No category specified" : "Keine Kategorie angegeben",
"Error" : "Fehler",
"First post" : "Erster Beitrag",
"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 posted any replies yet" : "Dieser Benutzer hat bislang noch keine Antwort gepostet",
"Failed to load user profile" : "Benutzerprofil konnte nicht geladen werden",
"Enter search query …" : "Suchanfrage eingeben ...",
"Search in threads" : "In Themen suchen",
"Search in posts" : "Suche in Beiträgen",
"Syntax help" : "Syntaxhilfe",
"Search syntax" : "Syntax suchen",
"Group conditions with parentheses" : "Bedingungen mit Klammern gruppieren",
"Searching …" : "Suche …",
"Search Error" : "Suchfehler",
"Enter a search query" : "Eine Suchabfrage eingeben",
"Use the search box above to find threads and posts" : "Um Themen und Beiträge zu finden, die Box oben verwenden",
"No results found" : "Keine Ergebnisse gefunden",
"_%n thread found_::_%n threads found_" : ["%n Thema gefunden","%n Themen gefunden"],
"_%n post found_::_%n posts found_" : ["%n Beitrag gefunden","%n Beiträge gefunden"],
"Please enter a search query" : "Bitte gib eine Suchanfrage ein",
"Failed to search" : "Suche fehlgeschlagen",
"Thread not found" : "Thema nicht gefunden",
"The thread you are looking for does not exist or has been removed." : "Das gesuchte Thema existiert nicht oder wurde entfernt.",
"Back to {category}" : "Zurück zu {category}",
"Reply" : "Antwort",
"Error loading thread" : "Fehler beim Laden des Themas",
"No posts yet" : "Bislang keine Beträge",
"Be the first to post in this thread." : "Seien Sie der Erste, der in diesem Thema einen Beitrag erstellt.",
"by" : "von",
"This thread is locked. Only moderators can post replies." : "Dieses Thema ist gesperrt. Nur Moderatoren können Antworten posten.",
"You must be signed in to reply to this thread." : "Sie müssen angemeldet sein, um auf dieses Thema zu antworten.",
"Sign in to reply" : "Anmelden um zu antworten",
"_Showing %n post_::_Showing %n posts_" : ["Angezeigt wird %n Beitrag","Angezeigt werden %n Beiträge"],
"Lock thread" : "Thema sperren",
"Unlock thread" : "Thema entsperren",
"Pin thread" : "Thema anheften",
"Unpin thread" : "Thema lösen",
"Thread locked" : "Thema gesperrt",
"Thread unlocked" : "Thema entsperrt",
"Thread pinned" : "Thema angeheftet",
"Thread unpinned" : "Thema abgelöst",
"Subscribe" : "Abonnieren",
"Subscribed" : "Abonniert",
"Subscribed to thread" : "Thema abonniert",
"Unsubscribed from thread" : "Thema abbestellt",
"Edit title" : "Titel bearbeiten",
"Save title" : "Titel speichern",
"Thread title updated" : "Titel des Themas aktualisiert",
"Move thread" : "Unterhaltung verschieben",
"Thread moved successfully" : "Thema verschoben",
"Failed to load posts" : "Beiträge konnten nicht geladen werden",
"Post updated" : "Beitrag aktualisiert",
"Failed to update post" : "Beitrag konnte nicht aktualisiert werden",
"Thread deleted" : "Thema gelöscht",
"Post deleted" : "Beitrag gelöscht",
"Failed to delete post" : "Beitrag konnte nicht gelöscht werden",
"Failed to update thread lock status" : "Themen-Sperrstatus konnte nicht aktualisiert werden",
"Failed to update thread pin status" : "Themen-Anheftestatus konnte nicht aktualisiert werden",
"Failed to update subscription" : "Das Abonnement 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",
"Notifications" : "Benachrichtigungen",
"Auto-subscribe to threads I create" : "Themen die ich erstellt habe, automatisch abonnieren",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Wenn diese Option aktiviert ist, erhalten Sie automatisch Benachrichtigungen für Antworten auf von Ihnen erstellte Themen",
"Files" : "Dateien",
"Configure file upload settings" : "Einstellungen für das Hochladen von Dateien",
"Upload directory" : "Hochladeverzeichnis",
"Browse" : "Durchsuchen",
"Preferences saved" : "Einstellungen gespeichert",
"Failed to save preferences" : "Sichern der Einstellungen fehlgeschlagen",
"Select upload directory" : "Hochladeverzeichnis auswählen",
"BBCode management" : "BBCode-Verwaltung",
"Error loading BBCodes" : "Fehler beim Laden der BBCodes",
"Create BBCode" : "BBCode erstellen",
"Enable" : "Aktivieren",
"Disable" : "Deaktivieren",
"Enabled BBCodes" : "Aktivierte BBCodes",
"Disabled BBCodes" : "Deaktivierte BBCodes",
"No enabled BBCodes" : "Keine aktivierten BBCodes",
"Delete BBCode" : "BBCode löschen",
"This action cannot be undone." : "Dies kann nicht rückgängig gemacht werden.",
"Edit BBCode" : "BBCode editieren",
"Tag" : "Schlagwort",
"e.g., b, i, url, color" : "Z. B. b, i, url, color",
"HTML replacement" : "HTML-Ersetzung",
"Description" : "Beschreibung",
"Enabled" : "Aktiviert",
"Create category" : "Kategorie erstellen",
"Edit category" : "Kategorie bearbeiten",
"Configure category details" : "Kategoriedetails konfigurieren",
"Basic information" : "Grundlegende Information",
"Category header" : "Kategorieüberschrift",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Name" : "Name",
"Enter category name" : "Kategorienamen eingeben",
"Enter category description (optional)" : "Kategoriebeschreibung eingeben (Optional)",
"New" : "Neu",
"Permissions" : "Berechtigungen",
"Roles that can view" : "Rollen, die ansehen können",
"Select roles that can view this category and its threads" : "Rollen auswählen, die dieses Thema und seine Beiträge anzeigen können",
"Roles that can moderate" : "Rollen mit Moderationsberechtigung",
"Select roles that can moderate (edit/delete) content in this category" : "Rollen auswählen, die Inhalte in dieser Kategorie moderieren (bearbeiten/löschen) können",
"Select roles …" : "Rollen auswählen ...",
"Error loading categories" : "Kategorien laden fehlgeschlagen",
"No categories in this header" : "Keine Kategorien in dieser Überschrift",
"Delete category" : "Kategorie löschen",
"Are you sure you want to delete the category \"{name}\"?" : "Soll die Kategorie \"{name}\" gelöscht werden?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Diese Kategorie enthält %n Thema.","Diese Kategorie enthält %n Themen."],
"What should happen to the threads?" : "Was soll mit den Themen geschehen?",
"Move threads to another category" : "Themen in eine andere Kategorie verschieben",
"Delete all threads (soft delete)" : "Alle Themen löschen (Weiches Löschen)",
"Threads will be hidden but not permanently deleted" : "Themen werden verborgen, aber nicht dauerhaft gelöscht",
"Select target category" : "Zielkategorie auswählen",
"-- Select a category --" : "-- Eine Kategorie auswählen --",
"Create header" : "Überschrift erstellen",
"_%n category_::_%n categories_" : ["%n Kategorie","%n Kategorien"],
"_%n thread_::_%n threads_" : ["%n Thema","%n Themen"],
"Delete header" : "Überschrift löschen",
"Are you sure you want to delete the header \"{name}\"?" : "Soll die Überschrift \"{name}\" gelöscht werden?",
"_This header contains %n category._::_This header contains %n categories._" : ["Diese Überschrift enthält %n Kategorie.","Diese Überschrift enthält %n Kategorien."],
"This action cannot be undone" : "Dies kann nicht rückgängig gemacht werden.",
"What should happen to the categories?" : "Was soll mit den Themen geschehen?",
"Move categories to another header" : "Kategorien zu einer anderen Überschrift verschieben",
"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",
"Move up" : "Nach oben verschieben",
"Move down" : "Nach unten verschieben",
"Admin dashboard" : "Administrationsdashboard",
"Overview of forum activity and statistics" : "Übersicht der Forenaktivitäten und Statistiken",
"Loading statistics …" : "Lade Statistiken …",
"Error loading dashboard" : "Fehler beim Laden des Dashboards",
"Total statistics" : "Gesamtstatistik",
"Total users" : "Benutzer gesamt",
"Total threads" : "Themen insgesamt",
"Total posts" : "Beiträge insgesamt",
"Total categories" : "Kategorien insgesamt",
"Recent activity (last 7 days)" : "Neueste Aktivitäten (letzte 7 Tage)",
"New users" : "Neue Benutzer",
"New threads" : "Neue Themen",
"New posts" : "Neue Beiträge",
"Top contributors" : "Top-Beitragende",
"No contributors yet" : "Bislang keine Beitragende",
"Last 7 days" : "Die letzten 7 Tage",
"All time" : "Gesamte Zeit",
"General settings" : "Allgemeine Einstellungen",
"Configure general forum settings" : "Allgemeine Foreneinstellungen konfigurieren",
"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",
"Welcome to the forum" : "Willkommen im Forum",
"A brief description shown below the title" : "Eine kurze Beschreibung, die unter dem Titel angezeigt wird",
"Access control" : "Zugriffskontrolle",
"Manage who can access the forum" : "Verwalten, wer auf das Forum zugreifen darf",
"Allow guest access" : "Gästen den Zugriff gestatten",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Wenn diese Option aktiviert ist, können nicht angemeldete Benutzer Forumsinhalte im schreibgeschützten Modus ansehen",
"Settings saved" : "Einstellungen gespeichert",
"Failed to save settings" : "Einstellungen konnten nicht gespeichert werden",
"Create role" : "Rolle erstellen",
"Edit role" : "Rolle bearbeiten",
"Error loading role" : "Fehler beim Laden der Rolle",
"Enter role name" : "Rollenname eingeben",
"Enter role description (optional)" : "Rollenbeschreibung eingeben (Optional)",
"Colors" : "Farben",
"Light mode color" : "Farbe für den hellen Modus",
"Dark mode color" : "Farbe für den dunklen Modus",
"Reset" : "Zurücksetzen",
"Role permissions" : "Rollenberechtigungen",
"Set global permissions for this role" : "Globale Berechtigungen für diese Rolle festlegen",
"Can access admin tools" : "Kann auf die Administrationswerkzeuge zugreifen",
"Allow access to the admin dashboard and tools" : "Zugriff auf das Administrations-Dashboard und -Werkzeuge zulassen",
"Can edit roles" : "Kann Rollen bearbeiten",
"Allow creating, editing and deleting roles" : "Erstellen, Bearbeiten und Löschen von Rollen zulassen",
"Can edit categories" : "Kann Kategorien bearbeiten",
"Allow creating, editing and deleting categories" : "Erstellen, Bearbeiten und Löschen von Kategorien zulassen",
"Category permissions" : "Kategorieberechtigungen",
"Category" : "Kategorie",
"Can view" : "Kann ansehen",
"Can moderate" : "Kann moderieren",
"Allow" : "Zulassen",
"No categories available" : "Keine Kategorien verfügbar",
"Admin role must have all permissions enabled" : "Für die Administrationsrolle müssen alle Berechtigungen aktiviert sein",
"Admin role has full access to all categories" : "Die Administrationsrolle hat vollen Zugriff auf alle Kategorien",
"Guest role cannot have admin permissions" : "Die Gastrolle darf keine Administrationsberechtigungen haben",
"Guest role cannot moderate categories" : "Die Gastrolle darf Kategorien nicht moderieren",
"Guest access is currently disabled" : "Gastzugriff ist aktuell deaktiviert",
"Go to forum settings" : "Zu den Foreneinstellungen gehen",
"Default role cannot moderate categories" : "Die Standardrolle darf Kategorien nicht moderieren",
"Role management" : "Rollenverwaltung",
"Create and manage forum roles and permissions" : "Forumsrollen und -berechtigungen erstellen und verwalten",
"Loading roles …" : "Lade Rollen …",
"Error loading roles" : "Fehler beim Laden der Rollen",
"No roles found" : "Keine Rollen gefunden",
"Create your first role to get started" : "Zum Beginnen, eine erste Rolle erstellen",
"ID" : "ID",
"Created" : "Erstellt",
"Actions" : "Aktionen",
"No description" : "Keine Beschreibung",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Soll die Rolle \"{name}\" gelöscht werden? Dies kann nicht rückgängig gemacht werden.",
"System roles cannot be deleted" : "Systemrollen können nicht gelöscht werden",
"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",
"Posts" : "Beiträge",
"Joined" : "Beigetreten",
"Status" : "Status",
"Active" : "Aktiv",
"Deleted" : "Gelöscht",
"No roles" : "Keine Rollen",
"Select roles" : "Rollen auswählen",
"Edit roles" : "Rollen bearbeiten",
"Edit user roles" : "Benutzerrollen bearbeiten"
},
"nplurals=2; plural=(n != 1);");

400
l10n/de_DE.json Normal file
View File

@@ -0,0 +1,400 @@
{ "translations": {
"Admin" : "Administration",
"Administrator role with full permissions" : "Administrationsrolle mit vollen Berechtigungen",
"Moderator" : "Moderation",
"Moderator role with elevated permissions" : "Moderatorenrolle mit erweiterten Berechtigungen",
"User" : "Benutzer",
"Default user role with basic permissions" : "Standardbenutzerrolle mit grundlegenden Berechtigungen",
"Guest" : "Gast",
"Guest role for unauthenticated users with read-only access" : "Gastrolle für nicht angemeldete Benutzer mit schreibgeschütztem Zugriff",
"General" : "Allgemein",
"General discussion categories" : "Kategorien für Allgemeine Diskussionen",
"General discussions" : "Allgemeine Diskussionen",
"A place for general conversations and discussions" : "Ein Ort für allgemeine Gespräche und Diskussionen",
"Support" : "Support",
"Ask questions about the forum, provide feedback or report issues." : "Fragen zum Forum stellen, Feedback geben oder Probleme melden.",
"Inline code" : "Inline-Code",
"Spoiler title" : "Spoiler-Titel",
"Hidden content" : "Versteckter Inhalt",
"Spoilers" : "Spoilerwarnung",
"Attachment" : "Anhang",
"Welcome to Nextcloud Forums" : "Willkommen in den Nextcloud Foren",
"Welcome to the Nextcloud Forums!" : "Willkommen in den Nextcloud Foren!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Dies ist ein Community-Forum, das direkt in Ihre Nextcloud-Instanz integriert ist. Hier können Sie Themen diskutieren, Ideen austauschen und mit anderen Nutzern zusammenarbeiten.",
"Features:" : "Funktionen:",
"Create and reply to threads" : "Threads erstellen und beantworten",
"Organize discussions by categories" : "Die Diskussionen nach Kategorien ordnen",
"Use BBCode for rich text formatting" : "BBCode für Rich-Text-Formatierung verwenden",
"Attach files from your Nextcloud storage" : "Dateien aus Ihrem Nextcloud-Speicher hinzufügen",
"React to posts" : "Auf Beiträge reagieren",
"Track read/unread threads" : "Gelesene/ungelesene Threads verfolgen",
"BBCode examples:" : "BBCode-Beispiele:",
"Bold text" : "Fetter Text",
"Use %1$stext%2$s" : "%1$sText%2$s verwenden",
"Italic text" : "Kursiver Text",
"Underlined text" : "Unterstrichener Text",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Gerne eine neue Diskussion starten oder auf bestehende Beiträge antworten. Viel Spaß beim Posten!",
"Forum" : "Forum",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} neue Antwort in {thread}","{count} neue Antworten in {thread}"],
"Welcome to the forum!" : "Willkommen in den Nextcloud Foren!",
"Deleted user" : "Gelöschter Benutzer",
"A community-driven forum built right into your Nextcloud instance" : "Ein Community-basiertes Forum, das direkt in Ihre Nextcloud-Instanz integriert ist.",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Diskussionen starten, Ideen austauschen und direkt in Nextcloud mit der Community zusammenarbeiten.\n\n**⚠️ Hinweis zur frühen Entwicklungsphase:** \nDiese App befindet sich in einer frühen Entwicklungsphase. Sie ist zwar funktionsfähig, es können jedoch Fehler oder unvollständige Funktionen auftreten. Bitte melden Sie alle Probleme auf GitHub und erstellen Sie regelmäßig Backups Ihrer Daten.\n\n**Hauptfunktionen:**\n- **Themenbasierte Diskussionen** Organisierte Diskussionsthemen erstellen und beantworten\n- **Kategorieorganisation** Das Forum mit anpassbaren Kategorien und Überschriften strukturieren.\n- **Rich-Text-Formatierung** BBCode verwenden, um Beiträge mit Fettdruck, Kursivschrift, Links, Bildern, Codeblöcken und mehr zu formatieren.\n- **Dateianhänge** Dateien aus dem Nextcloud-Speicher an Beiträge anhängen.\n- **Reaktionen auf Beiträge** Mit Emojis auf Beiträge reagieren.\n- **Lese-/Ungelesen-Status** Den Überblick darüber behalten, welche Threads bereits gelesen wurden.\n- **Suche** Diskussionen schnell mit der integrierten Suche finden.\n- **Benutzerprofile** Den Beitragsverlauf und die Statistiken der Benutzer ansehen.\n- **Rollenbasierte Berechtigungen** Den Zugriff und die Moderation mit flexiblen Rollen steuern.\n- **Gastzugriff**: Optionaler öffentlicher Zugriff für nicht authentifizierte Benutzer mit konfigurierbaren Berechtigungen.\n- **Admin-Tools** Kategorien, Rollen, BBCodes und Forumseinstellungen verwalten.\n- **Moderations-Tools** Themen und Beiträge anheften, sperren und verwalten.\n\n**Perfekt für:**\n- Teamdiskussionen und Zusammenarbeit\n- Community-Foren\n- Supportkanäle\n- Wissensdatenbanken\n- Projektdiskussionen\n- Interne Kommunikation\n\nDas Forum integriert sich nahtlos in die Nextcloud-Instanz und nutzt die bestehenden Benutzer und Gruppen für die Anmeldung und die Zugriffskontrolle.",
"Search" : "Suche",
"Home" : "Startseite",
"User preferences" : "Benutzereinstellungen",
"Dashboard" : "Dashboard",
"Forum settings" : "Forumeinstellungen",
"Users" : "Personen",
"Roles" : "Rollen",
"Categories" : "Kategorien",
"BBCodes" : "BBCodes",
"Expand" : "Erweitern",
"Collapse" : "Zuklappen",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Bitte beachten:{bEnd} Angehängte Dateien sind für alle im Forum sichtbar, unabhängig von den Freigabeeinstellungen der Datei.",
"Drop file here to upload" : "Datei zum Hochladen hier fallen lassen",
"Hello world!" : "Hallo Welt!",
"Hello moon!" : "Hallo Mond!",
"Font style bold" : "Schriftart fett",
"Font style italic" : "Schriftart kursiv",
"Font style struck through" : "Schriftart durchgestrichen",
"Font style underlined" : "Schriftart unterstrichen",
"Code" : "Quelltext",
"Email (clickable)" : "E-Mail (anklickbar)",
"URL (clickable)" : "URL (anklickbar)",
"Image (not clickable)" : "Bild (nicht anklickbar)",
"Quote" : "Zitat",
"Embedded YouTube video" : "Eingebettetes YouTube-Video",
"Font (name)" : "Schriftart (Name)",
"Font size" : "Schriftgröße",
"Font color" : "Schriftfarbe",
"Align left" : "Linksbündig ausrichten",
"Align center" : "Zentriert ausrichten",
"Align right" : "Rechtsbündig ausrichten",
"List" : "Liste",
"List item within a list" : "Listenelement innerhalb einer Liste",
"List item within a list (alias)" : "Listenelement innerhalb einer Liste (Alias)",
"BBCode help" : "BBCode-Hilfe",
"Built-in BBCodes" : "Vorgefertigte BBCodes",
"These BBCodes are available by default." : "Diese BBCodes sind standardmäßig verfügbar.",
"Custom BBCodes" : "Maßgeschneiderte BBCodes",
"These BBCodes are custom to this forum and configured by administrators." : "Diese BBCodes sind an dieses Forum angepasst und werden von der Administration konfiguriert.",
"Example" : "Beispiel",
"Replacement" : "Ersatz",
"Loading custom BBCodes …" : "Lade benutzerdefinierte BBCodes …",
"No custom BBCodes configured." : "Keine benutzerdefinierten BBCodes eingerichtet.",
"Failed to load custom BBCodes" : "Benutzerdefinierter BBCodes konnten nicht geladen werden.",
"Insert emoji" : "Emoji einfügen",
"Pick file from Nextcloud" : "Datei aus Nextcloud auswählen",
"Upload file to Nextcloud" : "Datei in Nextcloud hochladen",
"Uploading file …" : "Lade Datei hoch …",
"Upload failed" : "Hochladen fehlgeschlagen",
"Close" : "Schließen",
"Pick a file to attach" : "Wähle eine Datei zum Anhängen aus",
"Failed to upload file" : "Datei konnte nicht hochgeladen werden",
"_Thread_::_Threads_" : ["Thema","Themen"],
"_Post_::_Posts_" : ["Beitrag","Beiträge"],
"No description available" : "Keine Beschreibung verfügbar",
"Create category header" : "Kategorieüberschrift erstellen",
"Edit category header" : "Kategorieüberschrift bearbeiten",
"Header name" : "Name der Überschrift",
"Enter header name" : "Überschriftsnamen eingeben",
"Header description" : "Überschriftsbeschreibung",
"Enter header description (optional)" : "Überschriftsbeschreibung eingeben (Optional)",
"Sort order" : "Sortierung",
"Lower numbers appear first" : "Niedrigere Zahlen erscheinen zuerst",
"Cancel" : "Abbrechen",
"Create" : "Erstellen",
"Update" : "Aktualisieren",
"Move thread to category" : "Thema in Kategorie verschieben",
"Select the category to move this thread to:" : "Die Kategorie auswählen, zu der dieses Thema verschoben werden soll:",
"Select a category …" : "Eine Kategorie auswählen …",
"Loading categories …" : "Lade Kategorien …",
"Move" : "Verschieben",
"This thread is already in this category." : "Dieses Thema befindet sich bereits in dieser Kategorie.",
"Failed to load categories" : "Kategorien konnten nicht geladen werden",
"Page not found" : "Seite nicht gefunden",
"The page you are looking for could not be found." : "Die gesuchte Seite konnte nicht gefunden werden.",
"Back" : "Zurück",
"Go to home" : "Zur Startseite",
"Edited" : "Bearbeitet",
"Quote reply" : "Antwort zitieren",
"Edit" : "Bearbeiten",
"Delete" : "Löschen",
"Are you sure you want to delete this post? This action cannot be undone." : "Soll dieser Beitrag wirklich gelöscht werden? Diese Aktion kann nicht rückgängig gemacht werden.",
"Unread" : "Ungelesen",
"Edit your post …" : "Ihren Beitrag bearbeiten …",
"Save" : "Speichern",
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
"Add reaction" : "Reaktion hinzufügen",
"React with {emoji}" : "Mit {emoji} reagieren",
"You reacted with {emoji}" : "Sie haben mit {emoji} reagiert",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Sie und %n Anderer haben mit {emoji} reagiert","Sie und %n Andere haben mit {emoji} reagiert"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n Person hat mit {emoji} reagiert","%n Personen haben mit {emoji} reagiert"],
"Write your reply …" : "Schreibe deine Antwort ...",
"Post reply" : "Antwort senden",
"Are you sure you want to discard your reply?" : "Soll Ihre Antwort wirklich verworfen werden?",
"In thread" : "Im Thema",
"Thread unavailable" : "Thema nicht verfügbar",
"Pinned thread" : "Angeheftetes Thema",
"Locked thread" : "Gesperrtes Thema",
"Uncategorized" : "Ohne Kategorie",
"_%n post_::_%n posts_" : ["%n Beitrag","%n Beiträge"],
"_%n view_::_%n views_" : ["%n Ansicht","%n Ansichten"],
"Replies" : "Antworten",
"Views" : "Ansichten",
"Title" : "Titel",
"Enter thread title …" : "Titel des Themas eingeben …",
"Write your first post …" : "Ihren ersten Beitrag schreiben …",
"Create thread" : "Thema erstellen",
"Are you sure you want to discard this thread?" : "Soll dieses Thema verworfen werden?",
"Refresh" : "Aktualisieren",
"Loading …" : "Lade …",
"No categories yet" : "Bislang keine Kategorien",
"Categories will appear here once they are created." : "Kategorien tauchen hier auf, sobald sie angelegt wurden.",
"No categories in this section" : "Keine Kategorien in diesem Abschnitt",
"Category not found" : "Kategorie nicht gefunden",
"The category you are looking for does not exist or has been removed." : "Die gesuchte Kategorie existiert nicht oder wurde entfernt.",
"Back to categories" : "Zurück zu Kategorien",
"New thread" : "Neues Thema",
"Error loading category" : "Fehler beim Laden der Kategorie",
"No threads yet" : "Bislang keine Themen",
"Be the first to start a discussion in this category." : "Seien Sie der Erste, der eine Diskussion in dieser Kategorie beginnt.",
"Retry" : "Wiederholen",
"_Showing %n thread_::_Showing %n threads_" : ["Zeige %n Thema an","Zeige %n Themen an"],
"An unexpected error occurred" : "Ein unerwarteter Fehler ist eingetreten",
"Failed to load threads" : "Themen konnten nicht geladen werden",
"Create New Thread" : "Ein neues Thema erstellen",
"In {category}" : "In {category}",
"Creating thread …" : "Erstelle Thema …",
"Thread created" : "Thema erstellt",
"Failed to create thread" : "Fehler beim Erstellen des Themas",
"No category specified" : "Keine Kategorie angegeben",
"Error" : "Fehler",
"First post" : "Erster Beitrag",
"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 posted any replies yet" : "Dieser Benutzer hat bislang noch keine Antwort gepostet",
"Failed to load user profile" : "Benutzerprofil konnte nicht geladen werden",
"Enter search query …" : "Suchanfrage eingeben ...",
"Search in threads" : "In Themen suchen",
"Search in posts" : "Suche in Beiträgen",
"Syntax help" : "Syntaxhilfe",
"Search syntax" : "Syntax suchen",
"Group conditions with parentheses" : "Bedingungen mit Klammern gruppieren",
"Searching …" : "Suche …",
"Search Error" : "Suchfehler",
"Enter a search query" : "Eine Suchabfrage eingeben",
"Use the search box above to find threads and posts" : "Um Themen und Beiträge zu finden, die Box oben verwenden",
"No results found" : "Keine Ergebnisse gefunden",
"_%n thread found_::_%n threads found_" : ["%n Thema gefunden","%n Themen gefunden"],
"_%n post found_::_%n posts found_" : ["%n Beitrag gefunden","%n Beiträge gefunden"],
"Please enter a search query" : "Bitte gib eine Suchanfrage ein",
"Failed to search" : "Suche fehlgeschlagen",
"Thread not found" : "Thema nicht gefunden",
"The thread you are looking for does not exist or has been removed." : "Das gesuchte Thema existiert nicht oder wurde entfernt.",
"Back to {category}" : "Zurück zu {category}",
"Reply" : "Antwort",
"Error loading thread" : "Fehler beim Laden des Themas",
"No posts yet" : "Bislang keine Beträge",
"Be the first to post in this thread." : "Seien Sie der Erste, der in diesem Thema einen Beitrag erstellt.",
"by" : "von",
"This thread is locked. Only moderators can post replies." : "Dieses Thema ist gesperrt. Nur Moderatoren können Antworten posten.",
"You must be signed in to reply to this thread." : "Sie müssen angemeldet sein, um auf dieses Thema zu antworten.",
"Sign in to reply" : "Anmelden um zu antworten",
"_Showing %n post_::_Showing %n posts_" : ["Angezeigt wird %n Beitrag","Angezeigt werden %n Beiträge"],
"Lock thread" : "Thema sperren",
"Unlock thread" : "Thema entsperren",
"Pin thread" : "Thema anheften",
"Unpin thread" : "Thema lösen",
"Thread locked" : "Thema gesperrt",
"Thread unlocked" : "Thema entsperrt",
"Thread pinned" : "Thema angeheftet",
"Thread unpinned" : "Thema abgelöst",
"Subscribe" : "Abonnieren",
"Subscribed" : "Abonniert",
"Subscribed to thread" : "Thema abonniert",
"Unsubscribed from thread" : "Thema abbestellt",
"Edit title" : "Titel bearbeiten",
"Save title" : "Titel speichern",
"Thread title updated" : "Titel des Themas aktualisiert",
"Move thread" : "Unterhaltung verschieben",
"Thread moved successfully" : "Thema verschoben",
"Failed to load posts" : "Beiträge konnten nicht geladen werden",
"Post updated" : "Beitrag aktualisiert",
"Failed to update post" : "Beitrag konnte nicht aktualisiert werden",
"Thread deleted" : "Thema gelöscht",
"Post deleted" : "Beitrag gelöscht",
"Failed to delete post" : "Beitrag konnte nicht gelöscht werden",
"Failed to update thread lock status" : "Themen-Sperrstatus konnte nicht aktualisiert werden",
"Failed to update thread pin status" : "Themen-Anheftestatus konnte nicht aktualisiert werden",
"Failed to update subscription" : "Das Abonnement 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",
"Notifications" : "Benachrichtigungen",
"Auto-subscribe to threads I create" : "Themen die ich erstellt habe, automatisch abonnieren",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Wenn diese Option aktiviert ist, erhalten Sie automatisch Benachrichtigungen für Antworten auf von Ihnen erstellte Themen",
"Files" : "Dateien",
"Configure file upload settings" : "Einstellungen für das Hochladen von Dateien",
"Upload directory" : "Hochladeverzeichnis",
"Browse" : "Durchsuchen",
"Preferences saved" : "Einstellungen gespeichert",
"Failed to save preferences" : "Sichern der Einstellungen fehlgeschlagen",
"Select upload directory" : "Hochladeverzeichnis auswählen",
"BBCode management" : "BBCode-Verwaltung",
"Error loading BBCodes" : "Fehler beim Laden der BBCodes",
"Create BBCode" : "BBCode erstellen",
"Enable" : "Aktivieren",
"Disable" : "Deaktivieren",
"Enabled BBCodes" : "Aktivierte BBCodes",
"Disabled BBCodes" : "Deaktivierte BBCodes",
"No enabled BBCodes" : "Keine aktivierten BBCodes",
"Delete BBCode" : "BBCode löschen",
"This action cannot be undone." : "Dies kann nicht rückgängig gemacht werden.",
"Edit BBCode" : "BBCode editieren",
"Tag" : "Schlagwort",
"e.g., b, i, url, color" : "Z. B. b, i, url, color",
"HTML replacement" : "HTML-Ersetzung",
"Description" : "Beschreibung",
"Enabled" : "Aktiviert",
"Create category" : "Kategorie erstellen",
"Edit category" : "Kategorie bearbeiten",
"Configure category details" : "Kategoriedetails konfigurieren",
"Basic information" : "Grundlegende Information",
"Category header" : "Kategorieüberschrift",
"-- Select a header --" : "-- Eine Überschrift auswählen --",
"Name" : "Name",
"Enter category name" : "Kategorienamen eingeben",
"Enter category description (optional)" : "Kategoriebeschreibung eingeben (Optional)",
"New" : "Neu",
"Permissions" : "Berechtigungen",
"Roles that can view" : "Rollen, die ansehen können",
"Select roles that can view this category and its threads" : "Rollen auswählen, die dieses Thema und seine Beiträge anzeigen können",
"Roles that can moderate" : "Rollen mit Moderationsberechtigung",
"Select roles that can moderate (edit/delete) content in this category" : "Rollen auswählen, die Inhalte in dieser Kategorie moderieren (bearbeiten/löschen) können",
"Select roles …" : "Rollen auswählen ...",
"Error loading categories" : "Kategorien laden fehlgeschlagen",
"No categories in this header" : "Keine Kategorien in dieser Überschrift",
"Delete category" : "Kategorie löschen",
"Are you sure you want to delete the category \"{name}\"?" : "Soll die Kategorie \"{name}\" gelöscht werden?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Diese Kategorie enthält %n Thema.","Diese Kategorie enthält %n Themen."],
"What should happen to the threads?" : "Was soll mit den Themen geschehen?",
"Move threads to another category" : "Themen in eine andere Kategorie verschieben",
"Delete all threads (soft delete)" : "Alle Themen löschen (Weiches Löschen)",
"Threads will be hidden but not permanently deleted" : "Themen werden verborgen, aber nicht dauerhaft gelöscht",
"Select target category" : "Zielkategorie auswählen",
"-- Select a category --" : "-- Eine Kategorie auswählen --",
"Create header" : "Überschrift erstellen",
"_%n category_::_%n categories_" : ["%n Kategorie","%n Kategorien"],
"_%n thread_::_%n threads_" : ["%n Thema","%n Themen"],
"Delete header" : "Überschrift löschen",
"Are you sure you want to delete the header \"{name}\"?" : "Soll die Überschrift \"{name}\" gelöscht werden?",
"_This header contains %n category._::_This header contains %n categories._" : ["Diese Überschrift enthält %n Kategorie.","Diese Überschrift enthält %n Kategorien."],
"This action cannot be undone" : "Dies kann nicht rückgängig gemacht werden.",
"What should happen to the categories?" : "Was soll mit den Themen geschehen?",
"Move categories to another header" : "Kategorien zu einer anderen Überschrift verschieben",
"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",
"Move up" : "Nach oben verschieben",
"Move down" : "Nach unten verschieben",
"Admin dashboard" : "Administrationsdashboard",
"Overview of forum activity and statistics" : "Übersicht der Forenaktivitäten und Statistiken",
"Loading statistics …" : "Lade Statistiken …",
"Error loading dashboard" : "Fehler beim Laden des Dashboards",
"Total statistics" : "Gesamtstatistik",
"Total users" : "Benutzer gesamt",
"Total threads" : "Themen insgesamt",
"Total posts" : "Beiträge insgesamt",
"Total categories" : "Kategorien insgesamt",
"Recent activity (last 7 days)" : "Neueste Aktivitäten (letzte 7 Tage)",
"New users" : "Neue Benutzer",
"New threads" : "Neue Themen",
"New posts" : "Neue Beiträge",
"Top contributors" : "Top-Beitragende",
"No contributors yet" : "Bislang keine Beitragende",
"Last 7 days" : "Die letzten 7 Tage",
"All time" : "Gesamte Zeit",
"General settings" : "Allgemeine Einstellungen",
"Configure general forum settings" : "Allgemeine Foreneinstellungen konfigurieren",
"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",
"Welcome to the forum" : "Willkommen im Forum",
"A brief description shown below the title" : "Eine kurze Beschreibung, die unter dem Titel angezeigt wird",
"Access control" : "Zugriffskontrolle",
"Manage who can access the forum" : "Verwalten, wer auf das Forum zugreifen darf",
"Allow guest access" : "Gästen den Zugriff gestatten",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Wenn diese Option aktiviert ist, können nicht angemeldete Benutzer Forumsinhalte im schreibgeschützten Modus ansehen",
"Settings saved" : "Einstellungen gespeichert",
"Failed to save settings" : "Einstellungen konnten nicht gespeichert werden",
"Create role" : "Rolle erstellen",
"Edit role" : "Rolle bearbeiten",
"Error loading role" : "Fehler beim Laden der Rolle",
"Enter role name" : "Rollenname eingeben",
"Enter role description (optional)" : "Rollenbeschreibung eingeben (Optional)",
"Colors" : "Farben",
"Light mode color" : "Farbe für den hellen Modus",
"Dark mode color" : "Farbe für den dunklen Modus",
"Reset" : "Zurücksetzen",
"Role permissions" : "Rollenberechtigungen",
"Set global permissions for this role" : "Globale Berechtigungen für diese Rolle festlegen",
"Can access admin tools" : "Kann auf die Administrationswerkzeuge zugreifen",
"Allow access to the admin dashboard and tools" : "Zugriff auf das Administrations-Dashboard und -Werkzeuge zulassen",
"Can edit roles" : "Kann Rollen bearbeiten",
"Allow creating, editing and deleting roles" : "Erstellen, Bearbeiten und Löschen von Rollen zulassen",
"Can edit categories" : "Kann Kategorien bearbeiten",
"Allow creating, editing and deleting categories" : "Erstellen, Bearbeiten und Löschen von Kategorien zulassen",
"Category permissions" : "Kategorieberechtigungen",
"Category" : "Kategorie",
"Can view" : "Kann ansehen",
"Can moderate" : "Kann moderieren",
"Allow" : "Zulassen",
"No categories available" : "Keine Kategorien verfügbar",
"Admin role must have all permissions enabled" : "Für die Administrationsrolle müssen alle Berechtigungen aktiviert sein",
"Admin role has full access to all categories" : "Die Administrationsrolle hat vollen Zugriff auf alle Kategorien",
"Guest role cannot have admin permissions" : "Die Gastrolle darf keine Administrationsberechtigungen haben",
"Guest role cannot moderate categories" : "Die Gastrolle darf Kategorien nicht moderieren",
"Guest access is currently disabled" : "Gastzugriff ist aktuell deaktiviert",
"Go to forum settings" : "Zu den Foreneinstellungen gehen",
"Default role cannot moderate categories" : "Die Standardrolle darf Kategorien nicht moderieren",
"Role management" : "Rollenverwaltung",
"Create and manage forum roles and permissions" : "Forumsrollen und -berechtigungen erstellen und verwalten",
"Loading roles …" : "Lade Rollen …",
"Error loading roles" : "Fehler beim Laden der Rollen",
"No roles found" : "Keine Rollen gefunden",
"Create your first role to get started" : "Zum Beginnen, eine erste Rolle erstellen",
"ID" : "ID",
"Created" : "Erstellt",
"Actions" : "Aktionen",
"No description" : "Keine Beschreibung",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Soll die Rolle \"{name}\" gelöscht werden? Dies kann nicht rückgängig gemacht werden.",
"System roles cannot be deleted" : "Systemrollen können nicht gelöscht werden",
"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",
"Posts" : "Beiträge",
"Joined" : "Beigetreten",
"Status" : "Status",
"Active" : "Aktiv",
"Deleted" : "Gelöscht",
"No roles" : "Keine Rollen",
"Select roles" : "Rollen auswählen",
"Edit roles" : "Rollen bearbeiten",
"Edit user roles" : "Benutzerrollen bearbeiten"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

95
l10n/el.js Normal file
View File

@@ -0,0 +1,95 @@
OC.L10N.register(
"forum",
{
"Admin" : "Διαχειριστής",
"Moderator" : "Συντονιστής",
"User" : "Χρήστης",
"Guest" : "Επισκέπτης",
"General" : "Γενικά",
"Support" : "Υποστήριξη",
"Bold text" : "Εντονο Κείμενο",
"Underlined text" : "Υπογραμμισμένο κείμενο",
"Forum" : "Φόρουμ",
"Deleted user" : "Διαγραμμένος χρήστης",
"Search" : "Αναζήτηση",
"Home" : "Αρχική",
"Dashboard" : "Πίνακας ελέγχου",
"Users" : "Χρήστες",
"Categories" : "Κατηγορίες",
"Expand" : "Επεκτείνω",
"Collapse" : "Σύμπτυξη",
"Hello world!" : "Γεια σου κόσμε!",
"Code" : "Κώδικας",
"Quote" : "Προσφορά",
"Font size" : "Μέγεθος γραμματοσειράς",
"Align left" : "Στοίχιση αριστερά",
"Align center" : "Στοίχιση στο κέντρο",
"Align right" : "Στοίχιση δεξιά",
"List" : "Λίστα",
"Insert emoji" : "Εισαγωγή emoji",
"Close" : "Κλείσιμο",
"Failed to upload file" : "Αποτυχία μεταφόρτωσης αρχείου",
"Sort order" : "Σειρά ταξινόμησης",
"Cancel" : "Ακύρωση",
"Create" : "Δημιουργία",
"Update" : "Ενημέρωση",
"Move" : "Μετακίνηση",
"Page not found" : "Η σελίδα δεν βρέθηκε",
"Back" : "Επιστροφή",
"Edit" : "Επεξεργασία",
"Delete" : "Διαγραφή",
"Unread" : "Μη αναγνωσμένο",
"Save" : "Αποθήκευση",
"React with {emoji}" : "Αντίδραση με {emoji}",
"Uncategorized" : "Μή-κατηγοριοποιημένα",
"Views" : "Προβολές",
"Title" : "Τίτλος",
"Refresh" : "Ανανέωση",
"Loading …" : "Γίνεται φόρτωση…",
"Retry" : "Δοκιμή ξανά",
"In {category}" : "Στη συνομιλία {category}",
"Error" : "Σφάλμα",
"Searching …" : "Γίνεται αναζήτηση ...",
"No results found" : "Δεν βρέθηκαν αποτελέσματα",
"Back to {category}" : "Πίσω στο {category}",
"by" : "από",
"Subscribe" : "Εγγραφή",
"Subscribed" : "Εγγεγραμμένο",
"Edit title" : "Επεξεργασία τίτλου",
"Move thread" : "Μετακίνηση νήματος",
"Preferences" : "Προτιμήσεις",
"Notifications" : "Ειδοποιήσεις",
"Files" : "Αρχεία",
"Browse" : "Περιήγηση",
"Enable" : "Ενεργοποίηση",
"Disable" : "Απενεργοποίηση",
"This action cannot be undone." : "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.",
"Tag" : "Ετικέτα",
"Description" : "Περιγραφή",
"Enabled" : "Ενεργοποιημένο",
"Name" : "Όνομα",
"Enter category name" : "Εισάγετε όνομα κατηγορίας",
"New" : "Νέα",
"Permissions" : "Δικαιώματα",
"Move up" : "Μετακίνηση επάνω",
"Move down" : "Μετακίνηση Κάτω",
"Last 7 days" : "Τελευταίες 7 ημέρες",
"General settings" : "Γενικές ρυθμίσεις",
"Appearance" : "Εμφάνιση",
"Access control" : "Έλεγχος πρόσβασης",
"Settings saved" : "Οι ρυθμίσεις αποθηκεύτηκαν",
"Failed to save settings" : "Αποτυχία αποθήκευσης ρυθμίσεων",
"Reset" : "Επαναφορά",
"Category" : "Κατηγορία",
"Allow" : "Επιτρέπεται",
"ID" : "ID",
"Created" : "Δημιουργήθηκε",
"Actions" : "Ενέργειες",
"Loading users …" : "Φόρτωση χρηστών …",
"No users found" : "Δεν βρέθηκαν χρήστες",
"Joined" : "Συμμετέχετε",
"Status" : "Κατάσταση",
"Active" : "Ενεργό",
"Deleted" : "Διαγραμμένα"
},
"nplurals=2; plural=(n != 1);");

93
l10n/el.json Normal file
View File

@@ -0,0 +1,93 @@
{ "translations": {
"Admin" : "Διαχειριστής",
"Moderator" : "Συντονιστής",
"User" : "Χρήστης",
"Guest" : "Επισκέπτης",
"General" : "Γενικά",
"Support" : "Υποστήριξη",
"Bold text" : "Εντονο Κείμενο",
"Underlined text" : "Υπογραμμισμένο κείμενο",
"Forum" : "Φόρουμ",
"Deleted user" : "Διαγραμμένος χρήστης",
"Search" : "Αναζήτηση",
"Home" : "Αρχική",
"Dashboard" : "Πίνακας ελέγχου",
"Users" : "Χρήστες",
"Categories" : "Κατηγορίες",
"Expand" : "Επεκτείνω",
"Collapse" : "Σύμπτυξη",
"Hello world!" : "Γεια σου κόσμε!",
"Code" : "Κώδικας",
"Quote" : "Προσφορά",
"Font size" : "Μέγεθος γραμματοσειράς",
"Align left" : "Στοίχιση αριστερά",
"Align center" : "Στοίχιση στο κέντρο",
"Align right" : "Στοίχιση δεξιά",
"List" : "Λίστα",
"Insert emoji" : "Εισαγωγή emoji",
"Close" : "Κλείσιμο",
"Failed to upload file" : "Αποτυχία μεταφόρτωσης αρχείου",
"Sort order" : "Σειρά ταξινόμησης",
"Cancel" : "Ακύρωση",
"Create" : "Δημιουργία",
"Update" : "Ενημέρωση",
"Move" : "Μετακίνηση",
"Page not found" : "Η σελίδα δεν βρέθηκε",
"Back" : "Επιστροφή",
"Edit" : "Επεξεργασία",
"Delete" : "Διαγραφή",
"Unread" : "Μη αναγνωσμένο",
"Save" : "Αποθήκευση",
"React with {emoji}" : "Αντίδραση με {emoji}",
"Uncategorized" : "Μή-κατηγοριοποιημένα",
"Views" : "Προβολές",
"Title" : "Τίτλος",
"Refresh" : "Ανανέωση",
"Loading …" : "Γίνεται φόρτωση…",
"Retry" : "Δοκιμή ξανά",
"In {category}" : "Στη συνομιλία {category}",
"Error" : "Σφάλμα",
"Searching …" : "Γίνεται αναζήτηση ...",
"No results found" : "Δεν βρέθηκαν αποτελέσματα",
"Back to {category}" : "Πίσω στο {category}",
"by" : "από",
"Subscribe" : "Εγγραφή",
"Subscribed" : "Εγγεγραμμένο",
"Edit title" : "Επεξεργασία τίτλου",
"Move thread" : "Μετακίνηση νήματος",
"Preferences" : "Προτιμήσεις",
"Notifications" : "Ειδοποιήσεις",
"Files" : "Αρχεία",
"Browse" : "Περιήγηση",
"Enable" : "Ενεργοποίηση",
"Disable" : "Απενεργοποίηση",
"This action cannot be undone." : "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.",
"Tag" : "Ετικέτα",
"Description" : "Περιγραφή",
"Enabled" : "Ενεργοποιημένο",
"Name" : "Όνομα",
"Enter category name" : "Εισάγετε όνομα κατηγορίας",
"New" : "Νέα",
"Permissions" : "Δικαιώματα",
"Move up" : "Μετακίνηση επάνω",
"Move down" : "Μετακίνηση Κάτω",
"Last 7 days" : "Τελευταίες 7 ημέρες",
"General settings" : "Γενικές ρυθμίσεις",
"Appearance" : "Εμφάνιση",
"Access control" : "Έλεγχος πρόσβασης",
"Settings saved" : "Οι ρυθμίσεις αποθηκεύτηκαν",
"Failed to save settings" : "Αποτυχία αποθήκευσης ρυθμίσεων",
"Reset" : "Επαναφορά",
"Category" : "Κατηγορία",
"Allow" : "Επιτρέπεται",
"ID" : "ID",
"Created" : "Δημιουργήθηκε",
"Actions" : "Ενέργειες",
"Loading users …" : "Φόρτωση χρηστών …",
"No users found" : "Δεν βρέθηκαν χρήστες",
"Joined" : "Συμμετέχετε",
"Status" : "Κατάσταση",
"Active" : "Ενεργό",
"Deleted" : "Διαγραμμένα"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

412
l10n/en_GB.js Normal file
View File

@@ -0,0 +1,412 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"Administrator role with full permissions" : "Administrator role with full permissions",
"Moderator" : "Moderator",
"Moderator role with elevated permissions" : "Moderator role with elevated permissions",
"User" : "User",
"Default user role with basic permissions" : "Default user role with basic permissions",
"Guest" : "Guest",
"Guest role for unauthenticated users with read-only access" : "Guest role for unauthenticated users with read-only access",
"General" : "General",
"General discussion categories" : "General discussion categories",
"General discussions" : "General discussions",
"A place for general conversations and discussions" : "A place for general conversations and discussions",
"Support" : "Support",
"Ask questions about the forum, provide feedback or report issues." : "Ask questions about the forum, provide feedback or report issues.",
"Inline code" : "Inline code",
"Spoilers" : "Spoilers",
"Attachment" : "Attachment",
"Welcome to Nextcloud Forums" : "Welcome to Nextcloud Forums",
"Welcome to the Nextcloud Forums!" : "Welcome to the Nextcloud Forums!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users.",
"Features:" : "Features:",
"Create and reply to threads" : "Create and reply to threads",
"Organize discussions by categories" : "Organize discussions by categories",
"Use BBCode for rich text formatting" : "Use BBCode for rich text formatting",
"Attach files from your Nextcloud storage" : "Attach files from your Nextcloud storage",
"React to posts" : "React to posts",
"Track read/unread threads" : "Track read/unread threads",
"BBCode examples:" : "BBCode examples:",
"Bold text" : "Bold text",
"Use %1$stext%2$s" : "Use %1$stext%2$s",
"Italic text" : "Italic text",
"Underlined text" : "Underlined text",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Feel free to start a new discussion or reply to existing threads. Happy posting!",
"Forum" : "Forum",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} new reply in {thread}","{count} new replies in {thread}"],
"Welcome to the forum!" : "Welcome to the forum!",
"Deleted user" : "Deleted user",
"A community-driven forum built right into your Nextcloud instance" : "A community-driven forum built right into your Nextcloud instance",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control.",
"Search" : "Search",
"Home" : "Home",
"User preferences" : "User preferences",
"Dashboard" : "Dashboard",
"Forum settings" : "Forum settings",
"Users" : "Users",
"Roles" : "Roles",
"Categories" : "Categories",
"BBCodes" : "BBCodes",
"Expand" : "Expand",
"Collapse" : "Collapse",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings.",
"Hello world!" : "Hello world!",
"Font style bold" : "Font style bold",
"Font style italic" : "Font style italic",
"Font style struck through" : "Font style struck through",
"Font style underlined" : "Font style underlined",
"Code" : "Code",
"Email (clickable)" : "Email (clickable)",
"URL (clickable)" : "URL (clickable)",
"Image (not clickable)" : "Image (not clickable)",
"Quote" : "Quote",
"Embedded YouTube video" : "Embedded YouTube video",
"Font (name)" : "Font (name)",
"Font size" : "Font size",
"Font color" : "Font color",
"Align left" : "Align left",
"Align center" : "Align centre",
"Align right" : "Align right",
"List" : "List",
"List item within a list" : "List item within a list",
"List item within a list (alias)" : "List item within a list (alias)",
"BBCode help" : "BBCode help",
"Built-in BBCodes" : "Built-in BBCodes",
"These BBCodes are available by default." : "These BBCodes are available by default.",
"Custom BBCodes" : "Custom BBCodes",
"These BBCodes are custom to this forum and configured by administrators." : "These BBCodes are custom to this forum and configured by administrators.",
"Example" : "Example",
"Replacement" : "Replacement",
"Loading custom BBCodes …" : "Loading custom BBCodes …",
"No custom BBCodes configured." : "No custom BBCodes configured.",
"Failed to load custom BBCodes" : "Failed to load custom BBCodes",
"Insert emoji" : "Insert emoji",
"Upload failed" : "Upload failed",
"Close" : "Close",
"Pick a file to attach" : "Pick a file to attach",
"Failed to upload file" : "Failed to upload file",
"_Thread_::_Threads_" : ["Thread","Threads"],
"_Post_::_Posts_" : ["Post","Posts"],
"No description available" : "No description available",
"Create category header" : "Create category header",
"Edit category header" : "Edit category header",
"Header name" : "Header name",
"Enter header name" : "Enter header name",
"Header description" : "Header description",
"Enter header description (optional)" : "Enter header description (optional)",
"Sort order" : "Sort order",
"Lower numbers appear first" : "Lower numbers appear first",
"Cancel" : "Cancel",
"Create" : "Create",
"Update" : "Update",
"Move" : "Move",
"Page not found" : "Page not found",
"The page you are looking for could not be found." : "The page you are looking for could not be found.",
"Back" : "Back",
"Go to home" : "Go to home",
"Edited" : "Edited",
"Quote reply" : "Quote reply",
"Edit" : "Edit",
"Delete" : "Delete",
"Are you sure you want to delete this post? This action cannot be undone." : "Are you sure you want to delete this post? This action cannot be undone.",
"Unread" : "Unread",
"Edit your post …" : "Edit your post …",
"Save" : "Save",
"Are you sure you want to discard your changes?" : "Are you sure you want to discard your changes?",
"Add reaction" : "Add reaction",
"React with {emoji}" : "React with {emoji}",
"You reacted with {emoji}" : "You reacted with {emoji}",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["You and %n other reacted with {emoji}","You and %n others reacted with {emoji}"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n person reacted with {emoji}","%n people reacted with {emoji}"],
"Write your reply …" : "Write your reply …",
"Post reply" : "Post reply",
"Are you sure you want to discard your reply?" : "Are you sure you want to discard your reply?",
"In thread" : "In thread",
"Thread unavailable" : "Thread unavailable",
"Pinned thread" : "Pinned thread",
"Locked thread" : "Locked thread",
"Uncategorized" : "Uncategorised",
"_%n post_::_%n posts_" : ["%n post","%n posts"],
"_%n view_::_%n views_" : ["%n view","%n views"],
"Replies" : "Replies",
"Views" : "Views",
"Title" : "Title",
"Enter thread title …" : "Enter thread title …",
"Write your first post …" : "Write your first post …",
"Create thread" : "Create thread",
"Are you sure you want to discard this thread?" : "Are you sure you want to discard this thread?",
"Refresh" : "Refresh",
"Loading …" : "Loading …",
"No categories yet" : "No categories yet",
"Categories will appear here once they are created." : "Categories will appear here once they are created.",
"No categories in this section" : "No categories in this section",
"Category not found" : "Category not found",
"The category you are looking for does not exist or has been removed." : "The category you are looking for does not exist or has been removed.",
"Back to categories" : "Back to categories",
"New thread" : "New thread",
"Error loading category" : "Error loading category",
"No threads yet" : "No threads yet",
"Be the first to start a discussion in this category." : "Be the first to start a discussion in this category.",
"Retry" : "Retry",
"_Showing %n thread_::_Showing %n threads_" : ["Showing %n thread","Showing %n threads"],
"An unexpected error occurred" : "An unexpected error occurred",
"No category ID or slug provided" : "No category ID or slug provided",
"Failed to load threads" : "Failed to load threads",
"Create New Thread" : "Create New Thread",
"In {category}" : "In {category}",
"Creating thread …" : "Creating thread …",
"Thread created" : "Thread created",
"Failed to create thread" : "Failed to create thread",
"No category specified" : "No category specified",
"Error" : "Error",
"First post" : "First post",
"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 posted any replies yet" : "This user has not posted 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 posts" : "Search in posts",
"Syntax help" : "Syntax help",
"Search syntax" : "Search syntax",
"Match exact phrase" : "Match exact phrase",
"Both terms required" : "Both terms required",
"Either term matches" : "Either term matches",
"Group conditions with parentheses" : "Group conditions with parentheses",
"Exclude term from results" : "Exclude term from results",
"Searching …" : "Searching …",
"Search Error" : "Search Error",
"Enter a search query" : "Enter a search query",
"Use the search box above to find threads and posts" : "Use the search box above to find threads and posts",
"No results found" : "No results found",
"Try different keywords or check your syntax" : "Try different keywords or check your syntax",
"_%n thread found_::_%n threads found_" : ["%n thread found","%n threads found"],
"_%n post found_::_%n posts found_" : ["%n post found","%n posts found"],
"Please enter a search query" : "Please enter a search query",
"Please select at least one search scope" : "Please select at least one search scope",
"Failed to search" : "Failed to search",
"Thread not found" : "Thread not found",
"The thread you are looking for does not exist or has been removed." : "The thread you are looking for does not exist or has been removed.",
"Back to {category}" : "Back to {category}",
"Reply" : "Reply",
"Error loading thread" : "Error loading thread",
"No posts yet" : "No posts yet",
"Be the first to post in this thread." : "Be the first to post in this thread.",
"by" : "by",
"This thread is locked. Only moderators can post replies." : "This thread is locked. Only moderators can post replies.",
"You must be signed in to reply to this thread." : "You must be signed in to reply to this thread.",
"Sign in to reply" : "Sign in to reply",
"_Showing %n post_::_Showing %n posts_" : ["Showing %n post","Showing %n posts"],
"Lock thread" : "Lock thread",
"Unlock thread" : "Unlock thread",
"Pin thread" : "Pin thread",
"Unpin thread" : "Unpin thread",
"Thread locked" : "Thread locked",
"Thread unlocked" : "Thread unlocked",
"Thread pinned" : "Thread pinned",
"Thread unpinned" : "Thread unpinned",
"Subscribe" : "Subscribe",
"Subscribed" : "Subscribed",
"Subscribed to thread" : "Subscribed to thread",
"Unsubscribed from thread" : "Unsubscribed from thread",
"Edit title" : "Edit title",
"Move thread" : "Move thread",
"No thread ID or slug provided" : "No thread ID or slug provided",
"Failed to load posts" : "Failed to load posts",
"Post updated" : "Post updated",
"Failed to update post" : "Failed to update post",
"Thread deleted" : "Thread deleted",
"Post deleted" : "Post deleted",
"Failed to delete post" : "Failed to delete post",
"Failed to update thread lock status" : "Failed to update thread lock status",
"Failed to update thread pin status" : "Failed to update thread pin status",
"Failed to update subscription" : "Failed to update subscription",
"Preferences" : "Preferences",
"Customize your forum experience" : "Customize your forum experience",
"Loading preferences …" : "Loading preferences …",
"Error loading preferences" : "Error loading preferences",
"Notifications" : "Notifications",
"Configure how you receive notifications" : "Configure how you receive notifications",
"Auto-subscribe to threads I create" : "Auto-subscribe to threads I create",
"When enabled, you will automatically receive notifications for replies to threads you create" : "When enabled, you will automatically receive notifications for replies to threads you create",
"Files" : "Files",
"Browse" : "Browse",
"Preferences saved" : "Preferences saved",
"Failed to save preferences" : "Failed to save preferences",
"BBCode management" : "BBCode management",
"Manage custom BBCode tags for post formatting" : "Manage custom BBCode tags for post formatting",
"Error loading BBCodes" : "Error loading BBCodes",
"Create BBCode" : "Create BBCode",
"Enable" : "Enable",
"Disable" : "Disable",
"Enabled BBCodes" : "Enabled BBCodes",
"These BBCode tags are currently active" : "These BBCode tags are currently active",
"Disabled BBCodes" : "Disabled BBCodes",
"These BBCode tags are currently inactive" : "These BBCode tags are currently inactive",
"No enabled BBCodes" : "No enabled BBCodes",
"Parses Inner" : "Parses Inner",
"Delete BBCode" : "Delete BBCode",
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Are you sure you want to delete the BBCode tag [{tag}]?",
"This action cannot be undone." : "This action cannot be undone.",
"Edit BBCode" : "Edit BBCode",
"Tag" : "Tag",
"e.g., b, i, url, color" : "e.g., b, i, url, color",
"The BBCode tag name (without brackets)" : "The BBCode tag name (without brackets)",
"HTML replacement" : "HTML replacement",
"e.g., {strongStart}{content}{strongEnd}" : "e.g., {strongStart}{content}{strongEnd}",
"Use {content} for the tag content and {paramName} for parameters" : "Use {content} for the tag content and {paramName} for parameters",
"e.g., {tagStart}Hello world{tagEnd}" : "e.g., {tagStart}Hello world{tagEnd}",
"Example usage of this BBCode tag" : "Example usage of this BBCode tag",
"Description" : "Description",
"Brief description of what this BBCode does" : "Brief description of what this BBCode does",
"Enabled" : "Enabled",
"Parse inner content" : "Parse inner content",
"If enabled, BBCode tags inside this tag will also be parsed" : "If enabled, BBCode tags inside this tag will also be parsed",
"Create category" : "Create category",
"Edit category" : "Edit category",
"Configure category details" : "Configure category details",
"Basic information" : "Basic information",
"Category header" : "Category header",
"-- Select a header --" : "-- Select a header --",
"Name" : "Surname",
"Enter category name" : "Enter category name",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "URL-friendly identifier (e.g., \"{slug}\")",
"Enter category description (optional)" : "Enter category description (optional)",
"New" : "New",
"Permissions" : "Permissions",
"Control which roles can access and moderate this category" : "Control which roles can access and moderate this category",
"Roles that can view" : "Roles that can view",
"Select roles that can view this category and its threads" : "Select roles that can view this category and its threads",
"Roles that can moderate" : "Roles that can moderate",
"Select roles that can moderate (edit/delete) content in this category" : "Select roles that can moderate (edit/delete) content in this category",
"Select roles …" : "Select roles …",
"Manage forum categories and organization" : "Manage forum categories and organization",
"Error loading categories" : "Error loading categories",
"No categories in this header" : "No categories in this header",
"Delete category" : "Delete category",
"Are you sure you want to delete the category \"{name}\"?" : "Are you sure you want to delete the category \"{name}\"?",
"_This category contains %n thread._::_This category contains %n threads._" : ["This category contains %n thread.","This category contains %n threads."],
"What should happen to the threads?" : "What should happen to the threads?",
"Move threads to another category" : "Move threads to another category",
"Delete all threads (soft delete)" : "Delete all threads (soft delete)",
"Threads will be hidden but not permanently deleted" : "Threads will be hidden but not permanently deleted",
"Select target category" : "Select target category",
"-- Select a category --" : "-- Select a category --",
"Create header" : "Create header",
"_%n category_::_%n categories_" : ["%n category","%n categories"],
"_%n thread_::_%n threads_" : ["%n thread","%n threads"],
"Delete header" : "Delete header",
"Are you sure you want to delete the header \"{name}\"?" : "Are you sure you want to delete the header \"{name}\"?",
"_This header contains %n category._::_This header contains %n categories._" : ["This header contains %n category.","This header contains %n categories."],
"This action cannot be undone" : "This action cannot be undone",
"What should happen to the categories?" : "What should happen to the categories?",
"Move categories to another header" : "Move categories to another header",
"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",
"Move up" : "Move up",
"Move down" : "Move down",
"Admin dashboard" : "Admin dashboard",
"Overview of forum activity and statistics" : "Overview of forum activity and statistics",
"Loading statistics …" : "Loading statistics …",
"Error loading dashboard" : "Error loading dashboard",
"Total statistics" : "Total statistics",
"Total users" : "Total users",
"Total threads" : "Total threads",
"Total posts" : "Total posts",
"Total categories" : "Total categories",
"Recent activity (last 7 days)" : "Recent activity (last 7 days)",
"New users" : "New users",
"New threads" : "New threads",
"New posts" : "New posts",
"Top contributors" : "Top contributors",
"No contributors yet" : "No contributors yet",
"Last 7 days" : "Last 7 days",
"All time" : "All time",
"General settings" : "General settings",
"Configure general forum settings" : "Configure general forum settings",
"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",
"Welcome to the forum" : "Welcome to the forum",
"A brief description shown below the title" : "A brief description shown below the title",
"Access control" : "Access control",
"Manage who can access the forum" : "Manage who can access the forum",
"Allow guest access" : "Allow guest access",
"When enabled, unauthenticated users can view forum content in read-only mode" : "When enabled, unauthenticated users can view forum content in read-only mode",
"Settings saved" : "Settings saved",
"Failed to save settings" : "Failed to save settings",
"Create role" : "Create role",
"Edit role" : "Edit role",
"Configure role permissions and category access" : "Configure role permissions and category access",
"Error loading role" : "Error loading role",
"Enter role name" : "Enter role name",
"Enter role description (optional)" : "Enter role description (optional)",
"System role names cannot be changed" : "System role names cannot be changed",
"Colors" : "Colors",
"Set colors for this role badge" : "Set colors for this role badge",
"Light mode color" : "Light mode color",
"Dark mode color" : "Dark mode color",
"Reset" : "Reset",
"Role permissions" : "Role permissions",
"Set global permissions for this role" : "Set global permissions for this role",
"Can access admin tools" : "Can access admin tools",
"Allow access to the admin dashboard and tools" : "Allow access to the admin dashboard and tools",
"Can edit roles" : "Can edit roles",
"Allow creating, editing and deleting roles" : "Allow creating, editing and deleting roles",
"Can edit categories" : "Can edit categories",
"Allow creating, editing and deleting categories" : "Allow creating, editing and deleting categories",
"Category permissions" : "Category permissions",
"Set which categories this role can access" : "Set which categories this role can access",
"Category" : "Category",
"Can view" : "Can view",
"Can moderate" : "Can moderate",
"Allow" : "Allow",
"No categories available" : "No categories available",
"Admin role must have all permissions enabled" : "Admin role must have all permissions enabled",
"Admin role has full access to all categories" : "Admin role has full access to all categories",
"Guest role cannot have admin permissions" : "Guest role cannot have admin permissions",
"Guest role cannot moderate categories" : "Guest role cannot moderate categories",
"Guest access is currently disabled" : "Guest access is currently disabled",
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Guest users will not be able to access the forum until guest access is enabled in the forum settings.",
"Go to forum settings" : "Go to forum settings",
"Default role cannot moderate categories" : "Default role cannot moderate categories",
"Role management" : "Role management",
"Create and manage forum roles and permissions" : "Create and manage forum roles and permissions",
"Loading roles …" : "Loading roles …",
"Error loading roles" : "Error loading roles",
"No roles found" : "No roles found",
"Create your first role to get started" : "Create your first role to get started",
"ID" : "ID",
"Created" : "Created",
"Actions" : "Actions",
"No description" : "No description",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Are you sure you want to delete the role \"{name}\"? This action cannot be undone.",
"System roles cannot be deleted" : "System roles cannot be deleted",
"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",
"Posts" : "Posts",
"Joined" : "Joined",
"Status" : "Status",
"Active" : "Active",
"Deleted" : "Deleted",
"No roles" : "No roles",
"Select roles" : "Select roles",
"Edit roles" : "Edit roles",
"Edit user roles" : "Edit user roles"
},
"nplurals=2; plural=(n != 1);");

410
l10n/en_GB.json Normal file
View File

@@ -0,0 +1,410 @@
{ "translations": {
"Admin" : "Admin",
"Administrator role with full permissions" : "Administrator role with full permissions",
"Moderator" : "Moderator",
"Moderator role with elevated permissions" : "Moderator role with elevated permissions",
"User" : "User",
"Default user role with basic permissions" : "Default user role with basic permissions",
"Guest" : "Guest",
"Guest role for unauthenticated users with read-only access" : "Guest role for unauthenticated users with read-only access",
"General" : "General",
"General discussion categories" : "General discussion categories",
"General discussions" : "General discussions",
"A place for general conversations and discussions" : "A place for general conversations and discussions",
"Support" : "Support",
"Ask questions about the forum, provide feedback or report issues." : "Ask questions about the forum, provide feedback or report issues.",
"Inline code" : "Inline code",
"Spoilers" : "Spoilers",
"Attachment" : "Attachment",
"Welcome to Nextcloud Forums" : "Welcome to Nextcloud Forums",
"Welcome to the Nextcloud Forums!" : "Welcome to the Nextcloud Forums!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users.",
"Features:" : "Features:",
"Create and reply to threads" : "Create and reply to threads",
"Organize discussions by categories" : "Organize discussions by categories",
"Use BBCode for rich text formatting" : "Use BBCode for rich text formatting",
"Attach files from your Nextcloud storage" : "Attach files from your Nextcloud storage",
"React to posts" : "React to posts",
"Track read/unread threads" : "Track read/unread threads",
"BBCode examples:" : "BBCode examples:",
"Bold text" : "Bold text",
"Use %1$stext%2$s" : "Use %1$stext%2$s",
"Italic text" : "Italic text",
"Underlined text" : "Underlined text",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Feel free to start a new discussion or reply to existing threads. Happy posting!",
"Forum" : "Forum",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} new reply in {thread}","{count} new replies in {thread}"],
"Welcome to the forum!" : "Welcome to the forum!",
"Deleted user" : "Deleted user",
"A community-driven forum built right into your Nextcloud instance" : "A community-driven forum built right into your Nextcloud instance",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control.",
"Search" : "Search",
"Home" : "Home",
"User preferences" : "User preferences",
"Dashboard" : "Dashboard",
"Forum settings" : "Forum settings",
"Users" : "Users",
"Roles" : "Roles",
"Categories" : "Categories",
"BBCodes" : "BBCodes",
"Expand" : "Expand",
"Collapse" : "Collapse",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings.",
"Hello world!" : "Hello world!",
"Font style bold" : "Font style bold",
"Font style italic" : "Font style italic",
"Font style struck through" : "Font style struck through",
"Font style underlined" : "Font style underlined",
"Code" : "Code",
"Email (clickable)" : "Email (clickable)",
"URL (clickable)" : "URL (clickable)",
"Image (not clickable)" : "Image (not clickable)",
"Quote" : "Quote",
"Embedded YouTube video" : "Embedded YouTube video",
"Font (name)" : "Font (name)",
"Font size" : "Font size",
"Font color" : "Font color",
"Align left" : "Align left",
"Align center" : "Align centre",
"Align right" : "Align right",
"List" : "List",
"List item within a list" : "List item within a list",
"List item within a list (alias)" : "List item within a list (alias)",
"BBCode help" : "BBCode help",
"Built-in BBCodes" : "Built-in BBCodes",
"These BBCodes are available by default." : "These BBCodes are available by default.",
"Custom BBCodes" : "Custom BBCodes",
"These BBCodes are custom to this forum and configured by administrators." : "These BBCodes are custom to this forum and configured by administrators.",
"Example" : "Example",
"Replacement" : "Replacement",
"Loading custom BBCodes …" : "Loading custom BBCodes …",
"No custom BBCodes configured." : "No custom BBCodes configured.",
"Failed to load custom BBCodes" : "Failed to load custom BBCodes",
"Insert emoji" : "Insert emoji",
"Upload failed" : "Upload failed",
"Close" : "Close",
"Pick a file to attach" : "Pick a file to attach",
"Failed to upload file" : "Failed to upload file",
"_Thread_::_Threads_" : ["Thread","Threads"],
"_Post_::_Posts_" : ["Post","Posts"],
"No description available" : "No description available",
"Create category header" : "Create category header",
"Edit category header" : "Edit category header",
"Header name" : "Header name",
"Enter header name" : "Enter header name",
"Header description" : "Header description",
"Enter header description (optional)" : "Enter header description (optional)",
"Sort order" : "Sort order",
"Lower numbers appear first" : "Lower numbers appear first",
"Cancel" : "Cancel",
"Create" : "Create",
"Update" : "Update",
"Move" : "Move",
"Page not found" : "Page not found",
"The page you are looking for could not be found." : "The page you are looking for could not be found.",
"Back" : "Back",
"Go to home" : "Go to home",
"Edited" : "Edited",
"Quote reply" : "Quote reply",
"Edit" : "Edit",
"Delete" : "Delete",
"Are you sure you want to delete this post? This action cannot be undone." : "Are you sure you want to delete this post? This action cannot be undone.",
"Unread" : "Unread",
"Edit your post …" : "Edit your post …",
"Save" : "Save",
"Are you sure you want to discard your changes?" : "Are you sure you want to discard your changes?",
"Add reaction" : "Add reaction",
"React with {emoji}" : "React with {emoji}",
"You reacted with {emoji}" : "You reacted with {emoji}",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["You and %n other reacted with {emoji}","You and %n others reacted with {emoji}"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n person reacted with {emoji}","%n people reacted with {emoji}"],
"Write your reply …" : "Write your reply …",
"Post reply" : "Post reply",
"Are you sure you want to discard your reply?" : "Are you sure you want to discard your reply?",
"In thread" : "In thread",
"Thread unavailable" : "Thread unavailable",
"Pinned thread" : "Pinned thread",
"Locked thread" : "Locked thread",
"Uncategorized" : "Uncategorised",
"_%n post_::_%n posts_" : ["%n post","%n posts"],
"_%n view_::_%n views_" : ["%n view","%n views"],
"Replies" : "Replies",
"Views" : "Views",
"Title" : "Title",
"Enter thread title …" : "Enter thread title …",
"Write your first post …" : "Write your first post …",
"Create thread" : "Create thread",
"Are you sure you want to discard this thread?" : "Are you sure you want to discard this thread?",
"Refresh" : "Refresh",
"Loading …" : "Loading …",
"No categories yet" : "No categories yet",
"Categories will appear here once they are created." : "Categories will appear here once they are created.",
"No categories in this section" : "No categories in this section",
"Category not found" : "Category not found",
"The category you are looking for does not exist or has been removed." : "The category you are looking for does not exist or has been removed.",
"Back to categories" : "Back to categories",
"New thread" : "New thread",
"Error loading category" : "Error loading category",
"No threads yet" : "No threads yet",
"Be the first to start a discussion in this category." : "Be the first to start a discussion in this category.",
"Retry" : "Retry",
"_Showing %n thread_::_Showing %n threads_" : ["Showing %n thread","Showing %n threads"],
"An unexpected error occurred" : "An unexpected error occurred",
"No category ID or slug provided" : "No category ID or slug provided",
"Failed to load threads" : "Failed to load threads",
"Create New Thread" : "Create New Thread",
"In {category}" : "In {category}",
"Creating thread …" : "Creating thread …",
"Thread created" : "Thread created",
"Failed to create thread" : "Failed to create thread",
"No category specified" : "No category specified",
"Error" : "Error",
"First post" : "First post",
"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 posted any replies yet" : "This user has not posted 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 posts" : "Search in posts",
"Syntax help" : "Syntax help",
"Search syntax" : "Search syntax",
"Match exact phrase" : "Match exact phrase",
"Both terms required" : "Both terms required",
"Either term matches" : "Either term matches",
"Group conditions with parentheses" : "Group conditions with parentheses",
"Exclude term from results" : "Exclude term from results",
"Searching …" : "Searching …",
"Search Error" : "Search Error",
"Enter a search query" : "Enter a search query",
"Use the search box above to find threads and posts" : "Use the search box above to find threads and posts",
"No results found" : "No results found",
"Try different keywords or check your syntax" : "Try different keywords or check your syntax",
"_%n thread found_::_%n threads found_" : ["%n thread found","%n threads found"],
"_%n post found_::_%n posts found_" : ["%n post found","%n posts found"],
"Please enter a search query" : "Please enter a search query",
"Please select at least one search scope" : "Please select at least one search scope",
"Failed to search" : "Failed to search",
"Thread not found" : "Thread not found",
"The thread you are looking for does not exist or has been removed." : "The thread you are looking for does not exist or has been removed.",
"Back to {category}" : "Back to {category}",
"Reply" : "Reply",
"Error loading thread" : "Error loading thread",
"No posts yet" : "No posts yet",
"Be the first to post in this thread." : "Be the first to post in this thread.",
"by" : "by",
"This thread is locked. Only moderators can post replies." : "This thread is locked. Only moderators can post replies.",
"You must be signed in to reply to this thread." : "You must be signed in to reply to this thread.",
"Sign in to reply" : "Sign in to reply",
"_Showing %n post_::_Showing %n posts_" : ["Showing %n post","Showing %n posts"],
"Lock thread" : "Lock thread",
"Unlock thread" : "Unlock thread",
"Pin thread" : "Pin thread",
"Unpin thread" : "Unpin thread",
"Thread locked" : "Thread locked",
"Thread unlocked" : "Thread unlocked",
"Thread pinned" : "Thread pinned",
"Thread unpinned" : "Thread unpinned",
"Subscribe" : "Subscribe",
"Subscribed" : "Subscribed",
"Subscribed to thread" : "Subscribed to thread",
"Unsubscribed from thread" : "Unsubscribed from thread",
"Edit title" : "Edit title",
"Move thread" : "Move thread",
"No thread ID or slug provided" : "No thread ID or slug provided",
"Failed to load posts" : "Failed to load posts",
"Post updated" : "Post updated",
"Failed to update post" : "Failed to update post",
"Thread deleted" : "Thread deleted",
"Post deleted" : "Post deleted",
"Failed to delete post" : "Failed to delete post",
"Failed to update thread lock status" : "Failed to update thread lock status",
"Failed to update thread pin status" : "Failed to update thread pin status",
"Failed to update subscription" : "Failed to update subscription",
"Preferences" : "Preferences",
"Customize your forum experience" : "Customize your forum experience",
"Loading preferences …" : "Loading preferences …",
"Error loading preferences" : "Error loading preferences",
"Notifications" : "Notifications",
"Configure how you receive notifications" : "Configure how you receive notifications",
"Auto-subscribe to threads I create" : "Auto-subscribe to threads I create",
"When enabled, you will automatically receive notifications for replies to threads you create" : "When enabled, you will automatically receive notifications for replies to threads you create",
"Files" : "Files",
"Browse" : "Browse",
"Preferences saved" : "Preferences saved",
"Failed to save preferences" : "Failed to save preferences",
"BBCode management" : "BBCode management",
"Manage custom BBCode tags for post formatting" : "Manage custom BBCode tags for post formatting",
"Error loading BBCodes" : "Error loading BBCodes",
"Create BBCode" : "Create BBCode",
"Enable" : "Enable",
"Disable" : "Disable",
"Enabled BBCodes" : "Enabled BBCodes",
"These BBCode tags are currently active" : "These BBCode tags are currently active",
"Disabled BBCodes" : "Disabled BBCodes",
"These BBCode tags are currently inactive" : "These BBCode tags are currently inactive",
"No enabled BBCodes" : "No enabled BBCodes",
"Parses Inner" : "Parses Inner",
"Delete BBCode" : "Delete BBCode",
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Are you sure you want to delete the BBCode tag [{tag}]?",
"This action cannot be undone." : "This action cannot be undone.",
"Edit BBCode" : "Edit BBCode",
"Tag" : "Tag",
"e.g., b, i, url, color" : "e.g., b, i, url, color",
"The BBCode tag name (without brackets)" : "The BBCode tag name (without brackets)",
"HTML replacement" : "HTML replacement",
"e.g., {strongStart}{content}{strongEnd}" : "e.g., {strongStart}{content}{strongEnd}",
"Use {content} for the tag content and {paramName} for parameters" : "Use {content} for the tag content and {paramName} for parameters",
"e.g., {tagStart}Hello world{tagEnd}" : "e.g., {tagStart}Hello world{tagEnd}",
"Example usage of this BBCode tag" : "Example usage of this BBCode tag",
"Description" : "Description",
"Brief description of what this BBCode does" : "Brief description of what this BBCode does",
"Enabled" : "Enabled",
"Parse inner content" : "Parse inner content",
"If enabled, BBCode tags inside this tag will also be parsed" : "If enabled, BBCode tags inside this tag will also be parsed",
"Create category" : "Create category",
"Edit category" : "Edit category",
"Configure category details" : "Configure category details",
"Basic information" : "Basic information",
"Category header" : "Category header",
"-- Select a header --" : "-- Select a header --",
"Name" : "Surname",
"Enter category name" : "Enter category name",
"Slug" : "Slug",
"URL-friendly identifier (e.g., \"{slug}\")" : "URL-friendly identifier (e.g., \"{slug}\")",
"Enter category description (optional)" : "Enter category description (optional)",
"New" : "New",
"Permissions" : "Permissions",
"Control which roles can access and moderate this category" : "Control which roles can access and moderate this category",
"Roles that can view" : "Roles that can view",
"Select roles that can view this category and its threads" : "Select roles that can view this category and its threads",
"Roles that can moderate" : "Roles that can moderate",
"Select roles that can moderate (edit/delete) content in this category" : "Select roles that can moderate (edit/delete) content in this category",
"Select roles …" : "Select roles …",
"Manage forum categories and organization" : "Manage forum categories and organization",
"Error loading categories" : "Error loading categories",
"No categories in this header" : "No categories in this header",
"Delete category" : "Delete category",
"Are you sure you want to delete the category \"{name}\"?" : "Are you sure you want to delete the category \"{name}\"?",
"_This category contains %n thread._::_This category contains %n threads._" : ["This category contains %n thread.","This category contains %n threads."],
"What should happen to the threads?" : "What should happen to the threads?",
"Move threads to another category" : "Move threads to another category",
"Delete all threads (soft delete)" : "Delete all threads (soft delete)",
"Threads will be hidden but not permanently deleted" : "Threads will be hidden but not permanently deleted",
"Select target category" : "Select target category",
"-- Select a category --" : "-- Select a category --",
"Create header" : "Create header",
"_%n category_::_%n categories_" : ["%n category","%n categories"],
"_%n thread_::_%n threads_" : ["%n thread","%n threads"],
"Delete header" : "Delete header",
"Are you sure you want to delete the header \"{name}\"?" : "Are you sure you want to delete the header \"{name}\"?",
"_This header contains %n category._::_This header contains %n categories._" : ["This header contains %n category.","This header contains %n categories."],
"This action cannot be undone" : "This action cannot be undone",
"What should happen to the categories?" : "What should happen to the categories?",
"Move categories to another header" : "Move categories to another header",
"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",
"Move up" : "Move up",
"Move down" : "Move down",
"Admin dashboard" : "Admin dashboard",
"Overview of forum activity and statistics" : "Overview of forum activity and statistics",
"Loading statistics …" : "Loading statistics …",
"Error loading dashboard" : "Error loading dashboard",
"Total statistics" : "Total statistics",
"Total users" : "Total users",
"Total threads" : "Total threads",
"Total posts" : "Total posts",
"Total categories" : "Total categories",
"Recent activity (last 7 days)" : "Recent activity (last 7 days)",
"New users" : "New users",
"New threads" : "New threads",
"New posts" : "New posts",
"Top contributors" : "Top contributors",
"No contributors yet" : "No contributors yet",
"Last 7 days" : "Last 7 days",
"All time" : "All time",
"General settings" : "General settings",
"Configure general forum settings" : "Configure general forum settings",
"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",
"Welcome to the forum" : "Welcome to the forum",
"A brief description shown below the title" : "A brief description shown below the title",
"Access control" : "Access control",
"Manage who can access the forum" : "Manage who can access the forum",
"Allow guest access" : "Allow guest access",
"When enabled, unauthenticated users can view forum content in read-only mode" : "When enabled, unauthenticated users can view forum content in read-only mode",
"Settings saved" : "Settings saved",
"Failed to save settings" : "Failed to save settings",
"Create role" : "Create role",
"Edit role" : "Edit role",
"Configure role permissions and category access" : "Configure role permissions and category access",
"Error loading role" : "Error loading role",
"Enter role name" : "Enter role name",
"Enter role description (optional)" : "Enter role description (optional)",
"System role names cannot be changed" : "System role names cannot be changed",
"Colors" : "Colors",
"Set colors for this role badge" : "Set colors for this role badge",
"Light mode color" : "Light mode color",
"Dark mode color" : "Dark mode color",
"Reset" : "Reset",
"Role permissions" : "Role permissions",
"Set global permissions for this role" : "Set global permissions for this role",
"Can access admin tools" : "Can access admin tools",
"Allow access to the admin dashboard and tools" : "Allow access to the admin dashboard and tools",
"Can edit roles" : "Can edit roles",
"Allow creating, editing and deleting roles" : "Allow creating, editing and deleting roles",
"Can edit categories" : "Can edit categories",
"Allow creating, editing and deleting categories" : "Allow creating, editing and deleting categories",
"Category permissions" : "Category permissions",
"Set which categories this role can access" : "Set which categories this role can access",
"Category" : "Category",
"Can view" : "Can view",
"Can moderate" : "Can moderate",
"Allow" : "Allow",
"No categories available" : "No categories available",
"Admin role must have all permissions enabled" : "Admin role must have all permissions enabled",
"Admin role has full access to all categories" : "Admin role has full access to all categories",
"Guest role cannot have admin permissions" : "Guest role cannot have admin permissions",
"Guest role cannot moderate categories" : "Guest role cannot moderate categories",
"Guest access is currently disabled" : "Guest access is currently disabled",
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Guest users will not be able to access the forum until guest access is enabled in the forum settings.",
"Go to forum settings" : "Go to forum settings",
"Default role cannot moderate categories" : "Default role cannot moderate categories",
"Role management" : "Role management",
"Create and manage forum roles and permissions" : "Create and manage forum roles and permissions",
"Loading roles …" : "Loading roles …",
"Error loading roles" : "Error loading roles",
"No roles found" : "No roles found",
"Create your first role to get started" : "Create your first role to get started",
"ID" : "ID",
"Created" : "Created",
"Actions" : "Actions",
"No description" : "No description",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Are you sure you want to delete the role \"{name}\"? This action cannot be undone.",
"System roles cannot be deleted" : "System roles cannot be deleted",
"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",
"Posts" : "Posts",
"Joined" : "Joined",
"Status" : "Status",
"Active" : "Active",
"Deleted" : "Deleted",
"No roles" : "No roles",
"Select roles" : "Select roles",
"Edit roles" : "Edit roles",
"Edit user roles" : "Edit user roles"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

54
l10n/eo.js Normal file
View File

@@ -0,0 +1,54 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administranto",
"Moderator" : "Kontrolanto",
"User" : "Uzanto",
"General" : "Ĝenerala",
"Forum" : "Forumo",
"Search" : "Serĉi",
"Home" : "Hejmo",
"Dashboard" : "Regpanelo",
"Users" : "Uzantoj",
"Categories" : "Kategorioj",
"Collapse" : "Maletendi",
"Hello world!" : "Saluton, mondo!",
"Upload failed" : "Alŝuto malsukcesis",
"Close" : "Malfermi",
"Cancel" : "Cancel",
"Update" : "Ĝisdatigi",
"Move" : "Movi",
"Page not found" : "Paĝo ne trovita",
"Edit" : "Modifi",
"Delete" : "Forigi",
"Save" : "Konservi",
"Uncategorized" : "Senkategoria",
"Refresh" : "Aktualigi",
"Loading …" : "Ŝargado...",
"Retry" : "Reprovi",
"Error" : "Eraro",
"Searching …" : "Serĉado ...",
"Back to {category}" : "Antaŭen al {category}",
"by" : "de",
"Subscribe" : "Aboni",
"Notifications" : "Atentigoj",
"Enable" : "Ŝalti",
"Disable" : "Malŝalti",
"Description" : "Priskribo",
"Name" : "Nomo",
"New" : "Nova",
"Move down" : "Movi malsupren",
"Last 7 days" : "Lastaj 7 tagoj",
"Access control" : "Alirkontrolo",
"Settings saved" : "Agordoj konservitaj",
"Failed to save settings" : "Konservo de agordoj malsukcesis",
"Reset" : "Restarigi",
"Category" : "Kategorio",
"Allow" : "Permesi",
"ID" : "Identigilo",
"Created" : "Kreita",
"Actions" : "Agoj",
"Joined" : "Membriĝinta",
"Deleted" : "Forigita"
},
"nplurals=2; plural=(n != 1);");

52
l10n/eo.json Normal file
View File

@@ -0,0 +1,52 @@
{ "translations": {
"Admin" : "Administranto",
"Moderator" : "Kontrolanto",
"User" : "Uzanto",
"General" : "Ĝenerala",
"Forum" : "Forumo",
"Search" : "Serĉi",
"Home" : "Hejmo",
"Dashboard" : "Regpanelo",
"Users" : "Uzantoj",
"Categories" : "Kategorioj",
"Collapse" : "Maletendi",
"Hello world!" : "Saluton, mondo!",
"Upload failed" : "Alŝuto malsukcesis",
"Close" : "Malfermi",
"Cancel" : "Cancel",
"Update" : "Ĝisdatigi",
"Move" : "Movi",
"Page not found" : "Paĝo ne trovita",
"Edit" : "Modifi",
"Delete" : "Forigi",
"Save" : "Konservi",
"Uncategorized" : "Senkategoria",
"Refresh" : "Aktualigi",
"Loading …" : "Ŝargado...",
"Retry" : "Reprovi",
"Error" : "Eraro",
"Searching …" : "Serĉado ...",
"Back to {category}" : "Antaŭen al {category}",
"by" : "de",
"Subscribe" : "Aboni",
"Notifications" : "Atentigoj",
"Enable" : "Ŝalti",
"Disable" : "Malŝalti",
"Description" : "Priskribo",
"Name" : "Nomo",
"New" : "Nova",
"Move down" : "Movi malsupren",
"Last 7 days" : "Lastaj 7 tagoj",
"Access control" : "Alirkontrolo",
"Settings saved" : "Agordoj konservitaj",
"Failed to save settings" : "Konservo de agordoj malsukcesis",
"Reset" : "Restarigi",
"Category" : "Kategorio",
"Allow" : "Permesi",
"ID" : "Identigilo",
"Created" : "Kreita",
"Actions" : "Agoj",
"Joined" : "Membriĝinta",
"Deleted" : "Forigita"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

96
l10n/es.js Normal file
View File

@@ -0,0 +1,96 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administrador",
"User" : "Usuario",
"Guest" : "Invitado",
"General" : "General",
"Support" : "Soporte",
"Bold text" : "Texto en negrita",
"Underlined text" : "Texto subrayado",
"Forum" : "Foro",
"Deleted user" : "Usuario eliminado",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Dashboard",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Expand" : "Expandir",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola, mundo!",
"Code" : "Código",
"Quote" : "Presupuesto",
"Font size" : "Tamaño de fuente",
"List" : "Lista",
"Insert emoji" : "Insertar emoji",
"Upload failed" : "Error en la subida",
"Close" : "Cerrar",
"Failed to upload file" : "Error al subir el archivo",
"Sort order" : "Ordenar por",
"Cancel" : "Cancelar",
"Create" : "Crear",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Back" : "Atrás",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Unread" : "No leído",
"Save" : "Guardar",
"React with {emoji}" : "Reaccionar con {emoji}",
"Uncategorized" : "Sin categoría",
"Views" : "Vistas",
"Title" : "Título",
"Refresh" : "Refrescar",
"Loading …" : "Cargando …",
"Retry" : "Reintentar",
"In {category}" : "En {category}",
"Error" : "Error",
"Searching …" : "Buscando …",
"No results found" : "Sin resultados",
"Back to {category}" : "Volver a {category}",
"Reply" : "Responder",
"by" : "por",
"Subscribe" : "Suscribirse",
"Subscribed" : "Suscrito",
"Edit title" : "Editar título",
"Move thread" : "Mover hilo",
"Preferences" : "Preferencias",
"Notifications" : "Notificaciones",
"Files" : "Archivos",
"Browse" : "Explorar",
"Enable" : "Activar",
"Disable" : "Deshabilitar",
"This action cannot be undone." : "Esta acción no se puede deshacer.",
"Tag" : "Etiqueta",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Move up" : "Mover hacia arriba",
"Move down" : "Mover hacia abajo",
"Total users" : "Usuarios totales",
"Last 7 days" : "Últimos 7 días",
"All time" : "Todo el tiempo",
"General settings" : "Ajustes generales",
"Appearance" : "Apariencia",
"Access control" : "Control de acceso",
"Settings saved" : "Ajustes guardados",
"Failed to save settings" : "Fallo al guardar ajustes",
"Reset" : "Restablecer",
"Category" : "Categoría",
"Allow" : "Permitir",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"No description" : "Sin descripción",
"User management" : "Administración de usuarios",
"Loading users …" : "Cargando usuarios …",
"No users found" : "No se han encontrado usuarios",
"Joined" : "Se unió",
"Status" : "Estado",
"Active" : "Activo",
"Deleted" : "Eliminada"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

94
l10n/es.json Normal file
View File

@@ -0,0 +1,94 @@
{ "translations": {
"Admin" : "Administrador",
"User" : "Usuario",
"Guest" : "Invitado",
"General" : "General",
"Support" : "Soporte",
"Bold text" : "Texto en negrita",
"Underlined text" : "Texto subrayado",
"Forum" : "Foro",
"Deleted user" : "Usuario eliminado",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Dashboard",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Expand" : "Expandir",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola, mundo!",
"Code" : "Código",
"Quote" : "Presupuesto",
"Font size" : "Tamaño de fuente",
"List" : "Lista",
"Insert emoji" : "Insertar emoji",
"Upload failed" : "Error en la subida",
"Close" : "Cerrar",
"Failed to upload file" : "Error al subir el archivo",
"Sort order" : "Ordenar por",
"Cancel" : "Cancelar",
"Create" : "Crear",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Back" : "Atrás",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Unread" : "No leído",
"Save" : "Guardar",
"React with {emoji}" : "Reaccionar con {emoji}",
"Uncategorized" : "Sin categoría",
"Views" : "Vistas",
"Title" : "Título",
"Refresh" : "Refrescar",
"Loading …" : "Cargando …",
"Retry" : "Reintentar",
"In {category}" : "En {category}",
"Error" : "Error",
"Searching …" : "Buscando …",
"No results found" : "Sin resultados",
"Back to {category}" : "Volver a {category}",
"Reply" : "Responder",
"by" : "por",
"Subscribe" : "Suscribirse",
"Subscribed" : "Suscrito",
"Edit title" : "Editar título",
"Move thread" : "Mover hilo",
"Preferences" : "Preferencias",
"Notifications" : "Notificaciones",
"Files" : "Archivos",
"Browse" : "Explorar",
"Enable" : "Activar",
"Disable" : "Deshabilitar",
"This action cannot be undone." : "Esta acción no se puede deshacer.",
"Tag" : "Etiqueta",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Move up" : "Mover hacia arriba",
"Move down" : "Mover hacia abajo",
"Total users" : "Usuarios totales",
"Last 7 days" : "Últimos 7 días",
"All time" : "Todo el tiempo",
"General settings" : "Ajustes generales",
"Appearance" : "Apariencia",
"Access control" : "Control de acceso",
"Settings saved" : "Ajustes guardados",
"Failed to save settings" : "Fallo al guardar ajustes",
"Reset" : "Restablecer",
"Category" : "Categoría",
"Allow" : "Permitir",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"No description" : "Sin descripción",
"User management" : "Administración de usuarios",
"Loading users …" : "Cargando usuarios …",
"No users found" : "No se han encontrado usuarios",
"Joined" : "Se unió",
"Status" : "Estado",
"Active" : "Activo",
"Deleted" : "Eliminada"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

47
l10n/es_419.js Normal file
View File

@@ -0,0 +1,47 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Ususario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero",
"Users" : "Ususarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restaurar",
"Category" : "Categoría",
"ID" : "ID",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

45
l10n/es_419.json Normal file
View File

@@ -0,0 +1,45 @@
{ "translations": {
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Ususario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero",
"Users" : "Ususarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restaurar",
"Category" : "Categoría",
"ID" : "ID",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

57
l10n/es_AR.js Normal file
View File

@@ -0,0 +1,57 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administrador",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Support" : "Soporte",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Casa",
"Users" : "Usuarios",
"Categories" : "Categoría",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Font size" : "Tamaño de fuente",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Back" : "Volver",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Save" : "Guardar",
"Refresh" : "Recargar",
"Retry" : "Reintentar",
"Error" : "Error",
"Searching …" : "Buscando ...",
"Back to {category}" : "Volver a {category}",
"by" : "por",
"Subscribe" : "Suscribirse",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Enable" : "Activar",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"All time" : "Tiempo total",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Configuraciones guardadas",
"Reset" : "Restablecer",
"Category" : "Categoría",
"Allow" : "Permitir",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Loading users …" : "Cargando usuarios...",
"Joined" : "Se ha unido",
"Deleted" : "Eliminado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

55
l10n/es_AR.json Normal file
View File

@@ -0,0 +1,55 @@
{ "translations": {
"Admin" : "Administrador",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Support" : "Soporte",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Casa",
"Users" : "Usuarios",
"Categories" : "Categoría",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Font size" : "Tamaño de fuente",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Back" : "Volver",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Save" : "Guardar",
"Refresh" : "Recargar",
"Retry" : "Reintentar",
"Error" : "Error",
"Searching …" : "Buscando ...",
"Back to {category}" : "Volver a {category}",
"by" : "por",
"Subscribe" : "Suscribirse",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Enable" : "Activar",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"All time" : "Tiempo total",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Configuraciones guardadas",
"Reset" : "Restablecer",
"Category" : "Categoría",
"Allow" : "Permitir",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Loading users …" : "Cargando usuarios...",
"Joined" : "Se ha unido",
"Deleted" : "Eliminado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

48
l10n/es_CL.js Normal file
View File

@@ -0,0 +1,48 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Inicio",
"Users" : "Ususarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Cancel" : "Cancel",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

46
l10n/es_CL.json Normal file
View File

@@ -0,0 +1,46 @@
{ "translations": {
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Inicio",
"Users" : "Ususarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Cancel" : "Cancel",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

50
l10n/es_CO.js Normal file
View File

@@ -0,0 +1,50 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"by" : "por",
"Subscribe" : "Suscribir",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Reiniciar",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

48
l10n/es_CO.json Normal file
View File

@@ -0,0 +1,48 @@
{ "translations": {
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"by" : "por",
"Subscribe" : "Suscribir",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Reiniciar",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

49
l10n/es_CR.js Normal file
View File

@@ -0,0 +1,49 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

47
l10n/es_CR.json Normal file
View File

@@ -0,0 +1,47 @@
{ "translations": {
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

51
l10n/es_DO.js Normal file
View File

@@ -0,0 +1,51 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

49
l10n/es_DO.json Normal file
View File

@@ -0,0 +1,49 @@
{ "translations": {
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

410
l10n/es_EC.js Normal file
View File

@@ -0,0 +1,410 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"Administrator role with full permissions" : "Rol de administrador con permisos completos",
"Moderator" : "Moderador",
"Moderator role with elevated permissions" : "Rol de moderador con permisos elevados",
"User" : "Usuario",
"Default user role with basic permissions" : "Rol de usuario por defecto con permisos básicos",
"Guest" : "Invitado",
"Guest role for unauthenticated users with read-only access" : "Rol de invitado para usuarios no autenticados con acceso solo lectura",
"General" : "General",
"General discussion categories" : "Categorías de discusión general",
"General discussions" : "Discusiones generales",
"A place for general conversations and discussions" : "Un lugar para conversaciones y discusiones generales",
"Support" : "Soporte",
"Ask questions about the forum, provide feedback or report issues." : "Haz preguntas sobre el foro, proporciona comentarios o reporta problemas.",
"Inline code" : "Código en línea",
"Spoilers" : "Spoilers",
"Attachment" : "Adjunto",
"Welcome to Nextcloud Forums" : "Bienvenido a los Foros de Nextcloud",
"Welcome to the Nextcloud Forums!" : "¡Bienvenido a los Foros de Nextcloud!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Este es un foro impulsado por la comunidad integrado directamente en tu instancia de Nextcloud. Aquí puedes discutir temas, compartir ideas y colaborar con otros usuarios.",
"Features:" : "Funciones:",
"Create and reply to threads" : "Crear y responder a hilos",
"Organize discussions by categories" : "Organizar discusiones por categorías",
"Use BBCode for rich text formatting" : "Usar BBCode para formato de texto enriquecido",
"Attach files from your Nextcloud storage" : "Adjuntar archivos desde tu almacenamiento de Nextcloud",
"React to posts" : "Reaccionar a publicaciones",
"Track read/unread threads" : "Seguir hilos leídos/no leídos",
"BBCode examples:" : "Ejemplos de BBCode:",
"Bold text" : "Texto en negrita",
"Use %1$stext%2$s" : "Usar %1$stexto%2$s",
"Italic text" : "Texto en cursiva",
"Underlined text" : "Texto subrayado",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "No dudes en iniciar una nueva discusión o responder a hilos existentes. ¡Feliz publicación!",
"Forum" : "Foro",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nueva respuesta en {thread}","{count} nuevas respuestas en {thread}","{count} nuevas respuestas en {thread}"],
"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",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Crea discusiones, comparte ideas y colabora con tu comunidad directamente en Nextcloud.\n\n**⚠️ Aviso de Desarrollo Temprano:**\nEsta aplicación se encuentra en etapas iniciales de desarrollo. Aunque funcional, podrías encontrar errores o funciones incompletas. Por favor reporta cualquier problema en GitHub y considera hacer copias de seguridad regularmente.\n\n**Funciones clave:**\n- **Discusiones por hilos** - Crea y responde a hilos organizados\n- **Organización por categorías** - Estructura tu foro con categorías y encabezados personalizables\n- **Formato de texto enriquecido** - Usa BBCode para dar formato a las publicaciones con negrita, cursiva, enlaces, imágenes, bloques de código y más\n- **Adjuntos de archivos** - Adjunta archivos desde tu almacenamiento de Nextcloud a las publicaciones\n- **Reacciones a publicaciones** - Reacciona a publicaciones con emojis\n- **Seguimiento leído/no leído** - Mantén el control de qué hilos has leído\n- **Búsqueda** - Encuentra discusiones rápidamente con la búsqueda incorporada\n- **Perfiles de usuario** - Consulta el historial de publicaciones y estadísticas de usuarios\n- **Permisos basados en roles** - Controla el acceso y la moderación con roles flexibles\n- **Acceso de invitados** - Acceso público opcional para usuarios no autenticados con permisos configurables\n- **Herramientas de administración** - Gestiona categorías, roles, BBCodes y configuraciones del foro\n- **Herramientas de moderación** - Fija, bloquea y gestiona hilos y publicaciones\n\n**Ideal para:**\n- Discusiones y colaboración en equipo\n- Foros comunitarios\n- Canales de soporte\n- Bases de conocimiento\n- Discusiones de proyectos\n- Comunicación interna\n\nEl foro se integra perfectamente con tu instancia de Nextcloud, utilizando tus usuarios y grupos existentes para autenticación y control de acceso.",
"Search" : "Buscar",
"Home" : "Inicio",
"User preferences" : "Preferencias de usuario",
"Dashboard" : "Panel",
"Forum settings" : "Configuración del foro",
"Users" : "Usuarios",
"Roles" : "Roles",
"Categories" : "Categorías",
"BBCodes" : "BBCodes",
"Expand" : "Expandir",
"Collapse" : "Colapsar",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Nota:{bEnd} Los archivos adjuntos serán visibles para cualquier persona en el foro, independientemente de la configuración de compartición del archivo.",
"Hello world!" : "¡Hola mundo!",
"Font style bold" : "Estilo de fuente negrita",
"Font style italic" : "Estilo de fuente cursiva",
"Font style struck through" : "Estilo de fuente tachado",
"Font style underlined" : "Estilo de fuente subrayado",
"Code" : "Código",
"Email (clickable)" : "Correo electrónico (clicable)",
"URL (clickable)" : "URL (clicable)",
"Image (not clickable)" : "Imagen (no clicable)",
"Quote" : "Cita",
"Embedded YouTube video" : "Video de YouTube incrustado",
"Font (name)" : "Fuente (nombre)",
"Font size" : "Tamaño de fuente",
"Font color" : "Color de fuente",
"Align left" : "Alinear a la izquierda",
"Align center" : "Centrar",
"Align right" : "Alinear a la derecha",
"List" : "Lista",
"List item within a list" : "Elemento de lista dentro de una lista",
"List item within a list (alias)" : "Elemento de lista dentro de una lista (alias)",
"BBCode help" : "Ayuda de BBCode",
"Built-in BBCodes" : "BBCodes incorporados",
"These BBCodes are available by default." : "Estos BBCodes están disponibles por defecto.",
"Custom BBCodes" : "BBCodes personalizados",
"These BBCodes are custom to this forum and configured by administrators." : "Estos BBCodes son personalizados para este foro y configurados por los administradores.",
"Example" : "Ejemplo",
"Replacement" : "Reemplazo",
"Loading custom BBCodes …" : "Cargando BBCodes personalizados …",
"No custom BBCodes configured." : "No hay BBCodes personalizados configurados.",
"Failed to load custom BBCodes" : "Error al cargar BBCodes personalizados",
"Insert emoji" : "Insertar emoji",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Pick a file to attach" : "Selecciona un archivo para adjuntar",
"_Thread_::_Threads_" : ["Hilo","Hilos","Hilos"],
"_Post_::_Posts_" : ["Publicación","Publicaciones","Publicaciones"],
"No description available" : "No hay descripción disponible",
"Create category header" : "Crear encabezado de categoría",
"Edit category header" : "Editar encabezado de categoría",
"Header name" : "Nombre del encabezado",
"Enter header name" : "Ingresa el nombre del encabezado",
"Header description" : "Descripción del encabezado",
"Enter header description (optional)" : "Ingresa la descripción del encabezado (opcional)",
"Sort order" : "Orden",
"Lower numbers appear first" : "Los números más bajos aparecen primero",
"Cancel" : "Cancelar",
"Create" : "Crear",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"The page you are looking for could not be found." : "La página que buscas no se pudo encontrar.",
"Back" : "Regresar",
"Go to home" : "Ir al inicio",
"Edited" : "Editado",
"Quote reply" : "Responder citando",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Are you sure you want to delete this post? This action cannot be undone." : "¿Estás seguro de que deseas eliminar esta publicación? Esta acción no se puede deshacer.",
"Unread" : "No leído",
"Edit your post …" : "Edita tu publicación …",
"Save" : "Guardar",
"Are you sure you want to discard your changes?" : "¿Estás seguro de que deseas descartar tus cambios?",
"Add reaction" : "Agregar reacción",
"React with {emoji}" : "Reaccionar con {emoji}",
"You reacted with {emoji}" : "Has reaccionado con {emoji}",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Tú y %n otra persona reaccionaron con {emoji}","Tú y %n otras personas reaccionaron con {emoji}","Tú y %n otras personas reaccionaron con {emoji}"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n persona reaccionó con {emoji}","%n personas reaccionaron con {emoji}","%n personas reaccionaron con {emoji}"],
"Write your reply …" : "Escribe tu respuesta …",
"Post reply" : "Publicar respuesta",
"Are you sure you want to discard your reply?" : "¿Estás seguro de que deseas descartar tu respuesta?",
"In thread" : "En el hilo",
"Thread unavailable" : "Hilo no disponible",
"Pinned thread" : "Hilo fijado",
"Locked thread" : "Hilo bloqueado",
"Uncategorized" : "Sin categoría",
"_%n post_::_%n posts_" : ["%n publicación","%n publicaciones","%n publicaciones"],
"_%n view_::_%n views_" : ["%n vista","%n vistas","%n vistas"],
"Replies" : "Respuestas",
"Views" : "Vistas",
"Title" : "Título",
"Enter thread title …" : "Ingresa el título del hilo …",
"Write your first post …" : "Escribe tu primera publicación …",
"Create thread" : "Crear hilo",
"Are you sure you want to discard this thread?" : "¿Estás seguro de que deseas descartar este hilo?",
"Refresh" : "Actualizar",
"Loading …" : "Cargando …",
"No categories yet" : "Aún no hay categorías",
"Categories will appear here once they are created." : "Las categorías aparecerán aquí una vez que se creen.",
"No categories in this section" : "No hay categorías en esta sección",
"Category not found" : "Categoría no encontrada",
"The category you are looking for does not exist or has been removed." : "La categoría que buscas no existe o ha sido eliminada.",
"Back to categories" : "Volver a categorías",
"New thread" : "Nuevo hilo",
"Error loading category" : "Error al cargar la categoría",
"No threads yet" : "Aún no hay hilos",
"Be the first to start a discussion in this category." : "Sé el primero en iniciar una discusión en esta categoría.",
"Retry" : "Reintentar",
"_Showing %n thread_::_Showing %n threads_" : ["Mostrando %n hilo","Mostrando %n hilos","Mostrando %n hilos"],
"An unexpected error occurred" : "Ocurrió un error inesperado",
"No category ID or slug provided" : "No se proporcionó ID o slug de categoría",
"Failed to load threads" : "Error al cargar hilos",
"Create New Thread" : "Crear nuevo hilo",
"In {category}" : "En {category}",
"Creating thread …" : "Creando hilo …",
"Thread created" : "Hilo creado",
"Failed to create thread" : "Error al crear hilo",
"No category specified" : "No se especificó categoría",
"Error" : "Error",
"First post" : "Primer publicación",
"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",
"This user has not posted any replies yet" : "Este usuario aún no ha publicado ninguna respuesta",
"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",
"Search in posts" : "Buscar en publicaciones",
"Syntax help" : "Ayuda de sintaxis",
"Search syntax" : "Sintaxis de búsqueda",
"Match exact phrase" : "Coincidir frase exacta",
"Both terms required" : "Ambos términos requeridos",
"Either term matches" : "Cualquier término coincide",
"Group conditions with parentheses" : "Agrupar condiciones con paréntesis",
"Exclude term from results" : "Excluir término de los resultados",
"Searching …" : "Buscando …",
"Search Error" : "Error de búsqueda",
"Enter a search query" : "Ingresa una consulta de búsqueda",
"Use the search box above to find threads and posts" : "Usa el cuadro de búsqueda arriba para encontrar hilos y publicaciones",
"No results found" : "No se encontraron resultados",
"Try different keywords or check your syntax" : "Prueba con otras palabras clave o verifica tu sintaxis",
"_%n thread found_::_%n threads found_" : ["%n hilo encontrado","%n hilos encontrados","%n hilos encontrados"],
"_%n post found_::_%n posts found_" : ["%n publicación encontrada","%n publicaciones encontradas","%n publicaciones encontradas"],
"Please enter a search query" : "Por favor ingresa una consulta de búsqueda",
"Please select at least one search scope" : "Por favor selecciona al menos un ámbito de búsqueda",
"Failed to search" : "Error al buscar",
"Thread not found" : "Hilo no encontrado",
"The thread you are looking for does not exist or has been removed." : "El hilo que buscas no existe o ha sido eliminado.",
"Back to {category}" : "Volver a {category}",
"Reply" : "Responder",
"Error loading thread" : "Error al cargar el hilo",
"No posts yet" : "Aún no hay publicaciones",
"Be the first to post in this thread." : "Sé el primero en publicar en este hilo.",
"by" : "por",
"This thread is locked. Only moderators can post replies." : "Este hilo está bloqueado. Solo los moderadores pueden publicar respuestas.",
"You must be signed in to reply to this thread." : "Debes iniciar sesión para responder a este hilo.",
"Sign in to reply" : "Inicia sesión para responder",
"_Showing %n post_::_Showing %n posts_" : ["Mostrando %n publicación","Mostrando %n publicaciones","Mostrando %n publicaciones"],
"Lock thread" : "Bloquear hilo",
"Unlock thread" : "Desbloquear hilo",
"Pin thread" : "Fijar hilo",
"Unpin thread" : "Desfijar hilo",
"Thread locked" : "Hilo bloqueado",
"Thread unlocked" : "Hilo desbloqueado",
"Thread pinned" : "Hilo fijado",
"Thread unpinned" : "Hilo desfijado",
"Subscribe" : "Suscribirse",
"Subscribed" : "Suscrito",
"Subscribed to thread" : "Suscrito al hilo",
"Unsubscribed from thread" : "No suscrito al hilo",
"Edit title" : "Editar título",
"Move thread" : "Mover hilo",
"No thread ID or slug provided" : "No se proporcionó ID o slug del hilo",
"Failed to load posts" : "Error al cargar publicaciones",
"Post updated" : "Publicación actualizada",
"Failed to update post" : "Error al actualizar publicación",
"Thread deleted" : "Hilo eliminado",
"Post deleted" : "Publicación eliminada",
"Failed to delete post" : "Error al eliminar publicación",
"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",
"Notifications" : "Notificaciones",
"Configure how you receive notifications" : "Configura cómo recibir notificaciones",
"Auto-subscribe to threads I create" : "Suscribirse automáticamente a los hilos que creo",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Al habilitarlo, recibirás automáticamente notificaciones de respuestas a los hilos que crees",
"Files" : "Archivo",
"Preferences saved" : "Preferencias guardadas",
"Failed to save preferences" : "Error al guardar preferencias",
"BBCode management" : "Gestión de BBCode",
"Manage custom BBCode tags for post formatting" : "Gestiona etiquetas BBCode personalizadas para el formato de publicaciones",
"Error loading BBCodes" : "Error al cargar BBCodes",
"Create BBCode" : "Crear BBCode",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar",
"Enabled BBCodes" : "BBCodes habilitados",
"These BBCode tags are currently active" : "Estas etiquetas BBCode están actualmente activas",
"Disabled BBCodes" : "BBCodes deshabilitados",
"These BBCode tags are currently inactive" : "Estas etiquetas BBCode están actualmente inactivas",
"No enabled BBCodes" : "No hay BBCodes habilitados",
"Parses Inner" : "Parsear contenido interno",
"Delete BBCode" : "Eliminar BBCode",
"Are you sure you want to delete the BBCode tag [{tag}]?" : "¿Estás seguro de que deseas eliminar la etiqueta BBCode [{tag}]?",
"This action cannot be undone." : "Esta acción no se puede deshacer.",
"Edit BBCode" : "Editar BBCode",
"Tag" : "Etiqueta",
"e.g., b, i, url, color" : "ej., b, i, url, color",
"The BBCode tag name (without brackets)" : "Nombre de la etiqueta BBCode (sin corchetes)",
"HTML replacement" : "Reemplazo HTML",
"e.g., {strongStart}{content}{strongEnd}" : "ej., {strongStart}{content}{strongEnd}",
"Use {content} for the tag content and {paramName} for parameters" : "Usa {content} para el contenido de la etiqueta y {paramName} para los parámetros",
"e.g., {tagStart}Hello world{tagEnd}" : "ej., {tagStart}Hola mundo{tagEnd}",
"Example usage of this BBCode tag" : "Ejemplo de uso de esta etiqueta BBCode",
"Description" : "Descripción",
"Brief description of what this BBCode does" : "Breve descripción de lo que hace este BBCode",
"Enabled" : "Habilitado",
"Parse inner content" : "Parsear contenido interno",
"If enabled, BBCode tags inside this tag will also be parsed" : "Si está habilitado, las etiquetas BBCode dentro de esta etiqueta también serán parseadas",
"Create category" : "Crear categoría",
"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 --",
"Name" : "Nombre",
"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",
"Control which roles can access and moderate this category" : "Controla qué roles pueden acceder y moderar esta categoría",
"Roles that can view" : "Roles que pueden ver",
"Select roles that can view this category and its threads" : "Selecciona los roles que pueden ver esta categoría y sus hilos",
"Roles that can moderate" : "Roles que pueden moderar",
"Select roles that can moderate (edit/delete) content in this category" : "Selecciona los roles que pueden moderar (editar/eliminar) contenido en esta categoría",
"Select roles …" : "Seleccionar roles …",
"Manage forum categories and organization" : "Gestionar categorías y organización del foro",
"Error loading categories" : "Error al cargar categorías",
"No categories in this header" : "No hay categorías en este encabezado",
"Delete category" : "Eliminar categoría",
"Are you sure you want to delete the category \"{name}\"?" : "¿Estás seguro de que deseas eliminar la categoría \"{name}\"?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Esta categoría contiene %n hilo.","Esta categoría contiene %n hilos.","Esta categoría contiene %n hilos."],
"What should happen to the threads?" : "¿Qué debería ocurrir con los hilos?",
"Move threads to another category" : "Mover hilos a otra categoría",
"Delete all threads (soft delete)" : "Eliminar todos los hilos (eliminación suave)",
"Threads will be hidden but not permanently deleted" : "Los hilos se ocultarán pero no se eliminarán permanentemente",
"Select target category" : "Seleccionar categoría de destino",
"-- Select a category --" : "-- Selecciona una categoría --",
"Create header" : "Crear encabezado",
"_%n category_::_%n categories_" : ["%n categoría","%n categorías","%n categorías"],
"_%n thread_::_%n threads_" : ["%n hilo","%n hilos","%n hilos"],
"Delete header" : "Eliminar encabezado",
"Are you sure you want to delete the header \"{name}\"?" : "¿Estás seguro de que deseas eliminar el encabezado \"{name}\"?",
"_This header contains %n category._::_This header contains %n categories._" : ["Este encabezado contiene %n categoría.","Este encabezado contiene %n categorías.","Este encabezado contiene %n categorías."],
"This action cannot be undone" : "Esta acción no se puede deshacer",
"What should happen to the categories?" : "¿Qué debería ocurrir con las categorías?",
"Move categories to another header" : "Mover categorías a otro encabezado",
"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",
"Move up" : "Mover arriba",
"Move down" : "Mover abajo",
"Admin dashboard" : "Panel de administración",
"Overview of forum activity and statistics" : "Resumen de la actividad y estadísticas del foro",
"Loading statistics …" : "Cargando estadísticas …",
"Error loading dashboard" : "Error al cargar panel",
"Total statistics" : "Estadísticas totales",
"Total users" : "Total de usuarios",
"Total threads" : "Total de hilos",
"Total posts" : "Total de publicaciones",
"Total categories" : "Total de categorías",
"Recent activity (last 7 days)" : "Actividad reciente (últimos 7 días)",
"New users" : "Nuevos usuarios",
"New threads" : "Nuevos hilos",
"New posts" : "Nuevas publicaciones",
"Top contributors" : "Principales contribuyentes",
"No contributors yet" : "Aún no hay contribuyentes",
"Last 7 days" : "Últimos 7 días",
"All time" : "Todo el tiempo",
"General settings" : "Configuración general",
"Configure general forum settings" : "Configurar ajustes generales del foro",
"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",
"Welcome to the forum" : "Bienvenido al foro",
"A brief description shown below the title" : "Breve descripción mostrada debajo del título",
"Access control" : "Control de acceso",
"Manage who can access the forum" : "Gestionar quién puede acceder al foro",
"Allow guest access" : "Permitir acceso de invitados",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Cuando está habilitado, los usuarios no autenticados pueden ver el contenido del foro en modo solo lectura",
"Settings saved" : "Ajustes guardados",
"Failed to save settings" : "Error al guardar ajustes",
"Create role" : "Crear rol",
"Edit role" : "Editar rol",
"Configure role permissions and category access" : "Configurar permisos del rol y acceso a categorías",
"Error loading role" : "Error al cargar rol",
"Enter role name" : "Ingresa el nombre del rol",
"Enter role description (optional)" : "Ingresa la descripción del rol (opcional)",
"System role names cannot be changed" : "Los nombres de roles del sistema no se pueden cambiar",
"Colors" : "Colores",
"Set colors for this role badge" : "Establecer colores para la insignia de este rol",
"Light mode color" : "Color para modo claro",
"Dark mode color" : "Color para modo oscuro",
"Reset" : "Restablecer",
"Role permissions" : "Permisos de rol",
"Set global permissions for this role" : "Establecer permisos globales para este rol",
"Can access admin tools" : "Puede acceder a herramientas de administración",
"Allow access to the admin dashboard and tools" : "Permitir acceso al panel de administración y herramientas",
"Can edit roles" : "Puede editar roles",
"Allow creating, editing and deleting roles" : "Permitir crear, editar y eliminar roles",
"Can edit categories" : "Puede editar categorías",
"Allow creating, editing and deleting categories" : "Permitir crear, editar y eliminar categorías",
"Category permissions" : "Permisos de categoría",
"Set which categories this role can access" : "Establecer a qué categorías puede acceder este rol",
"Category" : "Categoría",
"Can view" : "Puede ver",
"Can moderate" : "Puede moderar",
"Allow" : "Permitir",
"No categories available" : "No hay categorías disponibles",
"Admin role must have all permissions enabled" : "El rol de administrador debe tener todos los permisos habilitados",
"Admin role has full access to all categories" : "El rol de administrador tiene acceso completo a todas las categorías",
"Guest role cannot have admin permissions" : "El rol de invitado no puede tener permisos de administrador",
"Guest role cannot moderate categories" : "El rol de invitado no puede moderar categorías",
"Guest access is currently disabled" : "El acceso de invitados está deshabilitado actualmente",
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Los usuarios invitados no podrán acceder al foro hasta que se habilite el acceso de invitados en la configuración del foro.",
"Go to forum settings" : "Ir a la configuración del foro",
"Default role cannot moderate categories" : "El rol predeterminado no puede moderar categorías",
"Role management" : "Gestión de roles",
"Create and manage forum roles and permissions" : "Crear y gestionar roles y permisos del foro",
"Loading roles …" : "Cargando roles …",
"Error loading roles" : "Error al cargar roles",
"No roles found" : "No se encontraron roles",
"Create your first role to get started" : "Crea tu primer rol para comenzar",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"No description" : "Sin descripción",
"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",
"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",
"Posts" : "Publicaciones",
"Joined" : "Se unió",
"Status" : "Estado",
"Active" : "Activo",
"Deleted" : "Eliminado",
"No roles" : "Sin roles",
"Select roles" : "Seleccionar roles",
"Edit roles" : "Editar roles",
"Edit user roles" : "Editar roles de usuario"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

408
l10n/es_EC.json Normal file
View File

@@ -0,0 +1,408 @@
{ "translations": {
"Admin" : "Admin",
"Administrator role with full permissions" : "Rol de administrador con permisos completos",
"Moderator" : "Moderador",
"Moderator role with elevated permissions" : "Rol de moderador con permisos elevados",
"User" : "Usuario",
"Default user role with basic permissions" : "Rol de usuario por defecto con permisos básicos",
"Guest" : "Invitado",
"Guest role for unauthenticated users with read-only access" : "Rol de invitado para usuarios no autenticados con acceso solo lectura",
"General" : "General",
"General discussion categories" : "Categorías de discusión general",
"General discussions" : "Discusiones generales",
"A place for general conversations and discussions" : "Un lugar para conversaciones y discusiones generales",
"Support" : "Soporte",
"Ask questions about the forum, provide feedback or report issues." : "Haz preguntas sobre el foro, proporciona comentarios o reporta problemas.",
"Inline code" : "Código en línea",
"Spoilers" : "Spoilers",
"Attachment" : "Adjunto",
"Welcome to Nextcloud Forums" : "Bienvenido a los Foros de Nextcloud",
"Welcome to the Nextcloud Forums!" : "¡Bienvenido a los Foros de Nextcloud!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Este es un foro impulsado por la comunidad integrado directamente en tu instancia de Nextcloud. Aquí puedes discutir temas, compartir ideas y colaborar con otros usuarios.",
"Features:" : "Funciones:",
"Create and reply to threads" : "Crear y responder a hilos",
"Organize discussions by categories" : "Organizar discusiones por categorías",
"Use BBCode for rich text formatting" : "Usar BBCode para formato de texto enriquecido",
"Attach files from your Nextcloud storage" : "Adjuntar archivos desde tu almacenamiento de Nextcloud",
"React to posts" : "Reaccionar a publicaciones",
"Track read/unread threads" : "Seguir hilos leídos/no leídos",
"BBCode examples:" : "Ejemplos de BBCode:",
"Bold text" : "Texto en negrita",
"Use %1$stext%2$s" : "Usar %1$stexto%2$s",
"Italic text" : "Texto en cursiva",
"Underlined text" : "Texto subrayado",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "No dudes en iniciar una nueva discusión o responder a hilos existentes. ¡Feliz publicación!",
"Forum" : "Foro",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nueva respuesta en {thread}","{count} nuevas respuestas en {thread}","{count} nuevas respuestas en {thread}"],
"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",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Crea discusiones, comparte ideas y colabora con tu comunidad directamente en Nextcloud.\n\n**⚠️ Aviso de Desarrollo Temprano:**\nEsta aplicación se encuentra en etapas iniciales de desarrollo. Aunque funcional, podrías encontrar errores o funciones incompletas. Por favor reporta cualquier problema en GitHub y considera hacer copias de seguridad regularmente.\n\n**Funciones clave:**\n- **Discusiones por hilos** - Crea y responde a hilos organizados\n- **Organización por categorías** - Estructura tu foro con categorías y encabezados personalizables\n- **Formato de texto enriquecido** - Usa BBCode para dar formato a las publicaciones con negrita, cursiva, enlaces, imágenes, bloques de código y más\n- **Adjuntos de archivos** - Adjunta archivos desde tu almacenamiento de Nextcloud a las publicaciones\n- **Reacciones a publicaciones** - Reacciona a publicaciones con emojis\n- **Seguimiento leído/no leído** - Mantén el control de qué hilos has leído\n- **Búsqueda** - Encuentra discusiones rápidamente con la búsqueda incorporada\n- **Perfiles de usuario** - Consulta el historial de publicaciones y estadísticas de usuarios\n- **Permisos basados en roles** - Controla el acceso y la moderación con roles flexibles\n- **Acceso de invitados** - Acceso público opcional para usuarios no autenticados con permisos configurables\n- **Herramientas de administración** - Gestiona categorías, roles, BBCodes y configuraciones del foro\n- **Herramientas de moderación** - Fija, bloquea y gestiona hilos y publicaciones\n\n**Ideal para:**\n- Discusiones y colaboración en equipo\n- Foros comunitarios\n- Canales de soporte\n- Bases de conocimiento\n- Discusiones de proyectos\n- Comunicación interna\n\nEl foro se integra perfectamente con tu instancia de Nextcloud, utilizando tus usuarios y grupos existentes para autenticación y control de acceso.",
"Search" : "Buscar",
"Home" : "Inicio",
"User preferences" : "Preferencias de usuario",
"Dashboard" : "Panel",
"Forum settings" : "Configuración del foro",
"Users" : "Usuarios",
"Roles" : "Roles",
"Categories" : "Categorías",
"BBCodes" : "BBCodes",
"Expand" : "Expandir",
"Collapse" : "Colapsar",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Nota:{bEnd} Los archivos adjuntos serán visibles para cualquier persona en el foro, independientemente de la configuración de compartición del archivo.",
"Hello world!" : "¡Hola mundo!",
"Font style bold" : "Estilo de fuente negrita",
"Font style italic" : "Estilo de fuente cursiva",
"Font style struck through" : "Estilo de fuente tachado",
"Font style underlined" : "Estilo de fuente subrayado",
"Code" : "Código",
"Email (clickable)" : "Correo electrónico (clicable)",
"URL (clickable)" : "URL (clicable)",
"Image (not clickable)" : "Imagen (no clicable)",
"Quote" : "Cita",
"Embedded YouTube video" : "Video de YouTube incrustado",
"Font (name)" : "Fuente (nombre)",
"Font size" : "Tamaño de fuente",
"Font color" : "Color de fuente",
"Align left" : "Alinear a la izquierda",
"Align center" : "Centrar",
"Align right" : "Alinear a la derecha",
"List" : "Lista",
"List item within a list" : "Elemento de lista dentro de una lista",
"List item within a list (alias)" : "Elemento de lista dentro de una lista (alias)",
"BBCode help" : "Ayuda de BBCode",
"Built-in BBCodes" : "BBCodes incorporados",
"These BBCodes are available by default." : "Estos BBCodes están disponibles por defecto.",
"Custom BBCodes" : "BBCodes personalizados",
"These BBCodes are custom to this forum and configured by administrators." : "Estos BBCodes son personalizados para este foro y configurados por los administradores.",
"Example" : "Ejemplo",
"Replacement" : "Reemplazo",
"Loading custom BBCodes …" : "Cargando BBCodes personalizados …",
"No custom BBCodes configured." : "No hay BBCodes personalizados configurados.",
"Failed to load custom BBCodes" : "Error al cargar BBCodes personalizados",
"Insert emoji" : "Insertar emoji",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Pick a file to attach" : "Selecciona un archivo para adjuntar",
"_Thread_::_Threads_" : ["Hilo","Hilos","Hilos"],
"_Post_::_Posts_" : ["Publicación","Publicaciones","Publicaciones"],
"No description available" : "No hay descripción disponible",
"Create category header" : "Crear encabezado de categoría",
"Edit category header" : "Editar encabezado de categoría",
"Header name" : "Nombre del encabezado",
"Enter header name" : "Ingresa el nombre del encabezado",
"Header description" : "Descripción del encabezado",
"Enter header description (optional)" : "Ingresa la descripción del encabezado (opcional)",
"Sort order" : "Orden",
"Lower numbers appear first" : "Los números más bajos aparecen primero",
"Cancel" : "Cancelar",
"Create" : "Crear",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"The page you are looking for could not be found." : "La página que buscas no se pudo encontrar.",
"Back" : "Regresar",
"Go to home" : "Ir al inicio",
"Edited" : "Editado",
"Quote reply" : "Responder citando",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Are you sure you want to delete this post? This action cannot be undone." : "¿Estás seguro de que deseas eliminar esta publicación? Esta acción no se puede deshacer.",
"Unread" : "No leído",
"Edit your post …" : "Edita tu publicación …",
"Save" : "Guardar",
"Are you sure you want to discard your changes?" : "¿Estás seguro de que deseas descartar tus cambios?",
"Add reaction" : "Agregar reacción",
"React with {emoji}" : "Reaccionar con {emoji}",
"You reacted with {emoji}" : "Has reaccionado con {emoji}",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Tú y %n otra persona reaccionaron con {emoji}","Tú y %n otras personas reaccionaron con {emoji}","Tú y %n otras personas reaccionaron con {emoji}"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n persona reaccionó con {emoji}","%n personas reaccionaron con {emoji}","%n personas reaccionaron con {emoji}"],
"Write your reply …" : "Escribe tu respuesta …",
"Post reply" : "Publicar respuesta",
"Are you sure you want to discard your reply?" : "¿Estás seguro de que deseas descartar tu respuesta?",
"In thread" : "En el hilo",
"Thread unavailable" : "Hilo no disponible",
"Pinned thread" : "Hilo fijado",
"Locked thread" : "Hilo bloqueado",
"Uncategorized" : "Sin categoría",
"_%n post_::_%n posts_" : ["%n publicación","%n publicaciones","%n publicaciones"],
"_%n view_::_%n views_" : ["%n vista","%n vistas","%n vistas"],
"Replies" : "Respuestas",
"Views" : "Vistas",
"Title" : "Título",
"Enter thread title …" : "Ingresa el título del hilo …",
"Write your first post …" : "Escribe tu primera publicación …",
"Create thread" : "Crear hilo",
"Are you sure you want to discard this thread?" : "¿Estás seguro de que deseas descartar este hilo?",
"Refresh" : "Actualizar",
"Loading …" : "Cargando …",
"No categories yet" : "Aún no hay categorías",
"Categories will appear here once they are created." : "Las categorías aparecerán aquí una vez que se creen.",
"No categories in this section" : "No hay categorías en esta sección",
"Category not found" : "Categoría no encontrada",
"The category you are looking for does not exist or has been removed." : "La categoría que buscas no existe o ha sido eliminada.",
"Back to categories" : "Volver a categorías",
"New thread" : "Nuevo hilo",
"Error loading category" : "Error al cargar la categoría",
"No threads yet" : "Aún no hay hilos",
"Be the first to start a discussion in this category." : "Sé el primero en iniciar una discusión en esta categoría.",
"Retry" : "Reintentar",
"_Showing %n thread_::_Showing %n threads_" : ["Mostrando %n hilo","Mostrando %n hilos","Mostrando %n hilos"],
"An unexpected error occurred" : "Ocurrió un error inesperado",
"No category ID or slug provided" : "No se proporcionó ID o slug de categoría",
"Failed to load threads" : "Error al cargar hilos",
"Create New Thread" : "Crear nuevo hilo",
"In {category}" : "En {category}",
"Creating thread …" : "Creando hilo …",
"Thread created" : "Hilo creado",
"Failed to create thread" : "Error al crear hilo",
"No category specified" : "No se especificó categoría",
"Error" : "Error",
"First post" : "Primer publicación",
"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",
"This user has not posted any replies yet" : "Este usuario aún no ha publicado ninguna respuesta",
"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",
"Search in posts" : "Buscar en publicaciones",
"Syntax help" : "Ayuda de sintaxis",
"Search syntax" : "Sintaxis de búsqueda",
"Match exact phrase" : "Coincidir frase exacta",
"Both terms required" : "Ambos términos requeridos",
"Either term matches" : "Cualquier término coincide",
"Group conditions with parentheses" : "Agrupar condiciones con paréntesis",
"Exclude term from results" : "Excluir término de los resultados",
"Searching …" : "Buscando …",
"Search Error" : "Error de búsqueda",
"Enter a search query" : "Ingresa una consulta de búsqueda",
"Use the search box above to find threads and posts" : "Usa el cuadro de búsqueda arriba para encontrar hilos y publicaciones",
"No results found" : "No se encontraron resultados",
"Try different keywords or check your syntax" : "Prueba con otras palabras clave o verifica tu sintaxis",
"_%n thread found_::_%n threads found_" : ["%n hilo encontrado","%n hilos encontrados","%n hilos encontrados"],
"_%n post found_::_%n posts found_" : ["%n publicación encontrada","%n publicaciones encontradas","%n publicaciones encontradas"],
"Please enter a search query" : "Por favor ingresa una consulta de búsqueda",
"Please select at least one search scope" : "Por favor selecciona al menos un ámbito de búsqueda",
"Failed to search" : "Error al buscar",
"Thread not found" : "Hilo no encontrado",
"The thread you are looking for does not exist or has been removed." : "El hilo que buscas no existe o ha sido eliminado.",
"Back to {category}" : "Volver a {category}",
"Reply" : "Responder",
"Error loading thread" : "Error al cargar el hilo",
"No posts yet" : "Aún no hay publicaciones",
"Be the first to post in this thread." : "Sé el primero en publicar en este hilo.",
"by" : "por",
"This thread is locked. Only moderators can post replies." : "Este hilo está bloqueado. Solo los moderadores pueden publicar respuestas.",
"You must be signed in to reply to this thread." : "Debes iniciar sesión para responder a este hilo.",
"Sign in to reply" : "Inicia sesión para responder",
"_Showing %n post_::_Showing %n posts_" : ["Mostrando %n publicación","Mostrando %n publicaciones","Mostrando %n publicaciones"],
"Lock thread" : "Bloquear hilo",
"Unlock thread" : "Desbloquear hilo",
"Pin thread" : "Fijar hilo",
"Unpin thread" : "Desfijar hilo",
"Thread locked" : "Hilo bloqueado",
"Thread unlocked" : "Hilo desbloqueado",
"Thread pinned" : "Hilo fijado",
"Thread unpinned" : "Hilo desfijado",
"Subscribe" : "Suscribirse",
"Subscribed" : "Suscrito",
"Subscribed to thread" : "Suscrito al hilo",
"Unsubscribed from thread" : "No suscrito al hilo",
"Edit title" : "Editar título",
"Move thread" : "Mover hilo",
"No thread ID or slug provided" : "No se proporcionó ID o slug del hilo",
"Failed to load posts" : "Error al cargar publicaciones",
"Post updated" : "Publicación actualizada",
"Failed to update post" : "Error al actualizar publicación",
"Thread deleted" : "Hilo eliminado",
"Post deleted" : "Publicación eliminada",
"Failed to delete post" : "Error al eliminar publicación",
"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",
"Notifications" : "Notificaciones",
"Configure how you receive notifications" : "Configura cómo recibir notificaciones",
"Auto-subscribe to threads I create" : "Suscribirse automáticamente a los hilos que creo",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Al habilitarlo, recibirás automáticamente notificaciones de respuestas a los hilos que crees",
"Files" : "Archivo",
"Preferences saved" : "Preferencias guardadas",
"Failed to save preferences" : "Error al guardar preferencias",
"BBCode management" : "Gestión de BBCode",
"Manage custom BBCode tags for post formatting" : "Gestiona etiquetas BBCode personalizadas para el formato de publicaciones",
"Error loading BBCodes" : "Error al cargar BBCodes",
"Create BBCode" : "Crear BBCode",
"Enable" : "Habilitar",
"Disable" : "Deshabilitar",
"Enabled BBCodes" : "BBCodes habilitados",
"These BBCode tags are currently active" : "Estas etiquetas BBCode están actualmente activas",
"Disabled BBCodes" : "BBCodes deshabilitados",
"These BBCode tags are currently inactive" : "Estas etiquetas BBCode están actualmente inactivas",
"No enabled BBCodes" : "No hay BBCodes habilitados",
"Parses Inner" : "Parsear contenido interno",
"Delete BBCode" : "Eliminar BBCode",
"Are you sure you want to delete the BBCode tag [{tag}]?" : "¿Estás seguro de que deseas eliminar la etiqueta BBCode [{tag}]?",
"This action cannot be undone." : "Esta acción no se puede deshacer.",
"Edit BBCode" : "Editar BBCode",
"Tag" : "Etiqueta",
"e.g., b, i, url, color" : "ej., b, i, url, color",
"The BBCode tag name (without brackets)" : "Nombre de la etiqueta BBCode (sin corchetes)",
"HTML replacement" : "Reemplazo HTML",
"e.g., {strongStart}{content}{strongEnd}" : "ej., {strongStart}{content}{strongEnd}",
"Use {content} for the tag content and {paramName} for parameters" : "Usa {content} para el contenido de la etiqueta y {paramName} para los parámetros",
"e.g., {tagStart}Hello world{tagEnd}" : "ej., {tagStart}Hola mundo{tagEnd}",
"Example usage of this BBCode tag" : "Ejemplo de uso de esta etiqueta BBCode",
"Description" : "Descripción",
"Brief description of what this BBCode does" : "Breve descripción de lo que hace este BBCode",
"Enabled" : "Habilitado",
"Parse inner content" : "Parsear contenido interno",
"If enabled, BBCode tags inside this tag will also be parsed" : "Si está habilitado, las etiquetas BBCode dentro de esta etiqueta también serán parseadas",
"Create category" : "Crear categoría",
"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 --",
"Name" : "Nombre",
"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",
"Control which roles can access and moderate this category" : "Controla qué roles pueden acceder y moderar esta categoría",
"Roles that can view" : "Roles que pueden ver",
"Select roles that can view this category and its threads" : "Selecciona los roles que pueden ver esta categoría y sus hilos",
"Roles that can moderate" : "Roles que pueden moderar",
"Select roles that can moderate (edit/delete) content in this category" : "Selecciona los roles que pueden moderar (editar/eliminar) contenido en esta categoría",
"Select roles …" : "Seleccionar roles …",
"Manage forum categories and organization" : "Gestionar categorías y organización del foro",
"Error loading categories" : "Error al cargar categorías",
"No categories in this header" : "No hay categorías en este encabezado",
"Delete category" : "Eliminar categoría",
"Are you sure you want to delete the category \"{name}\"?" : "¿Estás seguro de que deseas eliminar la categoría \"{name}\"?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Esta categoría contiene %n hilo.","Esta categoría contiene %n hilos.","Esta categoría contiene %n hilos."],
"What should happen to the threads?" : "¿Qué debería ocurrir con los hilos?",
"Move threads to another category" : "Mover hilos a otra categoría",
"Delete all threads (soft delete)" : "Eliminar todos los hilos (eliminación suave)",
"Threads will be hidden but not permanently deleted" : "Los hilos se ocultarán pero no se eliminarán permanentemente",
"Select target category" : "Seleccionar categoría de destino",
"-- Select a category --" : "-- Selecciona una categoría --",
"Create header" : "Crear encabezado",
"_%n category_::_%n categories_" : ["%n categoría","%n categorías","%n categorías"],
"_%n thread_::_%n threads_" : ["%n hilo","%n hilos","%n hilos"],
"Delete header" : "Eliminar encabezado",
"Are you sure you want to delete the header \"{name}\"?" : "¿Estás seguro de que deseas eliminar el encabezado \"{name}\"?",
"_This header contains %n category._::_This header contains %n categories._" : ["Este encabezado contiene %n categoría.","Este encabezado contiene %n categorías.","Este encabezado contiene %n categorías."],
"This action cannot be undone" : "Esta acción no se puede deshacer",
"What should happen to the categories?" : "¿Qué debería ocurrir con las categorías?",
"Move categories to another header" : "Mover categorías a otro encabezado",
"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",
"Move up" : "Mover arriba",
"Move down" : "Mover abajo",
"Admin dashboard" : "Panel de administración",
"Overview of forum activity and statistics" : "Resumen de la actividad y estadísticas del foro",
"Loading statistics …" : "Cargando estadísticas …",
"Error loading dashboard" : "Error al cargar panel",
"Total statistics" : "Estadísticas totales",
"Total users" : "Total de usuarios",
"Total threads" : "Total de hilos",
"Total posts" : "Total de publicaciones",
"Total categories" : "Total de categorías",
"Recent activity (last 7 days)" : "Actividad reciente (últimos 7 días)",
"New users" : "Nuevos usuarios",
"New threads" : "Nuevos hilos",
"New posts" : "Nuevas publicaciones",
"Top contributors" : "Principales contribuyentes",
"No contributors yet" : "Aún no hay contribuyentes",
"Last 7 days" : "Últimos 7 días",
"All time" : "Todo el tiempo",
"General settings" : "Configuración general",
"Configure general forum settings" : "Configurar ajustes generales del foro",
"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",
"Welcome to the forum" : "Bienvenido al foro",
"A brief description shown below the title" : "Breve descripción mostrada debajo del título",
"Access control" : "Control de acceso",
"Manage who can access the forum" : "Gestionar quién puede acceder al foro",
"Allow guest access" : "Permitir acceso de invitados",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Cuando está habilitado, los usuarios no autenticados pueden ver el contenido del foro en modo solo lectura",
"Settings saved" : "Ajustes guardados",
"Failed to save settings" : "Error al guardar ajustes",
"Create role" : "Crear rol",
"Edit role" : "Editar rol",
"Configure role permissions and category access" : "Configurar permisos del rol y acceso a categorías",
"Error loading role" : "Error al cargar rol",
"Enter role name" : "Ingresa el nombre del rol",
"Enter role description (optional)" : "Ingresa la descripción del rol (opcional)",
"System role names cannot be changed" : "Los nombres de roles del sistema no se pueden cambiar",
"Colors" : "Colores",
"Set colors for this role badge" : "Establecer colores para la insignia de este rol",
"Light mode color" : "Color para modo claro",
"Dark mode color" : "Color para modo oscuro",
"Reset" : "Restablecer",
"Role permissions" : "Permisos de rol",
"Set global permissions for this role" : "Establecer permisos globales para este rol",
"Can access admin tools" : "Puede acceder a herramientas de administración",
"Allow access to the admin dashboard and tools" : "Permitir acceso al panel de administración y herramientas",
"Can edit roles" : "Puede editar roles",
"Allow creating, editing and deleting roles" : "Permitir crear, editar y eliminar roles",
"Can edit categories" : "Puede editar categorías",
"Allow creating, editing and deleting categories" : "Permitir crear, editar y eliminar categorías",
"Category permissions" : "Permisos de categoría",
"Set which categories this role can access" : "Establecer a qué categorías puede acceder este rol",
"Category" : "Categoría",
"Can view" : "Puede ver",
"Can moderate" : "Puede moderar",
"Allow" : "Permitir",
"No categories available" : "No hay categorías disponibles",
"Admin role must have all permissions enabled" : "El rol de administrador debe tener todos los permisos habilitados",
"Admin role has full access to all categories" : "El rol de administrador tiene acceso completo a todas las categorías",
"Guest role cannot have admin permissions" : "El rol de invitado no puede tener permisos de administrador",
"Guest role cannot moderate categories" : "El rol de invitado no puede moderar categorías",
"Guest access is currently disabled" : "El acceso de invitados está deshabilitado actualmente",
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Los usuarios invitados no podrán acceder al foro hasta que se habilite el acceso de invitados en la configuración del foro.",
"Go to forum settings" : "Ir a la configuración del foro",
"Default role cannot moderate categories" : "El rol predeterminado no puede moderar categorías",
"Role management" : "Gestión de roles",
"Create and manage forum roles and permissions" : "Crear y gestionar roles y permisos del foro",
"Loading roles …" : "Cargando roles …",
"Error loading roles" : "Error al cargar roles",
"No roles found" : "No se encontraron roles",
"Create your first role to get started" : "Crea tu primer rol para comenzar",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"No description" : "Sin descripción",
"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",
"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",
"Posts" : "Publicaciones",
"Joined" : "Se unió",
"Status" : "Estado",
"Active" : "Activo",
"Deleted" : "Eliminado",
"No roles" : "Sin roles",
"Select roles" : "Seleccionar roles",
"Edit roles" : "Editar roles",
"Edit user roles" : "Editar roles de usuario"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

48
l10n/es_GT.js Normal file
View File

@@ -0,0 +1,48 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Ususario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

46
l10n/es_GT.json Normal file
View File

@@ -0,0 +1,46 @@
{ "translations": {
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Ususario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

49
l10n/es_HN.js Normal file
View File

@@ -0,0 +1,49 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

47
l10n/es_HN.json Normal file
View File

@@ -0,0 +1,47 @@
{ "translations": {
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

76
l10n/es_MX.js Normal file
View File

@@ -0,0 +1,76 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Support" : "Soporte",
"Bold text" : "Texto en negritas",
"Underlined text" : "Texto subrayado",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : " Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"List" : "Lista",
"Insert emoji" : "Insertar emoticono",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Create" : "Crear",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Back" : "Atrás",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Unread" : "No leído",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Views" : "Vistas",
"Refresh" : "Actualizar",
"Loading …" : "Cargando …",
"Retry" : "Reintentar",
"Error" : "Error",
"Searching …" : "Buscando …",
"Back to {category}" : "Volver a {category}",
"by" : "por",
"Subscribe" : "Suscríbete",
"Subscribed" : "Suscrito",
"Move thread" : "Mover hilo",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Enable" : "Activar",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Move up" : "Mover arriba",
"Move down" : "Mover abajo",
"Last 7 days" : "Últimos 7 días",
"All time" : "Tiempo total",
"General settings" : "Configuraciones generales",
"Appearance" : "Apariencia",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Failed to save settings" : "No se pudo guardar la configuración",
"Reset" : "Reiniciar",
"Category" : "Categoría",
"Allow" : "Permitir",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"User management" : "Administración de usuarios",
"Loading users …" : "Cargando usuarios …",
"No users found" : "No se encontraron usuarios",
"Joined" : "Se ha unido",
"Active" : "Activo",
"Deleted" : "Eliminado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

74
l10n/es_MX.json Normal file
View File

@@ -0,0 +1,74 @@
{ "translations": {
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Support" : "Soporte",
"Bold text" : "Texto en negritas",
"Underlined text" : "Texto subrayado",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : " Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"List" : "Lista",
"Insert emoji" : "Insertar emoticono",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Create" : "Crear",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Back" : "Atrás",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Unread" : "No leído",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Views" : "Vistas",
"Refresh" : "Actualizar",
"Loading …" : "Cargando …",
"Retry" : "Reintentar",
"Error" : "Error",
"Searching …" : "Buscando …",
"Back to {category}" : "Volver a {category}",
"by" : "por",
"Subscribe" : "Suscríbete",
"Subscribed" : "Suscrito",
"Move thread" : "Mover hilo",
"Preferences" : "Preferencias",
"Files" : "Archivo",
"Enable" : "Activar",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"Move up" : "Mover arriba",
"Move down" : "Mover abajo",
"Last 7 days" : "Últimos 7 días",
"All time" : "Tiempo total",
"General settings" : "Configuraciones generales",
"Appearance" : "Apariencia",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Failed to save settings" : "No se pudo guardar la configuración",
"Reset" : "Reiniciar",
"Category" : "Categoría",
"Allow" : "Permitir",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"User management" : "Administración de usuarios",
"Loading users …" : "Cargando usuarios …",
"No users found" : "No se encontraron usuarios",
"Joined" : "Se ha unido",
"Active" : "Activo",
"Deleted" : "Eliminado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

50
l10n/es_NI.js Normal file
View File

@@ -0,0 +1,50 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

48
l10n/es_NI.json Normal file
View File

@@ -0,0 +1,48 @@
{ "translations": {
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

50
l10n/es_PA.js Normal file
View File

@@ -0,0 +1,50 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

48
l10n/es_PA.json Normal file
View File

@@ -0,0 +1,48 @@
{ "translations": {
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

48
l10n/es_PE.js Normal file
View File

@@ -0,0 +1,48 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

46
l10n/es_PE.json Normal file
View File

@@ -0,0 +1,46 @@
{ "translations": {
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

49
l10n/es_PR.js Normal file
View File

@@ -0,0 +1,49 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

47
l10n/es_PR.json Normal file
View File

@@ -0,0 +1,47 @@
{ "translations": {
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

51
l10n/es_PY.js Normal file
View File

@@ -0,0 +1,51 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"Back to {category}" : "Volver a {category}",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

49
l10n/es_PY.json Normal file
View File

@@ -0,0 +1,49 @@
{ "translations": {
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"Back to {category}" : "Volver a {category}",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

49
l10n/es_SV.js Normal file
View File

@@ -0,0 +1,49 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

47
l10n/es_SV.json Normal file
View File

@@ -0,0 +1,47 @@
{ "translations": {
"Admin" : "Admin",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Close" : "Cerrar",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

49
l10n/es_UY.js Normal file
View File

@@ -0,0 +1,49 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

47
l10n/es_UY.json Normal file
View File

@@ -0,0 +1,47 @@
{ "translations": {
"Admin" : "Administración",
"Moderator" : "Moderador",
"User" : "Usuario",
"General" : "General",
"Forum" : "Foro",
"Search" : "Buscar",
"Home" : "Inicio",
"Dashboard" : "Tablero de control",
"Users" : "Usuarios",
"Categories" : "Categorías",
"Collapse" : "Colapsar",
"Hello world!" : "¡Hola mundo!",
"Upload failed" : "Falla en la carga",
"Cancel" : "Cancel",
"Update" : "Actualizar",
"Move" : "Mover",
"Page not found" : "Página no encontrada",
"Edit" : "Editar",
"Delete" : "Borrar",
"Save" : "Guardar",
"Uncategorized" : "Sin categoría",
"Title" : "Título",
"Refresh" : "Actualizar",
"Retry" : "Reintentar",
"Error" : "Error",
"by" : "por",
"Subscribe" : "Suscribir",
"Files" : "Archivo",
"Disable" : "Deshabilitar",
"Description" : "Descripción",
"Enabled" : "Habilitado",
"Name" : "Nombre",
"New" : "Nuevo",
"Permissions" : "Permisos",
"General settings" : "Configuraciones generales",
"Access control" : "Control de acceso",
"Settings saved" : "Se han guardado las configuraciones ",
"Reset" : "Restablecer",
"Category" : "Categoría",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Acciones",
"Joined" : "Se ha unido",
"Deleted" : "Borrado"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

310
l10n/et_EE.js Normal file
View File

@@ -0,0 +1,310 @@
OC.L10N.register(
"forum",
{
"Admin" : "Peakasutaja",
"Administrator role with full permissions" : "Peakasutajal on kõik vajalikud õigused",
"Moderator" : "Moderaator",
"Moderator role with elevated permissions" : "Moderaatori roll täiendavate õigustega",
"User" : "Kasutaja",
"Default user role with basic permissions" : "Vaikimisi kasutaja mõnede lihtsamate õigustega",
"Guest" : "Külaline",
"Guest role for unauthenticated users with read-only access" : "Vaid lugemisõigusega külalise roll autentimata kasutajatele",
"General" : "Üldine",
"General discussion categories" : "Üldiste arutelude kategooriad",
"General discussions" : "Üldised arutelud",
"A place for general conversations and discussions" : "Koht üldiste arutelude ja vestluste jaoks",
"Support" : "Kasutajatugi",
"Ask questions about the forum, provide feedback or report issues." : "Küsi foorumi kohta, jaga tagasisidet või teata vigadest.",
"Inline code" : "Koodilõik tekstis",
"Spoiler title" : "Spolileri/tujurikkuja pealkiri",
"Hidden content" : "Peidetud sisu",
"Spoilers" : "Spoilerid/tujurikkujad",
"Attachment" : "Manus",
"Welcome to Nextcloud Forums" : "Tere tulemast kasutama Nextcloudi Foorumit",
"Welcome to the Nextcloud Forums!" : "Tere tulemast kasutama rakendust Nextcloudi Foorumid!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "See on kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris. Siin saad arutleda erinevatel teemadel, jagada mõtteid ning osaleda ühistöös.",
"Features:" : "Foorumi võimalused:",
"Create and reply to threads" : "Jutulõngade loomine ja neile vastamine",
"Organize discussions by categories" : "Vestluse haldamine kategooriate kaupa",
"Use BBCode for rich text formatting" : "BBCode'i kasutamine teksti ja sisu vormindamiseks",
"Attach files from your Nextcloud storage" : "Failide lisamine manusena oma Nextcloudi andmeruumist",
"React to posts" : "Postitustele reageerimine",
"Track read/unread threads" : "Loetud ja lugemata jutulõngade jälgimine",
"BBCode examples:" : "BBCode'i näited:",
"Bold text" : "Tekst paksus kirjas",
"Use %1$stext%2$s" : "selleks kasuta: %1$stext%2$s",
"Italic text" : "Tekst kaldkirjas",
"Underlined text" : "Allajoonitud tekst",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Alusta uut keskustelu või vasta olemasolevale jutulõngale. Soovime sulle toimekat suhtlust!",
"Forum" : "Foorum",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} uus vastus jutulõngas {thread}","{count} uut vastust jutulõngas {thread}"],
"Welcome to the forum!" : "Tere tulemast foorumisse!",
"Deleted user" : "Kustutatud kasutaja",
"A community-driven forum built right into your Nextcloud instance" : "Kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris.",
"Search" : "Otsi",
"Home" : "Avaleht",
"User preferences" : "Kasutaja eelistused",
"Dashboard" : "Töölaud/Juhtpaneel",
"Forum settings" : "Foorumi seadistused",
"Users" : "Kasutajad",
"Roles" : "Rollid",
"Categories" : "Kategooriad",
"BBCodes" : "BBCode'i märgistus",
"Expand" : "Laienda",
"Collapse" : "Ahenda",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Palun arvesta:{bEnd} Manusena lisatud failid on nähtavad kõikidele foorumi osalistele sõltumata failide jagamise seadistustest.",
"Drop file here to upload" : "Üleslaadimiseks lohista fail siia",
"Hello world!" : "Tere maailm!",
"Hello moon!" : "Tere kuu!",
"Font style bold" : "Paksus kirjas kirjatüübiga tekst",
"Font style italic" : "Kaldkirjas kirjatüübiga tekst",
"Font style struck through" : "Läbikriipsutatud kirjatüübiga tekst",
"Font style underlined" : "Allajoonitud kirjatüübiga tekst",
"Code" : "Kood",
"Email (clickable)" : "E-posti aadress (klikatav)",
"URL (clickable)" : "Võrguaadress (klikatav)",
"Image (not clickable)" : "Pilt (mitteklikatav)",
"Quote" : "Tsitaat",
"Embedded YouTube video" : "Lõimitud Youtube'i video",
"Font (name)" : "Kirjatüüp (nimi)",
"Font size" : "Kirjasuurus",
"Font color" : "Kirjatüübi värv",
"Align left" : "Joondamine vasakule",
"Align center" : "Joondamine keskele",
"Align right" : "Joondamine paremale",
"List" : "Loend",
"List item within a list" : "Loend loendi sees",
"List item within a list (alias)" : "Loend loendi sees (alias)",
"BBCode help" : "BBCode'i abiteave",
"Insert emoji" : "Lisa emoji",
"Pick file from Nextcloud" : "Vali fail Nextcloudist",
"Upload file to Nextcloud" : "Laadi fail Nextcloudi",
"Uploading file …" : "Fail on ülesaadimisel…",
"Upload failed" : "Üleslaadimine ei õnnestunud",
"Close" : "Sulge",
"Pick a file to attach" : "Vali manuseks lisatav fail",
"Failed to upload file" : "Faili üleslaadimine ei õnnestunud",
"_Thread_::_Threads_" : ["Jutulõng","Jutulõngad"],
"_Post_::_Posts_" : ["Postitus","Postitused"],
"No description available" : "Kirjeldust pole saadaval",
"Create category header" : "Lisa kategooria päis",
"Edit category header" : "Muuda kategooria päist",
"Header name" : "Kategooria päise nimi",
"Enter header name" : "Sisesta päise nimi",
"Header description" : "Kategooria päise kirjeldus",
"Enter header description (optional)" : "Sisesta päise kirjeldus (pole kohustuslik)",
"Sort order" : "Järjestus",
"Cancel" : "Katkesta",
"Create" : "Lisa",
"Update" : "Uuenda",
"Move thread to category" : "Tõsta jutulõng siia kategooriasse",
"Select the category to move this thread to:" : "Vali kategooria, kuhu sa jutulõnga tahad tõsta:",
"Select a category …" : "Vali kategooria…",
"Loading categories …" : "Laadin kategooriaid…",
"Move" : "Teisalda",
"Cannot move to a category header. Please select a category instead." : "Tõstmine kategooria päisesse pole võimalik. Selle asemel palun vali kategooria.",
"This thread is already in this category." : "See jutulõng juba asub antud kaustas.",
"Failed to load categories" : "Kategooria laadimine ei õnnestunud",
"Page not found" : "Lehekülge ei leidu",
"The page you are looking for could not be found." : "Sinu otsitavat lehte polnud võimalik leida.",
"Back" : "Tagasi",
"Go to home" : "Mine avalehele",
"Edited" : "Muudetud",
"Quote reply" : "Tsiteeri vastust",
"Edit" : "Muuda",
"Delete" : "Kustuta",
"Are you sure you want to delete this post? This action cannot be undone." : "Kas sa oled kindel, et soovid selle postituse kustutada? Seda tegevust ei saa tagasi pöörata.",
"Unread" : "Lugemata",
"Edit your post …" : "Muuda postitust…",
"Save" : "Salvesta",
"Are you sure you want to discard your changes?" : "Kas sa oled kindel, et soovid oma muudatustest loobuda?",
"Add reaction" : "Lisa reaktsioon",
"React with {emoji}" : "Reageeri {emoji} emojiga",
"Write your reply …" : "Koosta oma vastus…",
"Post reply" : "Postita vastus",
"Are you sure you want to discard your reply?" : "Kas sa oled kindel, et soovid oma vastusest loobuda?",
"In thread" : "Jutulõngas",
"Thread unavailable" : "Jutulõng pole saadaval",
"Pinned thread" : "Esiletõstetud jutulõng",
"Locked thread" : "Lukustatud jutulõng",
"Uncategorized" : "Määratlemata",
"_%n post_::_%n posts_" : ["%n postitus","%n postitust"],
"_%n view_::_%n views_" : ["%n vaatamine","%n vaatamist"],
"Replies" : "Vastused",
"Views" : "Vaated",
"Title" : "Pealkiri",
"Enter thread title …" : "Sisesta jutulõnga pealkiri…",
"Write your first post …" : "Koosta oma esimene postitus…",
"Create thread" : "Alusta jutulõnga",
"Are you sure you want to discard this thread?" : "Kas sa oled kindel, et soovid selles jutulõngast loobuda?",
"Refresh" : "Värskenda",
"Loading …" : "Laadin...",
"No categories yet" : "Kategooriaid veel pole",
"Categories will appear here once they are created." : "Kategooriad on siin nähtavad, kui nad saavad loodud.",
"No categories in this section" : "Selles rubriigis pole veel kategooriaid",
"Category not found" : "Kategooriat ei leidu",
"The category you are looking for does not exist or has been removed." : "Sinu otsitavat kategooriat pole olemas või ta on eemaldatud.",
"Back to categories" : "Tagasi kategooriate juurde",
"New thread" : "Uus jutulõng",
"Error loading category" : "Viga kategooria laadimisel",
"No threads yet" : "Jutulõngu veel pole",
"Be the first to start a discussion in this category." : "Ole esimene, kes selles kategoorias alustab vestlust.",
"Retry" : "Proovi uuesti",
"_Showing %n thread_::_Showing %n threads_" : ["Näitan %n jutulõnga","Näitan %n jutulõnga"],
"An unexpected error occurred" : "Tekkis ootamatu viga",
"No category ID or slug provided" : "Ühtegi kategooria tunnust või aadressi lõppu pole lisatud",
"Failed to load threads" : "Jutulõngade laadimine ei õnnestunud",
"Create New Thread" : "Alusta jutulõnga",
"In {category}" : "Kategoorias {category} ",
"Creating thread …" : "Alustan jutulõnga…",
"Thread created" : "Jutulõng on lisandunud",
"Failed to create thread" : "Jutulõnga alustamine ei õnnestunud",
"No category specified" : "Ühtegi kategooriat pole määratletud",
"Error" : "Viga",
"First post" : "Esimene postitus",
"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 posted 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 posts" : "Otsi vastuste seast",
"Syntax help" : "Abiteave süntaksi kohta",
"Search syntax" : "Otsingusüntaks",
"Searching …" : "Otsin...",
"Search Error" : "Otsinguviga",
"No results found" : "Otsingutulemusi ei leidu",
"Failed to search" : "Otsimine ei õnnestunud",
"Thread not found" : "Jutulõnga ei leidu",
"The thread you are looking for does not exist or has been removed." : "Sinu otsitavat jutulõnga pole olemas või ta on eemaldatud.",
"Back to {category}" : "Tagasi siia: {category}",
"Reply" : "Vasta",
"Error loading thread" : "Viga jutulõnga laadimisel",
"No posts yet" : "Postitusi veel pole",
"Be the first to post in this thread." : "Ole esimene, kes selles jutulõngas alustab vestlust.",
"by" : "kasutajalt",
"Subscribe" : "Telli",
"Subscribed" : "Tellitud",
"Subscribed to thread" : "Oled tellinud jutulõnga",
"Unsubscribed from thread" : "Oled loobunud jutulõnga tellimisest",
"Edit title" : "Muuda pealkirja",
"Save title" : "Salvesta pealkirja",
"Thread title updated" : "Jutulõnga pealkiri on uuendatud",
"Move thread" : "Tõsta jutulõng mujale",
"Thread moved successfully" : "Jutulõnga ümbertõstmine õnnestus",
"No thread ID or slug provided" : "Ühtegi jutulõnga tunnust või aadressi lõppu pole lisatud",
"Failed to load posts" : "Postituste laadimine ei õnnestunud",
"Post updated" : "Postitus on uuendatud",
"Failed to update post" : "Postituse uuendamine ei õnnestunud",
"Thread deleted" : "Jutulõng on kustutatud",
"Post deleted" : "Postitus on kustutatud",
"Failed to update thread title" : "Jutulõnga pealkirja ei õnnestunud uuendada",
"Failed to move thread" : "Jutulõnga ümbertõstmine ei õnnestunud",
"Preferences" : "Eelistused",
"Notifications" : "Teavitused",
"Files" : "Failid",
"Configure file upload settings" : "Seadista failide üleslaadimise seadistusi",
"Upload directory" : "Üleslaadimiskaust",
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Postituste manustena lisatud failid laaditakse sellesse kausta, mida näed oma Nextcloudi failirakenduses",
"Browse" : "Sirvi",
"Preferences saved" : "Eelistused on salvestatud",
"Failed to save preferences" : "Eelistuste salvestamine ei õnnestunud",
"Select upload directory" : "Vali kaust, kust tahad üles laadida",
"BBCode management" : "BBCode'i haldus",
"Enable" : "Võta kasutusele",
"Disable" : "Lülita välja",
"Delete BBCode" : "Kustuta BBCode",
"This action cannot be undone." : "Seda tegevust ei saa tagasi võtta.",
"Tag" : "Silt",
"Description" : "Kirjeldus",
"Brief description of what this BBCode does" : "Lühikirjeldus, mida see BBCode teeb",
"Enabled" : "Sisse lülitatud",
"Create category" : "Lisa kategooria",
"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 --",
"Name" : "Nimi",
"Enter category name" : "Sisesta kategooria nimi",
"Slug cannot be changed after category creation" : "Peale kategooria lisamist ei saa aadressi lõputunnust enam muuta",
"New" : "Uus",
"Permissions" : "Õigused",
"Delete category" : "Kustuta kategooria",
"_%n category_::_%n categories_" : ["%n kategooria","%n kategooriat"],
"_%n thread_::_%n threads_" : ["%n jutulõng","%n jutulõnga"],
"Delete header" : "Kustuta päis",
"Move up" : "Liiguta ülespoole",
"Move down" : "Liiguta allapoole",
"Total users" : "Kasutajaid kokku",
"Total threads" : "Jutulõngu kokku",
"Total posts" : "Postitusi kokku",
"Total categories" : "Kategooriaid kokku",
"New users" : "Uued kasutajad",
"New threads" : "Uued jutulõngad",
"New posts" : "Uues postitused",
"Top contributors" : "Toimekamad kaasautorid",
"Last 7 days" : "Viimase 7 päeva jooksul",
"General settings" : "Üldised seadistused",
"Appearance" : "Välimus",
"Welcome to the forum" : "Tere tulemast foorumisse",
"Access control" : "Ligipääsukontroll",
"Settings saved" : "Seadistused on salvestatud",
"Failed to save settings" : "Seadistuste salvestamine ei õnnestunud",
"Create role" : "Lisa roll",
"Edit role" : "Muuda rolli",
"Configure role permissions and category access" : "Seadista rollide õigusi ja ligipääsu kategooriatele",
"Error loading role" : "Viga rolli laadimisel",
"Enter role name" : "Sisesta rolli nimi",
"Enter role description (optional)" : "Sisesta rolli kirjeldus (pole kohustuslik)",
"System role names cannot be changed" : "Süsteemsete rollide nimesid ei saa muuta",
"Colors" : "Värvid",
"Reset" : "Lähtesta",
"Role permissions" : "Rolli õigused",
"Set global permissions for this role" : "Määra selle rolli üldised õigused",
"Can access admin tools" : "Võib kasutada süsteemitarvikuid",
"Allow access to the admin dashboard and tools" : "Kasutab ligipääsu peakasutajate töölauale ja tarviklutele",
"Can edit roles" : "Võib rolle muuta",
"Allow creating, editing and deleting roles" : "Luba rollide lisamine, muutmine ja kustutamine",
"Can edit categories" : "Võib kategooriaid muuta",
"Allow creating, editing and deleting categories" : "Luba kategooriate lisamine, muutmine ja kustutamine",
"Category permissions" : "Kategooria õigused",
"Set which categories this role can access" : "Mis kategooriatele rollil on ligipääs",
"Category" : "Kategooria",
"Can view" : "Võib vaadata",
"Can moderate" : "Võib modereerida",
"Allow" : "Luba",
"No categories available" : "Ühtegi kategooriat pole saadaval",
"Admin role has full access to all categories" : "Peakasutaja rollil on ligipääs kõikidele kategooriatele",
"You can control which categories guests can view using the checkboxes below." : "Märkides alljärgnevaid märkeruute saad alljärgnevas hallata missuguseid kategooriaid külalised saavad vaadata.",
"Role management" : "Rollide haldus",
"Create and manage forum roles and permissions" : "Lisa ja halda foorumi rolle ja õigusi",
"Loading roles …" : "Laadin rolle…",
"Error loading roles" : "Viga rollide laadimisel",
"No roles found" : "Rolle ei leidu",
"Create your first role to get started" : "Alustamiseks lisa foorumi esimene roll",
"ID" : "Tunnus",
"Created" : "Loodud",
"Actions" : "Tegevused",
"No description" : "Kirjeldus puudub",
"System roles cannot be deleted" : "Süsteemseid rolle ei saa kustutada",
"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",
"Posts" : "Postitused",
"Joined" : "Liitus",
"Status" : "Olek",
"Active" : "Aktiivne",
"Deleted" : "Kustutatud",
"No roles" : "Rolle pole",
"Select roles" : "Vali rollid",
"Edit roles" : "Muuda rolle",
"Edit user roles" : "Muuda kasutajarolle"
},
"nplurals=2; plural=(n != 1);");

308
l10n/et_EE.json Normal file
View File

@@ -0,0 +1,308 @@
{ "translations": {
"Admin" : "Peakasutaja",
"Administrator role with full permissions" : "Peakasutajal on kõik vajalikud õigused",
"Moderator" : "Moderaator",
"Moderator role with elevated permissions" : "Moderaatori roll täiendavate õigustega",
"User" : "Kasutaja",
"Default user role with basic permissions" : "Vaikimisi kasutaja mõnede lihtsamate õigustega",
"Guest" : "Külaline",
"Guest role for unauthenticated users with read-only access" : "Vaid lugemisõigusega külalise roll autentimata kasutajatele",
"General" : "Üldine",
"General discussion categories" : "Üldiste arutelude kategooriad",
"General discussions" : "Üldised arutelud",
"A place for general conversations and discussions" : "Koht üldiste arutelude ja vestluste jaoks",
"Support" : "Kasutajatugi",
"Ask questions about the forum, provide feedback or report issues." : "Küsi foorumi kohta, jaga tagasisidet või teata vigadest.",
"Inline code" : "Koodilõik tekstis",
"Spoiler title" : "Spolileri/tujurikkuja pealkiri",
"Hidden content" : "Peidetud sisu",
"Spoilers" : "Spoilerid/tujurikkujad",
"Attachment" : "Manus",
"Welcome to Nextcloud Forums" : "Tere tulemast kasutama Nextcloudi Foorumit",
"Welcome to the Nextcloud Forums!" : "Tere tulemast kasutama rakendust Nextcloudi Foorumid!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "See on kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris. Siin saad arutleda erinevatel teemadel, jagada mõtteid ning osaleda ühistöös.",
"Features:" : "Foorumi võimalused:",
"Create and reply to threads" : "Jutulõngade loomine ja neile vastamine",
"Organize discussions by categories" : "Vestluse haldamine kategooriate kaupa",
"Use BBCode for rich text formatting" : "BBCode'i kasutamine teksti ja sisu vormindamiseks",
"Attach files from your Nextcloud storage" : "Failide lisamine manusena oma Nextcloudi andmeruumist",
"React to posts" : "Postitustele reageerimine",
"Track read/unread threads" : "Loetud ja lugemata jutulõngade jälgimine",
"BBCode examples:" : "BBCode'i näited:",
"Bold text" : "Tekst paksus kirjas",
"Use %1$stext%2$s" : "selleks kasuta: %1$stext%2$s",
"Italic text" : "Tekst kaldkirjas",
"Underlined text" : "Allajoonitud tekst",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Alusta uut keskustelu või vasta olemasolevale jutulõngale. Soovime sulle toimekat suhtlust!",
"Forum" : "Foorum",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} uus vastus jutulõngas {thread}","{count} uut vastust jutulõngas {thread}"],
"Welcome to the forum!" : "Tere tulemast foorumisse!",
"Deleted user" : "Kustutatud kasutaja",
"A community-driven forum built right into your Nextcloud instance" : "Kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris.",
"Search" : "Otsi",
"Home" : "Avaleht",
"User preferences" : "Kasutaja eelistused",
"Dashboard" : "Töölaud/Juhtpaneel",
"Forum settings" : "Foorumi seadistused",
"Users" : "Kasutajad",
"Roles" : "Rollid",
"Categories" : "Kategooriad",
"BBCodes" : "BBCode'i märgistus",
"Expand" : "Laienda",
"Collapse" : "Ahenda",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Palun arvesta:{bEnd} Manusena lisatud failid on nähtavad kõikidele foorumi osalistele sõltumata failide jagamise seadistustest.",
"Drop file here to upload" : "Üleslaadimiseks lohista fail siia",
"Hello world!" : "Tere maailm!",
"Hello moon!" : "Tere kuu!",
"Font style bold" : "Paksus kirjas kirjatüübiga tekst",
"Font style italic" : "Kaldkirjas kirjatüübiga tekst",
"Font style struck through" : "Läbikriipsutatud kirjatüübiga tekst",
"Font style underlined" : "Allajoonitud kirjatüübiga tekst",
"Code" : "Kood",
"Email (clickable)" : "E-posti aadress (klikatav)",
"URL (clickable)" : "Võrguaadress (klikatav)",
"Image (not clickable)" : "Pilt (mitteklikatav)",
"Quote" : "Tsitaat",
"Embedded YouTube video" : "Lõimitud Youtube'i video",
"Font (name)" : "Kirjatüüp (nimi)",
"Font size" : "Kirjasuurus",
"Font color" : "Kirjatüübi värv",
"Align left" : "Joondamine vasakule",
"Align center" : "Joondamine keskele",
"Align right" : "Joondamine paremale",
"List" : "Loend",
"List item within a list" : "Loend loendi sees",
"List item within a list (alias)" : "Loend loendi sees (alias)",
"BBCode help" : "BBCode'i abiteave",
"Insert emoji" : "Lisa emoji",
"Pick file from Nextcloud" : "Vali fail Nextcloudist",
"Upload file to Nextcloud" : "Laadi fail Nextcloudi",
"Uploading file …" : "Fail on ülesaadimisel…",
"Upload failed" : "Üleslaadimine ei õnnestunud",
"Close" : "Sulge",
"Pick a file to attach" : "Vali manuseks lisatav fail",
"Failed to upload file" : "Faili üleslaadimine ei õnnestunud",
"_Thread_::_Threads_" : ["Jutulõng","Jutulõngad"],
"_Post_::_Posts_" : ["Postitus","Postitused"],
"No description available" : "Kirjeldust pole saadaval",
"Create category header" : "Lisa kategooria päis",
"Edit category header" : "Muuda kategooria päist",
"Header name" : "Kategooria päise nimi",
"Enter header name" : "Sisesta päise nimi",
"Header description" : "Kategooria päise kirjeldus",
"Enter header description (optional)" : "Sisesta päise kirjeldus (pole kohustuslik)",
"Sort order" : "Järjestus",
"Cancel" : "Katkesta",
"Create" : "Lisa",
"Update" : "Uuenda",
"Move thread to category" : "Tõsta jutulõng siia kategooriasse",
"Select the category to move this thread to:" : "Vali kategooria, kuhu sa jutulõnga tahad tõsta:",
"Select a category …" : "Vali kategooria…",
"Loading categories …" : "Laadin kategooriaid…",
"Move" : "Teisalda",
"Cannot move to a category header. Please select a category instead." : "Tõstmine kategooria päisesse pole võimalik. Selle asemel palun vali kategooria.",
"This thread is already in this category." : "See jutulõng juba asub antud kaustas.",
"Failed to load categories" : "Kategooria laadimine ei õnnestunud",
"Page not found" : "Lehekülge ei leidu",
"The page you are looking for could not be found." : "Sinu otsitavat lehte polnud võimalik leida.",
"Back" : "Tagasi",
"Go to home" : "Mine avalehele",
"Edited" : "Muudetud",
"Quote reply" : "Tsiteeri vastust",
"Edit" : "Muuda",
"Delete" : "Kustuta",
"Are you sure you want to delete this post? This action cannot be undone." : "Kas sa oled kindel, et soovid selle postituse kustutada? Seda tegevust ei saa tagasi pöörata.",
"Unread" : "Lugemata",
"Edit your post …" : "Muuda postitust…",
"Save" : "Salvesta",
"Are you sure you want to discard your changes?" : "Kas sa oled kindel, et soovid oma muudatustest loobuda?",
"Add reaction" : "Lisa reaktsioon",
"React with {emoji}" : "Reageeri {emoji} emojiga",
"Write your reply …" : "Koosta oma vastus…",
"Post reply" : "Postita vastus",
"Are you sure you want to discard your reply?" : "Kas sa oled kindel, et soovid oma vastusest loobuda?",
"In thread" : "Jutulõngas",
"Thread unavailable" : "Jutulõng pole saadaval",
"Pinned thread" : "Esiletõstetud jutulõng",
"Locked thread" : "Lukustatud jutulõng",
"Uncategorized" : "Määratlemata",
"_%n post_::_%n posts_" : ["%n postitus","%n postitust"],
"_%n view_::_%n views_" : ["%n vaatamine","%n vaatamist"],
"Replies" : "Vastused",
"Views" : "Vaated",
"Title" : "Pealkiri",
"Enter thread title …" : "Sisesta jutulõnga pealkiri…",
"Write your first post …" : "Koosta oma esimene postitus…",
"Create thread" : "Alusta jutulõnga",
"Are you sure you want to discard this thread?" : "Kas sa oled kindel, et soovid selles jutulõngast loobuda?",
"Refresh" : "Värskenda",
"Loading …" : "Laadin...",
"No categories yet" : "Kategooriaid veel pole",
"Categories will appear here once they are created." : "Kategooriad on siin nähtavad, kui nad saavad loodud.",
"No categories in this section" : "Selles rubriigis pole veel kategooriaid",
"Category not found" : "Kategooriat ei leidu",
"The category you are looking for does not exist or has been removed." : "Sinu otsitavat kategooriat pole olemas või ta on eemaldatud.",
"Back to categories" : "Tagasi kategooriate juurde",
"New thread" : "Uus jutulõng",
"Error loading category" : "Viga kategooria laadimisel",
"No threads yet" : "Jutulõngu veel pole",
"Be the first to start a discussion in this category." : "Ole esimene, kes selles kategoorias alustab vestlust.",
"Retry" : "Proovi uuesti",
"_Showing %n thread_::_Showing %n threads_" : ["Näitan %n jutulõnga","Näitan %n jutulõnga"],
"An unexpected error occurred" : "Tekkis ootamatu viga",
"No category ID or slug provided" : "Ühtegi kategooria tunnust või aadressi lõppu pole lisatud",
"Failed to load threads" : "Jutulõngade laadimine ei õnnestunud",
"Create New Thread" : "Alusta jutulõnga",
"In {category}" : "Kategoorias {category} ",
"Creating thread …" : "Alustan jutulõnga…",
"Thread created" : "Jutulõng on lisandunud",
"Failed to create thread" : "Jutulõnga alustamine ei õnnestunud",
"No category specified" : "Ühtegi kategooriat pole määratletud",
"Error" : "Viga",
"First post" : "Esimene postitus",
"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 posted 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 posts" : "Otsi vastuste seast",
"Syntax help" : "Abiteave süntaksi kohta",
"Search syntax" : "Otsingusüntaks",
"Searching …" : "Otsin...",
"Search Error" : "Otsinguviga",
"No results found" : "Otsingutulemusi ei leidu",
"Failed to search" : "Otsimine ei õnnestunud",
"Thread not found" : "Jutulõnga ei leidu",
"The thread you are looking for does not exist or has been removed." : "Sinu otsitavat jutulõnga pole olemas või ta on eemaldatud.",
"Back to {category}" : "Tagasi siia: {category}",
"Reply" : "Vasta",
"Error loading thread" : "Viga jutulõnga laadimisel",
"No posts yet" : "Postitusi veel pole",
"Be the first to post in this thread." : "Ole esimene, kes selles jutulõngas alustab vestlust.",
"by" : "kasutajalt",
"Subscribe" : "Telli",
"Subscribed" : "Tellitud",
"Subscribed to thread" : "Oled tellinud jutulõnga",
"Unsubscribed from thread" : "Oled loobunud jutulõnga tellimisest",
"Edit title" : "Muuda pealkirja",
"Save title" : "Salvesta pealkirja",
"Thread title updated" : "Jutulõnga pealkiri on uuendatud",
"Move thread" : "Tõsta jutulõng mujale",
"Thread moved successfully" : "Jutulõnga ümbertõstmine õnnestus",
"No thread ID or slug provided" : "Ühtegi jutulõnga tunnust või aadressi lõppu pole lisatud",
"Failed to load posts" : "Postituste laadimine ei õnnestunud",
"Post updated" : "Postitus on uuendatud",
"Failed to update post" : "Postituse uuendamine ei õnnestunud",
"Thread deleted" : "Jutulõng on kustutatud",
"Post deleted" : "Postitus on kustutatud",
"Failed to update thread title" : "Jutulõnga pealkirja ei õnnestunud uuendada",
"Failed to move thread" : "Jutulõnga ümbertõstmine ei õnnestunud",
"Preferences" : "Eelistused",
"Notifications" : "Teavitused",
"Files" : "Failid",
"Configure file upload settings" : "Seadista failide üleslaadimise seadistusi",
"Upload directory" : "Üleslaadimiskaust",
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Postituste manustena lisatud failid laaditakse sellesse kausta, mida näed oma Nextcloudi failirakenduses",
"Browse" : "Sirvi",
"Preferences saved" : "Eelistused on salvestatud",
"Failed to save preferences" : "Eelistuste salvestamine ei õnnestunud",
"Select upload directory" : "Vali kaust, kust tahad üles laadida",
"BBCode management" : "BBCode'i haldus",
"Enable" : "Võta kasutusele",
"Disable" : "Lülita välja",
"Delete BBCode" : "Kustuta BBCode",
"This action cannot be undone." : "Seda tegevust ei saa tagasi võtta.",
"Tag" : "Silt",
"Description" : "Kirjeldus",
"Brief description of what this BBCode does" : "Lühikirjeldus, mida see BBCode teeb",
"Enabled" : "Sisse lülitatud",
"Create category" : "Lisa kategooria",
"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 --",
"Name" : "Nimi",
"Enter category name" : "Sisesta kategooria nimi",
"Slug cannot be changed after category creation" : "Peale kategooria lisamist ei saa aadressi lõputunnust enam muuta",
"New" : "Uus",
"Permissions" : "Õigused",
"Delete category" : "Kustuta kategooria",
"_%n category_::_%n categories_" : ["%n kategooria","%n kategooriat"],
"_%n thread_::_%n threads_" : ["%n jutulõng","%n jutulõnga"],
"Delete header" : "Kustuta päis",
"Move up" : "Liiguta ülespoole",
"Move down" : "Liiguta allapoole",
"Total users" : "Kasutajaid kokku",
"Total threads" : "Jutulõngu kokku",
"Total posts" : "Postitusi kokku",
"Total categories" : "Kategooriaid kokku",
"New users" : "Uued kasutajad",
"New threads" : "Uued jutulõngad",
"New posts" : "Uues postitused",
"Top contributors" : "Toimekamad kaasautorid",
"Last 7 days" : "Viimase 7 päeva jooksul",
"General settings" : "Üldised seadistused",
"Appearance" : "Välimus",
"Welcome to the forum" : "Tere tulemast foorumisse",
"Access control" : "Ligipääsukontroll",
"Settings saved" : "Seadistused on salvestatud",
"Failed to save settings" : "Seadistuste salvestamine ei õnnestunud",
"Create role" : "Lisa roll",
"Edit role" : "Muuda rolli",
"Configure role permissions and category access" : "Seadista rollide õigusi ja ligipääsu kategooriatele",
"Error loading role" : "Viga rolli laadimisel",
"Enter role name" : "Sisesta rolli nimi",
"Enter role description (optional)" : "Sisesta rolli kirjeldus (pole kohustuslik)",
"System role names cannot be changed" : "Süsteemsete rollide nimesid ei saa muuta",
"Colors" : "Värvid",
"Reset" : "Lähtesta",
"Role permissions" : "Rolli õigused",
"Set global permissions for this role" : "Määra selle rolli üldised õigused",
"Can access admin tools" : "Võib kasutada süsteemitarvikuid",
"Allow access to the admin dashboard and tools" : "Kasutab ligipääsu peakasutajate töölauale ja tarviklutele",
"Can edit roles" : "Võib rolle muuta",
"Allow creating, editing and deleting roles" : "Luba rollide lisamine, muutmine ja kustutamine",
"Can edit categories" : "Võib kategooriaid muuta",
"Allow creating, editing and deleting categories" : "Luba kategooriate lisamine, muutmine ja kustutamine",
"Category permissions" : "Kategooria õigused",
"Set which categories this role can access" : "Mis kategooriatele rollil on ligipääs",
"Category" : "Kategooria",
"Can view" : "Võib vaadata",
"Can moderate" : "Võib modereerida",
"Allow" : "Luba",
"No categories available" : "Ühtegi kategooriat pole saadaval",
"Admin role has full access to all categories" : "Peakasutaja rollil on ligipääs kõikidele kategooriatele",
"You can control which categories guests can view using the checkboxes below." : "Märkides alljärgnevaid märkeruute saad alljärgnevas hallata missuguseid kategooriaid külalised saavad vaadata.",
"Role management" : "Rollide haldus",
"Create and manage forum roles and permissions" : "Lisa ja halda foorumi rolle ja õigusi",
"Loading roles …" : "Laadin rolle…",
"Error loading roles" : "Viga rollide laadimisel",
"No roles found" : "Rolle ei leidu",
"Create your first role to get started" : "Alustamiseks lisa foorumi esimene roll",
"ID" : "Tunnus",
"Created" : "Loodud",
"Actions" : "Tegevused",
"No description" : "Kirjeldus puudub",
"System roles cannot be deleted" : "Süsteemseid rolle ei saa kustutada",
"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",
"Posts" : "Postitused",
"Joined" : "Liitus",
"Status" : "Olek",
"Active" : "Aktiivne",
"Deleted" : "Kustutatud",
"No roles" : "Rolle pole",
"Select roles" : "Vali rollid",
"Edit roles" : "Muuda rolle",
"Edit user roles" : "Muuda kasutajarolle"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

91
l10n/eu.js Normal file
View File

@@ -0,0 +1,91 @@
OC.L10N.register(
"forum",
{
"Admin" : "Admin",
"User" : "Erabiltzailea",
"General" : "Orokorra",
"Support" : "Laguntza",
"Bold text" : "Testu lodia",
"Underlined text" : "Azpimarratutako testua",
"Forum" : "Foroa",
"Deleted user" : "Ezabatutako erabiltzaileak",
"Search" : "Bilatu",
"Home" : "Etxea",
"Dashboard" : "Panela",
"Users" : "Erabiltzaileak",
"Categories" : "Kategoriak",
"Expand" : "Zabaldu",
"Collapse" : "Tolestu",
"Hello world!" : "Kaixo mundua!",
"Code" : "Kodea",
"Quote" : "Aurrekontua",
"Font size" : "Letra-tamaina",
"List" : "Zerrenda",
"Insert emoji" : "Txertatu emojia",
"Upload failed" : "igotzeak huts egin du",
"Close" : "Itxi",
"Failed to upload file" : "Fitxategia kargatzeak huts egin du",
"Sort order" : "Ordenatzeko irizpidea",
"Cancel" : "Cancel",
"Create" : "Sortu",
"Update" : "Eguneratu",
"Move" : "Mugitu",
"Page not found" : "Orria ez da aurkitu",
"Back" : "Itzuli",
"Edit" : "Editatu",
"Delete" : "Ezabatu",
"Unread" : "Irakurri gabe",
"Save" : "Gorde",
"React with {emoji}" : "Erreakzionatu {emoji}-(r)ekin",
"Uncategorized" : "Kategoria gabe",
"Views" : "Ikuspegiak",
"Title" : "Izenburua",
"Refresh" : "Freskatu",
"Loading …" : "Kargatzen ...",
"Retry" : "saiatu berriro",
"Error" : "Errorea",
"Searching …" : "Bilatzen…",
"No results found" : "Ez da emaitzarik aurkitu",
"Back to {category}" : "Itzuli {category}(e)ra",
"by" : "Nork",
"Subscribe" : "Harpidetu",
"Subscribed" : "Harpidetua",
"Edit title" : "Editatu izenburua",
"Move thread" : "Mugitu haria",
"Preferences" : "Hobespenak",
"Notifications" : "Jakinarazpenak",
"Files" : "Fitxategiak",
"Browse" : "Arakatu",
"Enable" : "Aktibatu",
"Disable" : "Desaktibatu",
"Tag" : "Etiketa",
"Description" : "Deskripzioa",
"Enabled" : "Gaituta",
"Name" : "Izena",
"New" : "Berria",
"Permissions" : "Baimenak",
"Move up" : "Eraman gora",
"Move down" : "Eraman behera",
"Total users" : "Erabiltzaileak guztira",
"Last 7 days" : "Azken 7 egunetan",
"General settings" : "Ezarpen orokorrak",
"Appearance" : "Itxura",
"Access control" : "Sarbide kontrola",
"Settings saved" : "Ezarpenak gordeta",
"Failed to save settings" : "Ezarpenak gordetzeak huts egin du",
"Reset" : "Berrezarri",
"Category" : "Kategoria",
"Allow" : "Baimendu",
"ID" : "ID",
"Created" : "Sortua",
"Actions" : "Ekintzak",
"No description" : "Deskribapenik ez",
"User management" : "Erabiltzaileen kudeaketa",
"Loading users …" : "Erabiltzaileak kargatzen ...",
"No users found" : "Ez da erabiltzailerik aurkitu",
"Joined" : "Batu da",
"Status" : "Egoera",
"Active" : "Aktibo",
"Deleted" : "Ezabatuta"
},
"nplurals=2; plural=(n != 1);");

89
l10n/eu.json Normal file
View File

@@ -0,0 +1,89 @@
{ "translations": {
"Admin" : "Admin",
"User" : "Erabiltzailea",
"General" : "Orokorra",
"Support" : "Laguntza",
"Bold text" : "Testu lodia",
"Underlined text" : "Azpimarratutako testua",
"Forum" : "Foroa",
"Deleted user" : "Ezabatutako erabiltzaileak",
"Search" : "Bilatu",
"Home" : "Etxea",
"Dashboard" : "Panela",
"Users" : "Erabiltzaileak",
"Categories" : "Kategoriak",
"Expand" : "Zabaldu",
"Collapse" : "Tolestu",
"Hello world!" : "Kaixo mundua!",
"Code" : "Kodea",
"Quote" : "Aurrekontua",
"Font size" : "Letra-tamaina",
"List" : "Zerrenda",
"Insert emoji" : "Txertatu emojia",
"Upload failed" : "igotzeak huts egin du",
"Close" : "Itxi",
"Failed to upload file" : "Fitxategia kargatzeak huts egin du",
"Sort order" : "Ordenatzeko irizpidea",
"Cancel" : "Cancel",
"Create" : "Sortu",
"Update" : "Eguneratu",
"Move" : "Mugitu",
"Page not found" : "Orria ez da aurkitu",
"Back" : "Itzuli",
"Edit" : "Editatu",
"Delete" : "Ezabatu",
"Unread" : "Irakurri gabe",
"Save" : "Gorde",
"React with {emoji}" : "Erreakzionatu {emoji}-(r)ekin",
"Uncategorized" : "Kategoria gabe",
"Views" : "Ikuspegiak",
"Title" : "Izenburua",
"Refresh" : "Freskatu",
"Loading …" : "Kargatzen ...",
"Retry" : "saiatu berriro",
"Error" : "Errorea",
"Searching …" : "Bilatzen…",
"No results found" : "Ez da emaitzarik aurkitu",
"Back to {category}" : "Itzuli {category}(e)ra",
"by" : "Nork",
"Subscribe" : "Harpidetu",
"Subscribed" : "Harpidetua",
"Edit title" : "Editatu izenburua",
"Move thread" : "Mugitu haria",
"Preferences" : "Hobespenak",
"Notifications" : "Jakinarazpenak",
"Files" : "Fitxategiak",
"Browse" : "Arakatu",
"Enable" : "Aktibatu",
"Disable" : "Desaktibatu",
"Tag" : "Etiketa",
"Description" : "Deskripzioa",
"Enabled" : "Gaituta",
"Name" : "Izena",
"New" : "Berria",
"Permissions" : "Baimenak",
"Move up" : "Eraman gora",
"Move down" : "Eraman behera",
"Total users" : "Erabiltzaileak guztira",
"Last 7 days" : "Azken 7 egunetan",
"General settings" : "Ezarpen orokorrak",
"Appearance" : "Itxura",
"Access control" : "Sarbide kontrola",
"Settings saved" : "Ezarpenak gordeta",
"Failed to save settings" : "Ezarpenak gordetzeak huts egin du",
"Reset" : "Berrezarri",
"Category" : "Kategoria",
"Allow" : "Baimendu",
"ID" : "ID",
"Created" : "Sortua",
"Actions" : "Ekintzak",
"No description" : "Deskribapenik ez",
"User management" : "Erabiltzaileen kudeaketa",
"Loading users …" : "Erabiltzaileak kargatzen ...",
"No users found" : "Ez da erabiltzailerik aurkitu",
"Joined" : "Batu da",
"Status" : "Egoera",
"Active" : "Aktibo",
"Deleted" : "Ezabatuta"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

86
l10n/fa.js Normal file
View File

@@ -0,0 +1,86 @@
OC.L10N.register(
"forum",
{
"Admin" : "مدیر",
"Moderator" : "مدیر",
"User" : "کاربر",
"General" : "عمومی",
"Support" : "پشتیبانی",
"Bold text" : "Bold text",
"Underlined text" : "Underlined text",
"Forum" : "انجمن",
"Deleted user" : "Deleted user",
"Search" : "جستجو",
"Home" : "خانه",
"Dashboard" : "پیشخوان",
"Users" : "کاربران",
"Categories" : "دسته‌ها",
"Expand" : "بسط دادن",
"Collapse" : "فروکش کردن",
"Hello world!" : "سلام دنیا!",
"Code" : "کد",
"Quote" : "Quote",
"Font size" : "اندازهٔ قلم",
"List" : "فهرست",
"Insert emoji" : "Insert emoji",
"Upload failed" : "آپلود ناموفق",
"Close" : "بستن",
"Sort order" : "Sort order",
"Cancel" : "انصراف",
"Create" : "ایجاد",
"Update" : "به‌روزرسانی",
"Move" : "انتقال",
"Page not found" : "صفحه پیدا نشد",
"Back" : "بازگشت",
"Edit" : "ویرایش",
"Delete" : "حذف",
"Unread" : "Unread",
"Save" : "ذخیره",
"React with {emoji}" : "React with {emoji}",
"Uncategorized" : "دسته‌بندی نشده",
"Views" : "بازدیدها",
"Title" : "Title",
"Refresh" : "تازه‌سازی",
"Loading …" : "در حال بارگذاری...",
"Retry" : "تلاش دوباره",
"Error" : "خطا",
"Searching …" : "جستجوکردن …",
"Back to {category}" : "بازگشت به {category}",
"by" : "با",
"Subscribe" : "اشتراک گذاری",
"Subscribed" : "Subscribed",
"Edit title" : "ویرایش عنوان",
"Move thread" : "Move thread",
"Preferences" : "اولویت ها",
"Notifications" : "هشدارها",
"Files" : "پرونده‌ها",
"Enable" : "فعالسازی",
"Disable" : "غیرفعال کردن",
"Description" : "شرح",
"Enabled" : "فعال شده",
"Name" : "نام",
"New" : "جدید",
"Permissions" : "مجوزها",
"Move up" : "حرکت به بالا",
"Move down" : "حرکت به پایین",
"Last 7 days" : "۷ روز گذشته.",
"General settings" : "تنظیمات عمومی",
"Appearance" : "ظاهر",
"Access control" : "کنترل دسترسی",
"Settings saved" : "تنظیمات ذخیره شد",
"Failed to save settings" : "تنظیمات ذخیره نشدند",
"Reset" : "بازنشانی",
"Category" : "دسته",
"Allow" : "اجازه دادن",
"ID" : "شناسه",
"Created" : "ایجاد شده",
"Actions" : "کنش‌ها",
"No description" : "No description",
"Loading users …" : "Loading users …",
"No users found" : "No users found",
"Joined" : "پیوستن",
"Status" : "Status",
"Active" : "فعال کردن",
"Deleted" : "حذف شده"
},
"nplurals=2; plural=(n > 1);");

84
l10n/fa.json Normal file
View File

@@ -0,0 +1,84 @@
{ "translations": {
"Admin" : "مدیر",
"Moderator" : "مدیر",
"User" : "کاربر",
"General" : "عمومی",
"Support" : "پشتیبانی",
"Bold text" : "Bold text",
"Underlined text" : "Underlined text",
"Forum" : "انجمن",
"Deleted user" : "Deleted user",
"Search" : "جستجو",
"Home" : "خانه",
"Dashboard" : "پیشخوان",
"Users" : "کاربران",
"Categories" : "دسته‌ها",
"Expand" : "بسط دادن",
"Collapse" : "فروکش کردن",
"Hello world!" : "سلام دنیا!",
"Code" : "کد",
"Quote" : "Quote",
"Font size" : "اندازهٔ قلم",
"List" : "فهرست",
"Insert emoji" : "Insert emoji",
"Upload failed" : "آپلود ناموفق",
"Close" : "بستن",
"Sort order" : "Sort order",
"Cancel" : "انصراف",
"Create" : "ایجاد",
"Update" : "به‌روزرسانی",
"Move" : "انتقال",
"Page not found" : "صفحه پیدا نشد",
"Back" : "بازگشت",
"Edit" : "ویرایش",
"Delete" : "حذف",
"Unread" : "Unread",
"Save" : "ذخیره",
"React with {emoji}" : "React with {emoji}",
"Uncategorized" : "دسته‌بندی نشده",
"Views" : "بازدیدها",
"Title" : "Title",
"Refresh" : "تازه‌سازی",
"Loading …" : "در حال بارگذاری...",
"Retry" : "تلاش دوباره",
"Error" : "خطا",
"Searching …" : "جستجوکردن …",
"Back to {category}" : "بازگشت به {category}",
"by" : "با",
"Subscribe" : "اشتراک گذاری",
"Subscribed" : "Subscribed",
"Edit title" : "ویرایش عنوان",
"Move thread" : "Move thread",
"Preferences" : "اولویت ها",
"Notifications" : "هشدارها",
"Files" : "پرونده‌ها",
"Enable" : "فعالسازی",
"Disable" : "غیرفعال کردن",
"Description" : "شرح",
"Enabled" : "فعال شده",
"Name" : "نام",
"New" : "جدید",
"Permissions" : "مجوزها",
"Move up" : "حرکت به بالا",
"Move down" : "حرکت به پایین",
"Last 7 days" : "۷ روز گذشته.",
"General settings" : "تنظیمات عمومی",
"Appearance" : "ظاهر",
"Access control" : "کنترل دسترسی",
"Settings saved" : "تنظیمات ذخیره شد",
"Failed to save settings" : "تنظیمات ذخیره نشدند",
"Reset" : "بازنشانی",
"Category" : "دسته",
"Allow" : "اجازه دادن",
"ID" : "شناسه",
"Created" : "ایجاد شده",
"Actions" : "کنش‌ها",
"No description" : "No description",
"Loading users …" : "Loading users …",
"No users found" : "No users found",
"Joined" : "پیوستن",
"Status" : "Status",
"Active" : "فعال کردن",
"Deleted" : "حذف شده"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}

89
l10n/fi.js Normal file
View File

@@ -0,0 +1,89 @@
OC.L10N.register(
"forum",
{
"Admin" : "Ylläpito",
"User" : "Käyttäjä",
"Guest" : "Vieras",
"General" : "Yleiset",
"Support" : "Tuki",
"Bold text" : "Lihavoitu teksti",
"Underlined text" : "Alleviivattu teksti",
"Forum" : "Keskustelupalsta",
"Deleted user" : "Poistettu käyttäjä",
"Search" : "Etsi",
"Home" : "Koti",
"Dashboard" : "Kojelauta",
"Categories" : "Luokat",
"Expand" : "Laajenna",
"Collapse" : "Kutista näkymää",
"Hello world!" : "Hei maailma!",
"Code" : "Koodi",
"Font size" : "Fontin koko",
"List" : "Lista",
"Insert emoji" : "Lisää emoji",
"Upload failed" : "Lähetys epäonnistui",
"Close" : "Sulje",
"Failed to upload file" : "Tiedoston lähettäminen epäonnistui",
"Cancel" : "Peruuta",
"Create" : "Luo",
"Update" : "Päivitä",
"Move" : "Siirrä",
"Page not found" : "Sivua ei löytynyt",
"Back" : "Takaisin",
"Edit" : "Muokkaa",
"Delete" : "Poista",
"Unread" : "Lukematon",
"Save" : "Tallenna",
"React with {emoji}" : "Reagoi emojilla {emoji}",
"Uncategorized" : "Luokittelematon",
"Views" : "Näkymät",
"Title" : "Nimeke",
"Refresh" : "Päivitä",
"Loading …" : "Ladataan…",
"Retry" : "Yritä uudelleen",
"Error" : "Virhe",
"Searching …" : "Haetaan…",
"No results found" : "Ei tuloksia",
"Back to {category}" : "Takaisin kohtaan {category}",
"by" : "Kirjoittaja:",
"Subscribe" : "Tilaa",
"Subscribed" : "Tilattu",
"Edit title" : "Muokkaa otsikkoa",
"Move thread" : "Siirrä ketju",
"Preferences" : "Asetukset",
"Notifications" : "Ilmoitukset",
"Files" : "Tiedostot",
"Enable" : "Käytä",
"Disable" : "Poista käytöstä",
"This action cannot be undone." : "Tätä toimintoa ei voi perua.",
"Tag" : "Tunniste",
"Description" : "Kuvaus",
"Enabled" : "Käytössä",
"Name" : "Nimi",
"New" : "Uusi",
"Permissions" : "Oikeudet",
"Move up" : "Siirrä ylös",
"Move down" : "Siirrä alas",
"Total users" : "Käyttäjiä yhteensä",
"Last 7 days" : "Edelliset 7 päivää",
"General settings" : "Yleiset asetukset",
"Appearance" : "Ulkoasu",
"Access control" : "Pääsynhallinta",
"Settings saved" : "Asetukset tallennettu",
"Failed to save settings" : "Asetusten tallentaminen epäonnistui",
"Reset" : "Palauta",
"Category" : "Kategoria",
"Allow" : "Salli",
"ID" : "ID",
"Created" : "Luonut",
"Actions" : "Toiminnot",
"No description" : "Ei kuvausta",
"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",
"Deleted" : "Poistettu"
},
"nplurals=2; plural=(n != 1);");

87
l10n/fi.json Normal file
View File

@@ -0,0 +1,87 @@
{ "translations": {
"Admin" : "Ylläpito",
"User" : "Käyttäjä",
"Guest" : "Vieras",
"General" : "Yleiset",
"Support" : "Tuki",
"Bold text" : "Lihavoitu teksti",
"Underlined text" : "Alleviivattu teksti",
"Forum" : "Keskustelupalsta",
"Deleted user" : "Poistettu käyttäjä",
"Search" : "Etsi",
"Home" : "Koti",
"Dashboard" : "Kojelauta",
"Categories" : "Luokat",
"Expand" : "Laajenna",
"Collapse" : "Kutista näkymää",
"Hello world!" : "Hei maailma!",
"Code" : "Koodi",
"Font size" : "Fontin koko",
"List" : "Lista",
"Insert emoji" : "Lisää emoji",
"Upload failed" : "Lähetys epäonnistui",
"Close" : "Sulje",
"Failed to upload file" : "Tiedoston lähettäminen epäonnistui",
"Cancel" : "Peruuta",
"Create" : "Luo",
"Update" : "Päivitä",
"Move" : "Siirrä",
"Page not found" : "Sivua ei löytynyt",
"Back" : "Takaisin",
"Edit" : "Muokkaa",
"Delete" : "Poista",
"Unread" : "Lukematon",
"Save" : "Tallenna",
"React with {emoji}" : "Reagoi emojilla {emoji}",
"Uncategorized" : "Luokittelematon",
"Views" : "Näkymät",
"Title" : "Nimeke",
"Refresh" : "Päivitä",
"Loading …" : "Ladataan…",
"Retry" : "Yritä uudelleen",
"Error" : "Virhe",
"Searching …" : "Haetaan…",
"No results found" : "Ei tuloksia",
"Back to {category}" : "Takaisin kohtaan {category}",
"by" : "Kirjoittaja:",
"Subscribe" : "Tilaa",
"Subscribed" : "Tilattu",
"Edit title" : "Muokkaa otsikkoa",
"Move thread" : "Siirrä ketju",
"Preferences" : "Asetukset",
"Notifications" : "Ilmoitukset",
"Files" : "Tiedostot",
"Enable" : "Käytä",
"Disable" : "Poista käytöstä",
"This action cannot be undone." : "Tätä toimintoa ei voi perua.",
"Tag" : "Tunniste",
"Description" : "Kuvaus",
"Enabled" : "Käytössä",
"Name" : "Nimi",
"New" : "Uusi",
"Permissions" : "Oikeudet",
"Move up" : "Siirrä ylös",
"Move down" : "Siirrä alas",
"Total users" : "Käyttäjiä yhteensä",
"Last 7 days" : "Edelliset 7 päivää",
"General settings" : "Yleiset asetukset",
"Appearance" : "Ulkoasu",
"Access control" : "Pääsynhallinta",
"Settings saved" : "Asetukset tallennettu",
"Failed to save settings" : "Asetusten tallentaminen epäonnistui",
"Reset" : "Palauta",
"Category" : "Kategoria",
"Allow" : "Salli",
"ID" : "ID",
"Created" : "Luonut",
"Actions" : "Toiminnot",
"No description" : "Ei kuvausta",
"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",
"Deleted" : "Poistettu"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

97
l10n/fr.js Normal file
View File

@@ -0,0 +1,97 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administrateur",
"User" : "Utilisateur",
"Guest" : "Invité",
"General" : "Général",
"Support" : "Support",
"Bold text" : "Texte en gras",
"Underlined text" : "Texte souligné",
"Forum" : "Forum",
"Deleted user" : "Utilisateur supprimé",
"Search" : "Rechercher",
"Home" : "Accueil",
"Dashboard" : "Tableau de bord",
"Users" : "Utilisateurs",
"Categories" : "Catégories",
"Expand" : "Étendre",
"Collapse" : "Replier",
"Hello world!" : "Hello world!",
"Code" : "Code",
"Quote" : "Devis",
"Font size" : "Taille des caractères",
"List" : "Liste",
"Insert emoji" : "Insérer un emoji",
"Upload failed" : "Échec du téléversement",
"Close" : "Fermer",
"Failed to upload file" : "Impossible de téléverser le fichier",
"Sort order" : "Ordre de tri",
"Cancel" : "Annuler",
"Create" : "Créer",
"Update" : "Mettre à jour",
"Move" : "Déplacer",
"Page not found" : "Page non trouvée",
"Back" : "Retour",
"Edit" : "Modifier",
"Delete" : "Supprimer",
"Unread" : "Non lu",
"Save" : "Enregistrer",
"React with {emoji}" : "Réagir avec {emoji}",
"Uncategorized" : "Non catégorisé",
"Views" : "Vues",
"Title" : "Titre",
"Refresh" : "Actualiser",
"Loading …" : "Chargement…",
"Retry" : "Réessayer",
"In {category}" : "Dans {category}",
"Error" : "Erreur",
"Searching …" : "Recherche…",
"No results found" : "Aucun résultat",
"Back to {category}" : "Retourner à {category}",
"Reply" : "Répondre",
"by" : "par",
"Subscribe" : "Sabonner",
"Subscribed" : "Abonné",
"Edit title" : "Modifier le titre",
"Move thread" : "Déplacer ce fil de discussion",
"Preferences" : "Préférences",
"Notifications" : "Notifications",
"Files" : "Fichiers",
"Browse" : "Parcourir",
"Enable" : "Activer",
"Disable" : "Désactiver",
"This action cannot be undone." : "Cette action ne peut pas être annulée",
"Tag" : "Étiquette",
"Description" : "Description",
"Enabled" : "Activé",
"Name" : "Nom",
"Enter category name" : "Saisissez le nom de la catégorie",
"New" : "Nouveau",
"Permissions" : "Autorisations",
"Move up" : "Déplacer vers le haut",
"Move down" : "Déplacer vers le bas",
"Total users" : "Nombre total d'utilisateurs",
"Last 7 days" : "7 derniers jours",
"All time" : "Tout le temps",
"General settings" : "Paramètres généraux",
"Appearance" : "Apparence",
"Access control" : "Contrôle d'accès",
"Settings saved" : "Paramètres enregistrés",
"Failed to save settings" : "Impossible d'enregistrer les paramètres",
"Reset" : "Réinitialiser",
"Category" : "Catégorie",
"Allow" : "Autoriser",
"ID" : "ID",
"Created" : "Créée",
"Actions" : "Actions",
"No description" : "Pas de description",
"User management" : "Gestion des utilisateurs",
"Loading users …" : "Chargement des utilisateurs...",
"No users found" : "Aucun utilisateur trouvé",
"Joined" : "A rejoint",
"Status" : "État",
"Active" : "Actif",
"Deleted" : "Effacé"
},
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

95
l10n/fr.json Normal file
View File

@@ -0,0 +1,95 @@
{ "translations": {
"Admin" : "Administrateur",
"User" : "Utilisateur",
"Guest" : "Invité",
"General" : "Général",
"Support" : "Support",
"Bold text" : "Texte en gras",
"Underlined text" : "Texte souligné",
"Forum" : "Forum",
"Deleted user" : "Utilisateur supprimé",
"Search" : "Rechercher",
"Home" : "Accueil",
"Dashboard" : "Tableau de bord",
"Users" : "Utilisateurs",
"Categories" : "Catégories",
"Expand" : "Étendre",
"Collapse" : "Replier",
"Hello world!" : "Hello world!",
"Code" : "Code",
"Quote" : "Devis",
"Font size" : "Taille des caractères",
"List" : "Liste",
"Insert emoji" : "Insérer un emoji",
"Upload failed" : "Échec du téléversement",
"Close" : "Fermer",
"Failed to upload file" : "Impossible de téléverser le fichier",
"Sort order" : "Ordre de tri",
"Cancel" : "Annuler",
"Create" : "Créer",
"Update" : "Mettre à jour",
"Move" : "Déplacer",
"Page not found" : "Page non trouvée",
"Back" : "Retour",
"Edit" : "Modifier",
"Delete" : "Supprimer",
"Unread" : "Non lu",
"Save" : "Enregistrer",
"React with {emoji}" : "Réagir avec {emoji}",
"Uncategorized" : "Non catégorisé",
"Views" : "Vues",
"Title" : "Titre",
"Refresh" : "Actualiser",
"Loading …" : "Chargement…",
"Retry" : "Réessayer",
"In {category}" : "Dans {category}",
"Error" : "Erreur",
"Searching …" : "Recherche…",
"No results found" : "Aucun résultat",
"Back to {category}" : "Retourner à {category}",
"Reply" : "Répondre",
"by" : "par",
"Subscribe" : "Sabonner",
"Subscribed" : "Abonné",
"Edit title" : "Modifier le titre",
"Move thread" : "Déplacer ce fil de discussion",
"Preferences" : "Préférences",
"Notifications" : "Notifications",
"Files" : "Fichiers",
"Browse" : "Parcourir",
"Enable" : "Activer",
"Disable" : "Désactiver",
"This action cannot be undone." : "Cette action ne peut pas être annulée",
"Tag" : "Étiquette",
"Description" : "Description",
"Enabled" : "Activé",
"Name" : "Nom",
"Enter category name" : "Saisissez le nom de la catégorie",
"New" : "Nouveau",
"Permissions" : "Autorisations",
"Move up" : "Déplacer vers le haut",
"Move down" : "Déplacer vers le bas",
"Total users" : "Nombre total d'utilisateurs",
"Last 7 days" : "7 derniers jours",
"All time" : "Tout le temps",
"General settings" : "Paramètres généraux",
"Appearance" : "Apparence",
"Access control" : "Contrôle d'accès",
"Settings saved" : "Paramètres enregistrés",
"Failed to save settings" : "Impossible d'enregistrer les paramètres",
"Reset" : "Réinitialiser",
"Category" : "Catégorie",
"Allow" : "Autoriser",
"ID" : "ID",
"Created" : "Créée",
"Actions" : "Actions",
"No description" : "Pas de description",
"User management" : "Gestion des utilisateurs",
"Loading users …" : "Chargement des utilisateurs...",
"No users found" : "Aucun utilisateur trouvé",
"Joined" : "A rejoint",
"Status" : "État",
"Active" : "Actif",
"Deleted" : "Effacé"
},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}

412
l10n/ga.js Normal file
View File

@@ -0,0 +1,412 @@
OC.L10N.register(
"forum",
{
"Admin" : "Riarachán",
"Administrator role with full permissions" : "Ról riarthóra le ceadanna iomlána",
"Moderator" : "Modhnóir",
"Moderator role with elevated permissions" : "Ról modhnóra le ceadanna ardaithe",
"User" : "Úsáideoir",
"Default user role with basic permissions" : "Ról úsáideora réamhshocraithe le ceadanna bunúsacha",
"Guest" : "Aoi",
"Guest role for unauthenticated users with read-only access" : "Ról aoi d'úsáideoirí neamhúdaraithe a bhfuil rochtain léite amháin acu",
"General" : "Ginearálta",
"General discussion categories" : "Catagóirí plé ginearálta",
"General discussions" : "Plé ginearálta",
"A place for general conversations and discussions" : "Áit le haghaidh comhráite agus plé ginearálta",
"Support" : "Tacaíocht",
"Ask questions about the forum, provide feedback or report issues." : "Cuir ceisteanna faoin bhfóram, tabhair aiseolas nó tuairiscigh fadhbanna.",
"Inline code" : "Cód inlíne",
"Spoilers" : "Spoiléirí",
"Attachment" : "Ceangaltán",
"Welcome to Nextcloud Forums" : "Fáilte go Fóraim Nextcloud",
"Welcome to the Nextcloud Forums!" : "Fáilte go dtí Fóraim Nextcloud!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Is fóram pobail-thiomáinte é seo atá tógtha isteach i do chás Nextcloud. Anseo is féidir leat topaicí a phlé, smaointe a roinnt agus comhoibriú le húsáideoirí eile.",
"Features:" : "Gnéithe:",
"Create and reply to threads" : "Cruthaigh agus freagair snáitheanna",
"Organize discussions by categories" : "Eagraigh plé de réir catagóirí",
"Use BBCode for rich text formatting" : "Bain úsáid as BBCode le haghaidh formáidiú téacs saibhir",
"Attach files from your Nextcloud storage" : "Ceangail comhaid ó do stóras Nextcloud",
"React to posts" : "Freagairt do phoist",
"Track read/unread threads" : "Rianaigh snáitheanna léite/neamhléite",
"BBCode examples:" : "Samplaí BBCode:",
"Bold text" : "Téacs trom",
"Use %1$stext%2$s" : "Úsáid %1$stext%2$s",
"Italic text" : "Téacs iodálach",
"Underlined text" : "Téacs a bhfuil líne faoi",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Ná bíodh drogall ort plé nua a thosú nó freagra a thabhairt ar shnáitheanna atá ann cheana féin. Go n-éirí leat ag postáil!",
"Forum" : "Fóram",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count}freagra nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}"],
"Welcome to the forum!" : "Fáilte romhat chuig an bhfóram!",
"Deleted user" : "Úsáideoir scriosta",
"A community-driven forum built right into your Nextcloud instance" : "Fóram atá tiomáinte ag an bpobal atá tógtha isteach i do chás Nextcloud",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cruthaigh plé, roinn smaointe agus comhoibrigh le do phobal go díreach i Nextcloud.\n\n**⚠️ Fógra Forbartha Luath:**\nTá an aip seo i gcéimeanna luatha forbartha. Cé go bhfuil sí feidhmiúil, d'fhéadfadh fabhtanna nó gnéithe neamhiomlána teacht ort. Tuairiscigh aon fhadhbanna ar GitHub agus smaoinigh ar chúltaca de do shonraí a dhéanamh go rialta.\n\n**Príomhghnéithe:**\n- **Plé bunaithe ar shnáitheanna** - Cruthaigh agus freagair snáitheanna plé eagraithe\n- **Eagrú Catagóirí** - Struchtúraigh do fhóram le catagóirí agus ceanntásca saincheaptha\n- **Formáidiú Téacs Saibhir** - Úsáid BBCode chun poist a fhormáidiú le cló trom, iodálach, naisc, íomhánna, bloic chód agus níos mó\n- **Ceangaltáin Chomhad** - Ceangail comhaid ó do stóras Nextcloud le poist\n- **Imoibrithe Poist** - Imoibriú le poist le himoibrithe emoji\n- **Rianú Léite/Gan Léite** - Coinnigh súil ar na snáitheanna atá léite agat\n- **Cuardaigh** - Aimsigh plé go tapa le cuardach ionsuite\n- **Próifílí Úsáideoirí** - Féach ar stair agus staitisticí post úsáideoirí\n- **Ceadanna Bunaithe ar Ról** - Rialú rochtana agus modhnóireachta le róil sholúbtha\n- **Rochtain Aoi**: Rochtain phoiblí roghnach d'úsáideoirí neamhúdaraithe le ceadanna inchumraithe\n- **Uirlisí Riaracháin** - Bainistigh catagóirí, róil, BBCóid agus socruithe fóraim\n- **Uirlisí Modhnóireachta** - Snáitheanna agus poist a phionáil, a ghlasáil agus a bhainistiú\n\n**Foirfe do:**\n- Plé foirne agus comhoibriú\n- Fóraim phobail\n- Bealaí tacaíochta\n- Bunachair eolais\n- Plé tionscadail\n- Cumarsáid inmheánach\n\nComhtháthaíonn an fóram go gan uaim le do chás Nextcloud, ag baint úsáide as d'úsáideoirí agus do ghrúpaí atá ann cheana féin le haghaidh fíordheimhnithe agus rialú rochtana.",
"Search" : "Cuardach",
"Home" : "Baile",
"User preferences" : "Roghanna úsáideora",
"Dashboard" : "Deais",
"Forum settings" : "Socruithe an fhóraim",
"Users" : "Úsáideoirí",
"Roles" : "Róil",
"Categories" : "Catagóirí",
"BBCodes" : "BBCóid",
"Expand" : "Leathnaigh",
"Collapse" : "Laghdaigh",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Tabhair faoi deara le do thoil:{bEnd} Beidh comhaid cheangailte le feiceáil ag aon duine san fhóram, beag beann ar shocruithe comhroinnte an chomhaid.",
"Hello world!" : "Dia duit, a dhomhan!",
"Font style bold" : "Stíl cló trom",
"Font style italic" : "Stíl cló iodálach",
"Font style struck through" : "Stíl cló stróicthe tríd",
"Font style underlined" : "Stíl cló faoi líne",
"Code" : "Cód",
"Email (clickable)" : "Ríomhphost (inchliceáilte)",
"URL (clickable)" : "URL (clickable)",
"Image (not clickable)" : "Íomhá (ní féidir cliceáil air)",
"Quote" : "Athfhriotail",
"Embedded YouTube video" : "Físeán YouTube leabaithe",
"Font (name)" : "Cló (ainm)",
"Font size" : "Méid cló",
"Font color" : "Dath cló",
"Align left" : "Ailínigh ar chlé",
"Align center" : "Ailínigh sa lár",
"Align right" : "Ailínigh ar dheis",
"List" : "Liosta",
"List item within a list" : "Mír liosta laistigh de liosta",
"List item within a list (alias)" : "Mír liosta laistigh de liosta (ainm cleite)",
"BBCode help" : "Cabhair BBCode",
"Built-in BBCodes" : "BBCóid ionsuite",
"These BBCodes are available by default." : "Tá na BBCóid seo ar fáil de réir réamhshocraithe.",
"Custom BBCodes" : "BBCóid Saincheaptha",
"These BBCodes are custom to this forum and configured by administrators." : "Tá na BBCóid seo saincheaptha don fhóram seo agus cumraithe ag riarthóirí.",
"Example" : "Sampla",
"Replacement" : "Athsholáthar",
"Loading custom BBCodes …" : "Ag lódáil BBCóid saincheaptha…",
"No custom BBCodes configured." : "Níl aon BBCóid saincheaptha cumraithe.",
"Failed to load custom BBCodes" : "Theip ar BBCóid saincheaptha a luchtú",
"Insert emoji" : "Cuir isteach emoji",
"Upload failed" : "Theip ar an uaslódáil",
"Close" : "Dún",
"Pick a file to attach" : "Roghnaigh comhad le ceangal",
"Failed to upload file" : "Theip ar uaslódáil an chomhaid",
"_Thread_::_Threads_" : ["Snáithe","Snáitheanna","Snáitheanna","Snáitheanna","Snáitheanna"],
"_Post_::_Posts_" : ["Post","Poist","Poist","Poist","Poist"],
"No description available" : "Níl aon chur síos ar fáil",
"Create category header" : "Cruthaigh ceanntásc catagóire",
"Edit category header" : "Cuir ceanntásc na catagóire in eagar",
"Header name" : "Ainm an cheanntásca",
"Enter header name" : "Cuir isteach ainm an cheanntásca",
"Header description" : "Cur síos ar an gceannteideal",
"Enter header description (optional)" : "Cuir isteach cur síos ar an gceannteideal (roghnach)",
"Sort order" : "Ordú sórtála",
"Lower numbers appear first" : "Feictear uimhreacha níos ísle ar dtús",
"Cancel" : "Cealaigh",
"Create" : "Cruthaigh",
"Update" : "Nuashonrú",
"Move" : "Bog",
"Page not found" : "Ní bhfuarthas an leathanach",
"The page you are looking for could not be found." : "Níorbh fhéidir an leathanach atá á lorg agat a aimsiú.",
"Back" : "Ar ais",
"Go to home" : "Téigh go dtí an baile",
"Edited" : "Eagarthóireacht déanta",
"Quote reply" : "Freagra luachana",
"Edit" : "Cuir in eagar",
"Delete" : "Scrios",
"Are you sure you want to delete this post? This action cannot be undone." : "An bhfuil tú cinnte gur mian leat an post seo a scriosadh? Ní féidir an gníomh seo a chealú.",
"Unread" : "Neamhléite",
"Edit your post …" : "Cuir do phost in eagar …",
"Save" : "Sábháil",
"Are you sure you want to discard your changes?" : "An bhfuil tú cinnte gur mian leat do chuid athruithe a chaitheamh amach?",
"Add reaction" : "Cuir imoibriú leis",
"React with {emoji}" : "Freagair le {emoji}",
"You reacted with {emoji}" : "D'imoibrigh tú le {emoji}",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["D'fhreagair %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}"],
"Write your reply …" : "Scríobh do fhreagra…",
"Post reply" : "Freagra poist",
"Are you sure you want to discard your reply?" : "An bhfuil tú cinnte gur mian leat do fhreagra a chaitheamh amach?",
"In thread" : "Sa snáithe",
"Thread unavailable" : "Snáithe ar fáil",
"Pinned thread" : "Snáithe bioráilte",
"Locked thread" : "Snáithe faoi ghlas",
"Uncategorized" : "Gan catagóir",
"_%n post_::_%n posts_" : ["%n post","%n poist","%n poist","%n poist","%n poist"],
"_%n view_::_%n views_" : ["%n radharc","%n radharic","%n radharic","%n radharic","%n radharc"],
"Replies" : "Freagraí",
"Views" : "Radhairc",
"Title" : "Teideal",
"Enter thread title …" : "Cuir isteach teideal an tsnáithe …",
"Write your first post …" : "Scríobh do chéad phost …",
"Create thread" : "Cruthaigh snáithe",
"Are you sure you want to discard this thread?" : "An bhfuil tú cinnte gur mian leat an snáithe seo a chaitheamh amach?",
"Refresh" : "Athnuaigh",
"Loading …" : "Á lódáil…",
"No categories yet" : "Gan aon chatagóirí fós",
"Categories will appear here once they are created." : "Beidh catagóirí le feiceáil anseo a luaithe a bheidh siad cruthaithe.",
"No categories in this section" : "Níl aon chatagóirí sa chuid seo",
"Category not found" : "Níor aimsíodh an chatagóir",
"The category you are looking for does not exist or has been removed." : "Níl an chatagóir atá á lorg agat ann nó baineadh í.",
"Back to categories" : "Ar ais chuig na catagóirí",
"New thread" : "Snáithe nua",
"Error loading category" : "Earráid ag lódáil na catagóire",
"No threads yet" : "Gan aon snáitheanna fós",
"Be the first to start a discussion in this category." : "Bí ar an gcéad duine chun plé a thosú sa chatagóir seo.",
"Retry" : "Bain triail eile as",
"_Showing %n thread_::_Showing %n threads_" : ["Ag taispeáint %n snáithe","Ag taispeáint %n snáitheanna","Ag taispeáint %n snáitheanna","Ag taispeáint %n snáitheanna","Ag taispeáint %n snáitheanna"],
"An unexpected error occurred" : "Tharla earráid gan choinne",
"No category ID or slug provided" : "Níor soláthraíodh aon aitheantas catagóire ná seilide",
"Failed to load threads" : "Theip ar snáitheanna a luchtú",
"Create New Thread" : "Cruthaigh Snáithe Nua",
"In {category}" : "I {category}",
"Creating thread …" : "Ag cruthú snáithe …",
"Thread created" : "Snáithe cruthaithe",
"Failed to create thread" : "Theip ar an snáithe a chruthú",
"No category specified" : "Gan catagóir sonraithe",
"Error" : "Earráid",
"First post" : "An chéad phost",
"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 posted any replies yet" : "Níl aon fhreagraí curtha suas 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 posts" : "Cuardaigh i bpoist",
"Syntax help" : "Cabhair le comhréir",
"Search syntax" : "Comhréir cuardaigh",
"Match exact phrase" : "Meaitseáil frása cruinn",
"Both terms required" : "An dá théarma ag teastáil",
"Either term matches" : "Meaitseálann ceachtar téarma",
"Group conditions with parentheses" : "Coinníollacha grúpa le lúibíní",
"Exclude term from results" : "Eisiamh téarma ó na torthaí",
"Searching …" : "Ag cuardach…",
"Search Error" : "Earráid Chuardaigh",
"Enter a search query" : "Cuir isteach fiosrúchán cuardaigh",
"Use the search box above to find threads and posts" : "Úsáid an bosca cuardaigh thuas chun snáitheanna agus poist a aimsiú",
"No results found" : "Níor aimsíodh aon torthaí",
"Try different keywords or check your syntax" : "Bain triail as eochairfhocail éagsúla nó seiceáil do chomhréir",
"_%n thread found_::_%n threads found_" : ["%n snáithe aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe"],
"_%n post found_::_%n posts found_" : ["%n post aimsithe","%n poist aimsithe","%n poist aimsithe","%n poist aimsithe","%n poist aimsithe"],
"Please enter a search query" : "Cuir isteach fiosrúchán cuardaigh le do thoil",
"Please select at least one search scope" : "Roghnaigh raon cuardaigh amháin ar a laghad",
"Failed to search" : "Theip ar an gcuardach",
"Thread not found" : "Níor aimsíodh an snáithe",
"The thread you are looking for does not exist or has been removed." : "Níl an snáithe atá á lorg agat ann nó baineadh é.",
"Back to {category}" : "Ar ais go dtí {category}",
"Reply" : "Freagra",
"Error loading thread" : "Earráid ag luchtú an snáithe",
"No posts yet" : "Gan aon phoist fós",
"Be the first to post in this thread." : "Bí ar an gcéad duine chun postáil sa snáithe seo.",
"by" : "le",
"This thread is locked. Only moderators can post replies." : "Tá an snáithe seo faoi ghlas. Ní féidir ach le modhnóirí freagraí a phostáil.",
"You must be signed in to reply to this thread." : "Ní mór duit a bheith logáilte isteach chun freagra a thabhairt ar an snáithe seo.",
"Sign in to reply" : "Sínigh isteach le freagra a thabhairt",
"_Showing %n post_::_Showing %n posts_" : ["Ag taispeáint %n post","Ag taispeáint %n poist","Ag taispeáint %n poist","Ag taispeáint %n poist","Ag taispeáint %n poist"],
"Lock thread" : "Glasáil snáithe",
"Unlock thread" : "Díghlasáil snáithe",
"Pin thread" : "Snáithe bioráin",
"Unpin thread" : "Díbioráin snáithe",
"Thread locked" : "Snáithe faoi ghlas",
"Thread unlocked" : "Snáithe díghlasáilte",
"Thread pinned" : "Snáithe bioráilte",
"Thread unpinned" : "Snáithe díbhoránta",
"Subscribe" : "Liostáil",
"Subscribed" : "Suibscríofa",
"Subscribed to thread" : "Liostáilte leis an snáithe",
"Unsubscribed from thread" : "Díliostáilte ón snáithe",
"Edit title" : "Cuir teideal in eagar",
"Move thread" : "Bog snáithe",
"No thread ID or slug provided" : "Níor soláthraíodh aon ID snáithe ná slug",
"Failed to load posts" : "Theip ar phoist a lódáil",
"Post updated" : "Post nuashonraithe",
"Failed to update post" : "Theip ar an bpost a nuashonrú",
"Thread deleted" : "Scriosadh an snáithe",
"Post deleted" : "Scriosadh an post",
"Failed to delete post" : "Theip ar an bpost a scriosadh",
"Failed to update thread lock status" : "Theip ar stádas glasála snáithe a nuashonrú",
"Failed to update thread pin status" : "Theip ar stádas bioráin an snáithe a nuashonrú",
"Failed to update subscription" : "Theip ar an síntiús a nuashonrú",
"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",
"Notifications" : "Fógraí",
"Configure how you receive notifications" : "Cumraigh conas a fhaigheann tú fógraí",
"Auto-subscribe to threads I create" : "Liostáil go huathoibríoch le snáitheanna a chruthaím",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Nuair a bheidh sé cumasaithe, gheobhaidh tú fógraí go huathoibríoch le haghaidh freagraí ar shnáitheanna a chruthaíonn tú",
"Files" : "Comhaid",
"Browse" : "Brabhsáil",
"Preferences saved" : "Roghanna sábháilte",
"Failed to save preferences" : "Theip ar na roghanna a shábháil",
"BBCode management" : "Bainistíocht BBCode",
"Manage custom BBCode tags for post formatting" : "Bainistigh clibeanna saincheaptha BBCode le haghaidh formáidiú post",
"Error loading BBCodes" : "Earráid ag luchtú BBCóid",
"Create BBCode" : "Cruthaigh BBCode",
"Enable" : "Cumasaigh",
"Disable" : "Díchumasaigh",
"Enabled BBCodes" : "BBCóid Chumasaithe",
"These BBCode tags are currently active" : "Tá na clibeanna BBCode seo gníomhach faoi láthair",
"Disabled BBCodes" : "BBCóid Dhíchumasaithe",
"These BBCode tags are currently inactive" : "Tá na clibeanna BBCode seo neamhghníomhach faoi láthair",
"No enabled BBCodes" : "Gan aon BBCóid cumasaithe",
"Parses Inner" : "Parsálann Istigh",
"Delete BBCode" : "Scrios BBCode",
"Are you sure you want to delete the BBCode tag [{tag}]?" : "An bhfuil tú cinnte gur mian leat an clib BBCode [{tag}] a scriosadh?",
"This action cannot be undone." : "Ní féidir an gníomh seo a chealú.",
"Edit BBCode" : "Cuir BBCode in Eagar",
"Tag" : "Clib",
"e.g., b, i, url, color" : "m.sh., b, i, url, dath",
"The BBCode tag name (without brackets)" : "Ainm an chlib BBCode (gan lúibíní)",
"HTML replacement" : "Athsholáthar HTML",
"e.g., {strongStart}{content}{strongEnd}" : "m.sh., {strongStart}{content}{strongEnd}",
"Use {content} for the tag content and {paramName} for parameters" : "Úsáid {content} don ábhar clibe agus {paramName} do na paraiméadair",
"e.g., {tagStart}Hello world{tagEnd}" : "m.sh., {tagStart}Haigh a dhomhan{tagEnd}",
"Example usage of this BBCode tag" : "Sampla úsáide den chlib BBCode seo",
"Description" : "Cur síos",
"Brief description of what this BBCode does" : "Cur síos gairid ar a ndéanann an BBCód seo",
"Enabled" : "Cumasaithe",
"Parse inner content" : "Parsáil an t-ábhar inmheánach",
"If enabled, BBCode tags inside this tag will also be parsed" : "Má tá sé cumasaithe, déanfar clibeanna BBCode laistigh den chlib seo a pharsáil freisin.",
"Create category" : "Cruthaigh catagóir",
"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 --",
"Name" : "Ainm",
"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}\")",
"Enter category description (optional)" : "Cuir isteach cur síos ar an gcatagóir (roghnach)",
"New" : "Nua",
"Permissions" : "Ceadanna",
"Control which roles can access and moderate this category" : "Rialú cé na róil a bhfuil rochtain acu ar an gcatagóir seo agus a bhfuil modhnóireacht aici",
"Roles that can view" : "Róil ar féidir leo féachaint orthu",
"Select roles that can view this category and its threads" : "Roghnaigh róil ar féidir leo an chatagóir seo agus a snáitheanna a fheiceáil",
"Roles that can moderate" : "Róil ar féidir leo modhnóireacht a dhéanamh",
"Select roles that can moderate (edit/delete) content in this category" : "Roghnaigh róil ar féidir leo ábhar sa chatagóir seo a mhodhnú (a chur in eagar/a scriosadh)",
"Select roles …" : "Roghnaigh róil …",
"Manage forum categories and organization" : "Bainistigh catagóirí agus eagrú an fhóraim",
"Error loading categories" : "Earráid ag luchtú catagóirí",
"No categories in this header" : "Gan aon chatagóirí sa cheanntásc seo",
"Delete category" : "Scrios catagóir",
"Are you sure you want to delete the category \"{name}\"?" : "An bhfuil tú cinnte gur mian leat an chatagóir \"{name}\" a scriosadh?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Tá %n snáithe sa chatagóir seo.","Tá %n snáithe sa chatagóir seo.","Tá %n snáithe sa chatagóir seo.","Tá %n snáithe sa chatagóir seo.","Tá %n snáithe sa chatagóir seo."],
"What should happen to the threads?" : "Cad ba chóir a tharlú do na snáitheanna?",
"Move threads to another category" : "Bog snáitheanna go catagóir eile",
"Delete all threads (soft delete)" : "Scrios na snáitheanna go léir (scriosadh bog)",
"Threads will be hidden but not permanently deleted" : "Beidh snáitheanna i bhfolach ach ní scriosfar iad go buan",
"Select target category" : "Roghnaigh catagóir sprice",
"-- Select a category --" : "-- Roghnaigh catagóir --",
"Create header" : "Cruthaigh ceanntásc",
"_%n category_::_%n categories_" : ["%n catagóir","%n catagóirí","%n catagóirí","%n catagóirí","%n catagóirí"],
"_%n thread_::_%n threads_" : ["%n snáithe","%n snáitheanna","%n snáitheanna","%n snáitheanna","%n snáitheanna"],
"Delete header" : "Scrios ceanntásc",
"Are you sure you want to delete the header \"{name}\"?" : "An bhfuil tú cinnte gur mian leat an ceanntásc \"{name}\" a scriosadh?",
"_This header contains %n category._::_This header contains %n categories._" : ["Tá %n catagóir sa cheanntásc seo.","Tá %n catagóir sa cheanntásc seo.","Tá %n catagóir sa cheanntásc seo.","Tá %n catagóir sa cheanntásc seo.","Tá %n catagóir sa cheanntásc seo."],
"This action cannot be undone" : "Ní féidir an gníomh seo a chealú",
"What should happen to the categories?" : "Cad ba cheart a tharlú do na catagóirí?",
"Move categories to another header" : "Bog catagóirí go ceanntásc eile",
"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",
"Move up" : "Éirí suas",
"Move down" : "Bog síos",
"Admin dashboard" : "Painéal riaracháin",
"Overview of forum activity and statistics" : "Forbhreathnú ar ghníomhaíocht agus staitisticí an fhóraim",
"Loading statistics …" : "Staitisticí á lódáil …",
"Error loading dashboard" : "Earráid ag lódáil an phainéil",
"Total statistics" : "Staitisticí iomlána",
"Total users" : "Líon iomlán úsáideoirí",
"Total threads" : "Líon iomlán na snáitheanna",
"Total posts" : "Líon iomlán na bpost",
"Total categories" : "Iomlán na gcatagóirí",
"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 posts" : "Poist nua",
"Top contributors" : "Príomh-rannpháirtithe",
"No contributors yet" : "Gan aon rannpháirtithe fós",
"Last 7 days" : "7 lá seo caite",
"All time" : "Gach am",
"General settings" : "Socruithe Ginearálta",
"Configure general forum settings" : "Cumraigh socruithe ginearálta an fhóraim",
"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",
"Welcome to the forum" : "Fáilte chuig an bhfóram",
"A brief description shown below the title" : "Cur síos gairid a thaispeántar faoin teideal",
"Access control" : "Rialú rochtana",
"Manage who can access the forum" : "Bainistigh cé a fhéadfaidh rochtain a fháil ar an bhfóram",
"Allow guest access" : "Ceadaigh rochtain aoi",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Nuair a bhíonn sé cumasaithe, is féidir le húsáideoirí neamhúdaraithe ábhar an fhóraim a fheiceáil i mód léite amháin.",
"Settings saved" : "Socruithe sábháilte",
"Failed to save settings" : "Theip ar na socruithe a shábháil",
"Create role" : "Cruthaigh ról",
"Edit role" : "Cuir ról in eagar",
"Configure role permissions and category access" : "Cumraigh ceadanna róil agus rochtain catagóire",
"Error loading role" : "Earráid ag lódáil an ról",
"Enter role name" : "Cuir isteach ainm an róil",
"Enter role description (optional)" : "Cuir isteach cur síos ar an ról (roghnach)",
"System role names cannot be changed" : "Ní féidir ainmneacha rólanna córais a athrú",
"Colors" : "Dathanna",
"Set colors for this role badge" : "Socraigh dathanna don suaitheantas róil seo",
"Light mode color" : "Dath mód solais",
"Dark mode color" : "Dath mód dorcha",
"Reset" : "Athshocraigh",
"Role permissions" : "Ceadanna ról",
"Set global permissions for this role" : "Socraigh ceadanna domhanda don ról seo",
"Can access admin tools" : "Is féidir rochtain a fháil ar uirlisí riaracháin",
"Allow access to the admin dashboard and tools" : "Ceadaigh rochtain ar an deais riarthóra agus ar na huirlisí",
"Can edit roles" : "Is féidir róil a chur in eagar",
"Allow creating, editing and deleting roles" : "Ceadaigh róil a chruthú, a chur in eagar agus a scriosadh",
"Can edit categories" : "Is féidir catagóirí a chur in eagar",
"Allow creating, editing and deleting categories" : "Ceadaigh catagóirí a chruthú, a chur in eagar agus a scriosadh",
"Category permissions" : "Ceadanna catagóire",
"Set which categories this role can access" : "Socraigh cé na catagóirí ar féidir leis an ról seo rochtain a fháil orthu",
"Category" : "Catagóir",
"Can view" : "Is féidir féachaint air",
"Can moderate" : "Is féidir maolú a dhéanamh",
"Allow" : "Ceadaigh",
"No categories available" : "Níl aon chatagóirí ar fáil",
"Admin role must have all permissions enabled" : "Ní mór gach cead a bheith cumasaithe i ról an riarthóra",
"Admin role has full access to all categories" : "Tá rochtain iomlán ag ról an riarthóra ar gach catagóir",
"Guest role cannot have admin permissions" : "Ní féidir ceadanna riarthóra a bheith ag ról aoi",
"Guest role cannot moderate categories" : "Ní féidir le ról aoi catagóirí a mhodhnú",
"Guest access is currently disabled" : "Tá rochtain aoi díchumasaithe faoi láthair",
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Ní bheidh úsáideoirí aoi in ann rochtain a fháil ar an bhfóram go dtí go mbeidh rochtain aoi cumasaithe i socruithe an fhóraim.",
"Go to forum settings" : "Téigh chuig socruithe an fhóraim",
"Default role cannot moderate categories" : "Ní féidir le ról réamhshocraithe catagóirí a mhodhnú",
"Role management" : "Bainistíocht rólanna",
"Create and manage forum roles and permissions" : "Róil agus ceadanna fóraim a chruthú agus a bhainistiú",
"Loading roles …" : "Ag lódáil róil …",
"Error loading roles" : "Earráid ag luchtú róil",
"No roles found" : "Níor aimsíodh aon róil",
"Create your first role to get started" : "Cruthaigh do chéad ról le tosú",
"ID" : "ID",
"Created" : "Cruthaithe",
"Actions" : "Gníomhartha",
"No description" : "Gan cur síos",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "An bhfuil tú cinnte gur mian leat an ról \"{name}\" a scriosadh? Ní féidir an gníomh seo a chealú.",
"System roles cannot be deleted" : "Ní féidir róil chórais a scriosadh",
"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",
"Posts" : "Poist",
"Joined" : "Chuaigh isteach",
"Status" : "Stádas",
"Active" : "Gníomhach",
"Deleted" : "Scriosta",
"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"
},
"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);");

410
l10n/ga.json Normal file
View File

@@ -0,0 +1,410 @@
{ "translations": {
"Admin" : "Riarachán",
"Administrator role with full permissions" : "Ról riarthóra le ceadanna iomlána",
"Moderator" : "Modhnóir",
"Moderator role with elevated permissions" : "Ról modhnóra le ceadanna ardaithe",
"User" : "Úsáideoir",
"Default user role with basic permissions" : "Ról úsáideora réamhshocraithe le ceadanna bunúsacha",
"Guest" : "Aoi",
"Guest role for unauthenticated users with read-only access" : "Ról aoi d'úsáideoirí neamhúdaraithe a bhfuil rochtain léite amháin acu",
"General" : "Ginearálta",
"General discussion categories" : "Catagóirí plé ginearálta",
"General discussions" : "Plé ginearálta",
"A place for general conversations and discussions" : "Áit le haghaidh comhráite agus plé ginearálta",
"Support" : "Tacaíocht",
"Ask questions about the forum, provide feedback or report issues." : "Cuir ceisteanna faoin bhfóram, tabhair aiseolas nó tuairiscigh fadhbanna.",
"Inline code" : "Cód inlíne",
"Spoilers" : "Spoiléirí",
"Attachment" : "Ceangaltán",
"Welcome to Nextcloud Forums" : "Fáilte go Fóraim Nextcloud",
"Welcome to the Nextcloud Forums!" : "Fáilte go dtí Fóraim Nextcloud!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Is fóram pobail-thiomáinte é seo atá tógtha isteach i do chás Nextcloud. Anseo is féidir leat topaicí a phlé, smaointe a roinnt agus comhoibriú le húsáideoirí eile.",
"Features:" : "Gnéithe:",
"Create and reply to threads" : "Cruthaigh agus freagair snáitheanna",
"Organize discussions by categories" : "Eagraigh plé de réir catagóirí",
"Use BBCode for rich text formatting" : "Bain úsáid as BBCode le haghaidh formáidiú téacs saibhir",
"Attach files from your Nextcloud storage" : "Ceangail comhaid ó do stóras Nextcloud",
"React to posts" : "Freagairt do phoist",
"Track read/unread threads" : "Rianaigh snáitheanna léite/neamhléite",
"BBCode examples:" : "Samplaí BBCode:",
"Bold text" : "Téacs trom",
"Use %1$stext%2$s" : "Úsáid %1$stext%2$s",
"Italic text" : "Téacs iodálach",
"Underlined text" : "Téacs a bhfuil líne faoi",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Ná bíodh drogall ort plé nua a thosú nó freagra a thabhairt ar shnáitheanna atá ann cheana féin. Go n-éirí leat ag postáil!",
"Forum" : "Fóram",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count}freagra nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}"],
"Welcome to the forum!" : "Fáilte romhat chuig an bhfóram!",
"Deleted user" : "Úsáideoir scriosta",
"A community-driven forum built right into your Nextcloud instance" : "Fóram atá tiomáinte ag an bpobal atá tógtha isteach i do chás Nextcloud",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cruthaigh plé, roinn smaointe agus comhoibrigh le do phobal go díreach i Nextcloud.\n\n**⚠️ Fógra Forbartha Luath:**\nTá an aip seo i gcéimeanna luatha forbartha. Cé go bhfuil sí feidhmiúil, d'fhéadfadh fabhtanna nó gnéithe neamhiomlána teacht ort. Tuairiscigh aon fhadhbanna ar GitHub agus smaoinigh ar chúltaca de do shonraí a dhéanamh go rialta.\n\n**Príomhghnéithe:**\n- **Plé bunaithe ar shnáitheanna** - Cruthaigh agus freagair snáitheanna plé eagraithe\n- **Eagrú Catagóirí** - Struchtúraigh do fhóram le catagóirí agus ceanntásca saincheaptha\n- **Formáidiú Téacs Saibhir** - Úsáid BBCode chun poist a fhormáidiú le cló trom, iodálach, naisc, íomhánna, bloic chód agus níos mó\n- **Ceangaltáin Chomhad** - Ceangail comhaid ó do stóras Nextcloud le poist\n- **Imoibrithe Poist** - Imoibriú le poist le himoibrithe emoji\n- **Rianú Léite/Gan Léite** - Coinnigh súil ar na snáitheanna atá léite agat\n- **Cuardaigh** - Aimsigh plé go tapa le cuardach ionsuite\n- **Próifílí Úsáideoirí** - Féach ar stair agus staitisticí post úsáideoirí\n- **Ceadanna Bunaithe ar Ról** - Rialú rochtana agus modhnóireachta le róil sholúbtha\n- **Rochtain Aoi**: Rochtain phoiblí roghnach d'úsáideoirí neamhúdaraithe le ceadanna inchumraithe\n- **Uirlisí Riaracháin** - Bainistigh catagóirí, róil, BBCóid agus socruithe fóraim\n- **Uirlisí Modhnóireachta** - Snáitheanna agus poist a phionáil, a ghlasáil agus a bhainistiú\n\n**Foirfe do:**\n- Plé foirne agus comhoibriú\n- Fóraim phobail\n- Bealaí tacaíochta\n- Bunachair eolais\n- Plé tionscadail\n- Cumarsáid inmheánach\n\nComhtháthaíonn an fóram go gan uaim le do chás Nextcloud, ag baint úsáide as d'úsáideoirí agus do ghrúpaí atá ann cheana féin le haghaidh fíordheimhnithe agus rialú rochtana.",
"Search" : "Cuardach",
"Home" : "Baile",
"User preferences" : "Roghanna úsáideora",
"Dashboard" : "Deais",
"Forum settings" : "Socruithe an fhóraim",
"Users" : "Úsáideoirí",
"Roles" : "Róil",
"Categories" : "Catagóirí",
"BBCodes" : "BBCóid",
"Expand" : "Leathnaigh",
"Collapse" : "Laghdaigh",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Tabhair faoi deara le do thoil:{bEnd} Beidh comhaid cheangailte le feiceáil ag aon duine san fhóram, beag beann ar shocruithe comhroinnte an chomhaid.",
"Hello world!" : "Dia duit, a dhomhan!",
"Font style bold" : "Stíl cló trom",
"Font style italic" : "Stíl cló iodálach",
"Font style struck through" : "Stíl cló stróicthe tríd",
"Font style underlined" : "Stíl cló faoi líne",
"Code" : "Cód",
"Email (clickable)" : "Ríomhphost (inchliceáilte)",
"URL (clickable)" : "URL (clickable)",
"Image (not clickable)" : "Íomhá (ní féidir cliceáil air)",
"Quote" : "Athfhriotail",
"Embedded YouTube video" : "Físeán YouTube leabaithe",
"Font (name)" : "Cló (ainm)",
"Font size" : "Méid cló",
"Font color" : "Dath cló",
"Align left" : "Ailínigh ar chlé",
"Align center" : "Ailínigh sa lár",
"Align right" : "Ailínigh ar dheis",
"List" : "Liosta",
"List item within a list" : "Mír liosta laistigh de liosta",
"List item within a list (alias)" : "Mír liosta laistigh de liosta (ainm cleite)",
"BBCode help" : "Cabhair BBCode",
"Built-in BBCodes" : "BBCóid ionsuite",
"These BBCodes are available by default." : "Tá na BBCóid seo ar fáil de réir réamhshocraithe.",
"Custom BBCodes" : "BBCóid Saincheaptha",
"These BBCodes are custom to this forum and configured by administrators." : "Tá na BBCóid seo saincheaptha don fhóram seo agus cumraithe ag riarthóirí.",
"Example" : "Sampla",
"Replacement" : "Athsholáthar",
"Loading custom BBCodes …" : "Ag lódáil BBCóid saincheaptha…",
"No custom BBCodes configured." : "Níl aon BBCóid saincheaptha cumraithe.",
"Failed to load custom BBCodes" : "Theip ar BBCóid saincheaptha a luchtú",
"Insert emoji" : "Cuir isteach emoji",
"Upload failed" : "Theip ar an uaslódáil",
"Close" : "Dún",
"Pick a file to attach" : "Roghnaigh comhad le ceangal",
"Failed to upload file" : "Theip ar uaslódáil an chomhaid",
"_Thread_::_Threads_" : ["Snáithe","Snáitheanna","Snáitheanna","Snáitheanna","Snáitheanna"],
"_Post_::_Posts_" : ["Post","Poist","Poist","Poist","Poist"],
"No description available" : "Níl aon chur síos ar fáil",
"Create category header" : "Cruthaigh ceanntásc catagóire",
"Edit category header" : "Cuir ceanntásc na catagóire in eagar",
"Header name" : "Ainm an cheanntásca",
"Enter header name" : "Cuir isteach ainm an cheanntásca",
"Header description" : "Cur síos ar an gceannteideal",
"Enter header description (optional)" : "Cuir isteach cur síos ar an gceannteideal (roghnach)",
"Sort order" : "Ordú sórtála",
"Lower numbers appear first" : "Feictear uimhreacha níos ísle ar dtús",
"Cancel" : "Cealaigh",
"Create" : "Cruthaigh",
"Update" : "Nuashonrú",
"Move" : "Bog",
"Page not found" : "Ní bhfuarthas an leathanach",
"The page you are looking for could not be found." : "Níorbh fhéidir an leathanach atá á lorg agat a aimsiú.",
"Back" : "Ar ais",
"Go to home" : "Téigh go dtí an baile",
"Edited" : "Eagarthóireacht déanta",
"Quote reply" : "Freagra luachana",
"Edit" : "Cuir in eagar",
"Delete" : "Scrios",
"Are you sure you want to delete this post? This action cannot be undone." : "An bhfuil tú cinnte gur mian leat an post seo a scriosadh? Ní féidir an gníomh seo a chealú.",
"Unread" : "Neamhléite",
"Edit your post …" : "Cuir do phost in eagar …",
"Save" : "Sábháil",
"Are you sure you want to discard your changes?" : "An bhfuil tú cinnte gur mian leat do chuid athruithe a chaitheamh amach?",
"Add reaction" : "Cuir imoibriú leis",
"React with {emoji}" : "Freagair le {emoji}",
"You reacted with {emoji}" : "D'imoibrigh tú le {emoji}",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["D'fhreagair %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}"],
"Write your reply …" : "Scríobh do fhreagra…",
"Post reply" : "Freagra poist",
"Are you sure you want to discard your reply?" : "An bhfuil tú cinnte gur mian leat do fhreagra a chaitheamh amach?",
"In thread" : "Sa snáithe",
"Thread unavailable" : "Snáithe ar fáil",
"Pinned thread" : "Snáithe bioráilte",
"Locked thread" : "Snáithe faoi ghlas",
"Uncategorized" : "Gan catagóir",
"_%n post_::_%n posts_" : ["%n post","%n poist","%n poist","%n poist","%n poist"],
"_%n view_::_%n views_" : ["%n radharc","%n radharic","%n radharic","%n radharic","%n radharc"],
"Replies" : "Freagraí",
"Views" : "Radhairc",
"Title" : "Teideal",
"Enter thread title …" : "Cuir isteach teideal an tsnáithe …",
"Write your first post …" : "Scríobh do chéad phost …",
"Create thread" : "Cruthaigh snáithe",
"Are you sure you want to discard this thread?" : "An bhfuil tú cinnte gur mian leat an snáithe seo a chaitheamh amach?",
"Refresh" : "Athnuaigh",
"Loading …" : "Á lódáil…",
"No categories yet" : "Gan aon chatagóirí fós",
"Categories will appear here once they are created." : "Beidh catagóirí le feiceáil anseo a luaithe a bheidh siad cruthaithe.",
"No categories in this section" : "Níl aon chatagóirí sa chuid seo",
"Category not found" : "Níor aimsíodh an chatagóir",
"The category you are looking for does not exist or has been removed." : "Níl an chatagóir atá á lorg agat ann nó baineadh í.",
"Back to categories" : "Ar ais chuig na catagóirí",
"New thread" : "Snáithe nua",
"Error loading category" : "Earráid ag lódáil na catagóire",
"No threads yet" : "Gan aon snáitheanna fós",
"Be the first to start a discussion in this category." : "Bí ar an gcéad duine chun plé a thosú sa chatagóir seo.",
"Retry" : "Bain triail eile as",
"_Showing %n thread_::_Showing %n threads_" : ["Ag taispeáint %n snáithe","Ag taispeáint %n snáitheanna","Ag taispeáint %n snáitheanna","Ag taispeáint %n snáitheanna","Ag taispeáint %n snáitheanna"],
"An unexpected error occurred" : "Tharla earráid gan choinne",
"No category ID or slug provided" : "Níor soláthraíodh aon aitheantas catagóire ná seilide",
"Failed to load threads" : "Theip ar snáitheanna a luchtú",
"Create New Thread" : "Cruthaigh Snáithe Nua",
"In {category}" : "I {category}",
"Creating thread …" : "Ag cruthú snáithe …",
"Thread created" : "Snáithe cruthaithe",
"Failed to create thread" : "Theip ar an snáithe a chruthú",
"No category specified" : "Gan catagóir sonraithe",
"Error" : "Earráid",
"First post" : "An chéad phost",
"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 posted any replies yet" : "Níl aon fhreagraí curtha suas 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 posts" : "Cuardaigh i bpoist",
"Syntax help" : "Cabhair le comhréir",
"Search syntax" : "Comhréir cuardaigh",
"Match exact phrase" : "Meaitseáil frása cruinn",
"Both terms required" : "An dá théarma ag teastáil",
"Either term matches" : "Meaitseálann ceachtar téarma",
"Group conditions with parentheses" : "Coinníollacha grúpa le lúibíní",
"Exclude term from results" : "Eisiamh téarma ó na torthaí",
"Searching …" : "Ag cuardach…",
"Search Error" : "Earráid Chuardaigh",
"Enter a search query" : "Cuir isteach fiosrúchán cuardaigh",
"Use the search box above to find threads and posts" : "Úsáid an bosca cuardaigh thuas chun snáitheanna agus poist a aimsiú",
"No results found" : "Níor aimsíodh aon torthaí",
"Try different keywords or check your syntax" : "Bain triail as eochairfhocail éagsúla nó seiceáil do chomhréir",
"_%n thread found_::_%n threads found_" : ["%n snáithe aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe"],
"_%n post found_::_%n posts found_" : ["%n post aimsithe","%n poist aimsithe","%n poist aimsithe","%n poist aimsithe","%n poist aimsithe"],
"Please enter a search query" : "Cuir isteach fiosrúchán cuardaigh le do thoil",
"Please select at least one search scope" : "Roghnaigh raon cuardaigh amháin ar a laghad",
"Failed to search" : "Theip ar an gcuardach",
"Thread not found" : "Níor aimsíodh an snáithe",
"The thread you are looking for does not exist or has been removed." : "Níl an snáithe atá á lorg agat ann nó baineadh é.",
"Back to {category}" : "Ar ais go dtí {category}",
"Reply" : "Freagra",
"Error loading thread" : "Earráid ag luchtú an snáithe",
"No posts yet" : "Gan aon phoist fós",
"Be the first to post in this thread." : "Bí ar an gcéad duine chun postáil sa snáithe seo.",
"by" : "le",
"This thread is locked. Only moderators can post replies." : "Tá an snáithe seo faoi ghlas. Ní féidir ach le modhnóirí freagraí a phostáil.",
"You must be signed in to reply to this thread." : "Ní mór duit a bheith logáilte isteach chun freagra a thabhairt ar an snáithe seo.",
"Sign in to reply" : "Sínigh isteach le freagra a thabhairt",
"_Showing %n post_::_Showing %n posts_" : ["Ag taispeáint %n post","Ag taispeáint %n poist","Ag taispeáint %n poist","Ag taispeáint %n poist","Ag taispeáint %n poist"],
"Lock thread" : "Glasáil snáithe",
"Unlock thread" : "Díghlasáil snáithe",
"Pin thread" : "Snáithe bioráin",
"Unpin thread" : "Díbioráin snáithe",
"Thread locked" : "Snáithe faoi ghlas",
"Thread unlocked" : "Snáithe díghlasáilte",
"Thread pinned" : "Snáithe bioráilte",
"Thread unpinned" : "Snáithe díbhoránta",
"Subscribe" : "Liostáil",
"Subscribed" : "Suibscríofa",
"Subscribed to thread" : "Liostáilte leis an snáithe",
"Unsubscribed from thread" : "Díliostáilte ón snáithe",
"Edit title" : "Cuir teideal in eagar",
"Move thread" : "Bog snáithe",
"No thread ID or slug provided" : "Níor soláthraíodh aon ID snáithe ná slug",
"Failed to load posts" : "Theip ar phoist a lódáil",
"Post updated" : "Post nuashonraithe",
"Failed to update post" : "Theip ar an bpost a nuashonrú",
"Thread deleted" : "Scriosadh an snáithe",
"Post deleted" : "Scriosadh an post",
"Failed to delete post" : "Theip ar an bpost a scriosadh",
"Failed to update thread lock status" : "Theip ar stádas glasála snáithe a nuashonrú",
"Failed to update thread pin status" : "Theip ar stádas bioráin an snáithe a nuashonrú",
"Failed to update subscription" : "Theip ar an síntiús a nuashonrú",
"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",
"Notifications" : "Fógraí",
"Configure how you receive notifications" : "Cumraigh conas a fhaigheann tú fógraí",
"Auto-subscribe to threads I create" : "Liostáil go huathoibríoch le snáitheanna a chruthaím",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Nuair a bheidh sé cumasaithe, gheobhaidh tú fógraí go huathoibríoch le haghaidh freagraí ar shnáitheanna a chruthaíonn tú",
"Files" : "Comhaid",
"Browse" : "Brabhsáil",
"Preferences saved" : "Roghanna sábháilte",
"Failed to save preferences" : "Theip ar na roghanna a shábháil",
"BBCode management" : "Bainistíocht BBCode",
"Manage custom BBCode tags for post formatting" : "Bainistigh clibeanna saincheaptha BBCode le haghaidh formáidiú post",
"Error loading BBCodes" : "Earráid ag luchtú BBCóid",
"Create BBCode" : "Cruthaigh BBCode",
"Enable" : "Cumasaigh",
"Disable" : "Díchumasaigh",
"Enabled BBCodes" : "BBCóid Chumasaithe",
"These BBCode tags are currently active" : "Tá na clibeanna BBCode seo gníomhach faoi láthair",
"Disabled BBCodes" : "BBCóid Dhíchumasaithe",
"These BBCode tags are currently inactive" : "Tá na clibeanna BBCode seo neamhghníomhach faoi láthair",
"No enabled BBCodes" : "Gan aon BBCóid cumasaithe",
"Parses Inner" : "Parsálann Istigh",
"Delete BBCode" : "Scrios BBCode",
"Are you sure you want to delete the BBCode tag [{tag}]?" : "An bhfuil tú cinnte gur mian leat an clib BBCode [{tag}] a scriosadh?",
"This action cannot be undone." : "Ní féidir an gníomh seo a chealú.",
"Edit BBCode" : "Cuir BBCode in Eagar",
"Tag" : "Clib",
"e.g., b, i, url, color" : "m.sh., b, i, url, dath",
"The BBCode tag name (without brackets)" : "Ainm an chlib BBCode (gan lúibíní)",
"HTML replacement" : "Athsholáthar HTML",
"e.g., {strongStart}{content}{strongEnd}" : "m.sh., {strongStart}{content}{strongEnd}",
"Use {content} for the tag content and {paramName} for parameters" : "Úsáid {content} don ábhar clibe agus {paramName} do na paraiméadair",
"e.g., {tagStart}Hello world{tagEnd}" : "m.sh., {tagStart}Haigh a dhomhan{tagEnd}",
"Example usage of this BBCode tag" : "Sampla úsáide den chlib BBCode seo",
"Description" : "Cur síos",
"Brief description of what this BBCode does" : "Cur síos gairid ar a ndéanann an BBCód seo",
"Enabled" : "Cumasaithe",
"Parse inner content" : "Parsáil an t-ábhar inmheánach",
"If enabled, BBCode tags inside this tag will also be parsed" : "Má tá sé cumasaithe, déanfar clibeanna BBCode laistigh den chlib seo a pharsáil freisin.",
"Create category" : "Cruthaigh catagóir",
"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 --",
"Name" : "Ainm",
"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}\")",
"Enter category description (optional)" : "Cuir isteach cur síos ar an gcatagóir (roghnach)",
"New" : "Nua",
"Permissions" : "Ceadanna",
"Control which roles can access and moderate this category" : "Rialú cé na róil a bhfuil rochtain acu ar an gcatagóir seo agus a bhfuil modhnóireacht aici",
"Roles that can view" : "Róil ar féidir leo féachaint orthu",
"Select roles that can view this category and its threads" : "Roghnaigh róil ar féidir leo an chatagóir seo agus a snáitheanna a fheiceáil",
"Roles that can moderate" : "Róil ar féidir leo modhnóireacht a dhéanamh",
"Select roles that can moderate (edit/delete) content in this category" : "Roghnaigh róil ar féidir leo ábhar sa chatagóir seo a mhodhnú (a chur in eagar/a scriosadh)",
"Select roles …" : "Roghnaigh róil …",
"Manage forum categories and organization" : "Bainistigh catagóirí agus eagrú an fhóraim",
"Error loading categories" : "Earráid ag luchtú catagóirí",
"No categories in this header" : "Gan aon chatagóirí sa cheanntásc seo",
"Delete category" : "Scrios catagóir",
"Are you sure you want to delete the category \"{name}\"?" : "An bhfuil tú cinnte gur mian leat an chatagóir \"{name}\" a scriosadh?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Tá %n snáithe sa chatagóir seo.","Tá %n snáithe sa chatagóir seo.","Tá %n snáithe sa chatagóir seo.","Tá %n snáithe sa chatagóir seo.","Tá %n snáithe sa chatagóir seo."],
"What should happen to the threads?" : "Cad ba chóir a tharlú do na snáitheanna?",
"Move threads to another category" : "Bog snáitheanna go catagóir eile",
"Delete all threads (soft delete)" : "Scrios na snáitheanna go léir (scriosadh bog)",
"Threads will be hidden but not permanently deleted" : "Beidh snáitheanna i bhfolach ach ní scriosfar iad go buan",
"Select target category" : "Roghnaigh catagóir sprice",
"-- Select a category --" : "-- Roghnaigh catagóir --",
"Create header" : "Cruthaigh ceanntásc",
"_%n category_::_%n categories_" : ["%n catagóir","%n catagóirí","%n catagóirí","%n catagóirí","%n catagóirí"],
"_%n thread_::_%n threads_" : ["%n snáithe","%n snáitheanna","%n snáitheanna","%n snáitheanna","%n snáitheanna"],
"Delete header" : "Scrios ceanntásc",
"Are you sure you want to delete the header \"{name}\"?" : "An bhfuil tú cinnte gur mian leat an ceanntásc \"{name}\" a scriosadh?",
"_This header contains %n category._::_This header contains %n categories._" : ["Tá %n catagóir sa cheanntásc seo.","Tá %n catagóir sa cheanntásc seo.","Tá %n catagóir sa cheanntásc seo.","Tá %n catagóir sa cheanntásc seo.","Tá %n catagóir sa cheanntásc seo."],
"This action cannot be undone" : "Ní féidir an gníomh seo a chealú",
"What should happen to the categories?" : "Cad ba cheart a tharlú do na catagóirí?",
"Move categories to another header" : "Bog catagóirí go ceanntásc eile",
"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",
"Move up" : "Éirí suas",
"Move down" : "Bog síos",
"Admin dashboard" : "Painéal riaracháin",
"Overview of forum activity and statistics" : "Forbhreathnú ar ghníomhaíocht agus staitisticí an fhóraim",
"Loading statistics …" : "Staitisticí á lódáil …",
"Error loading dashboard" : "Earráid ag lódáil an phainéil",
"Total statistics" : "Staitisticí iomlána",
"Total users" : "Líon iomlán úsáideoirí",
"Total threads" : "Líon iomlán na snáitheanna",
"Total posts" : "Líon iomlán na bpost",
"Total categories" : "Iomlán na gcatagóirí",
"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 posts" : "Poist nua",
"Top contributors" : "Príomh-rannpháirtithe",
"No contributors yet" : "Gan aon rannpháirtithe fós",
"Last 7 days" : "7 lá seo caite",
"All time" : "Gach am",
"General settings" : "Socruithe Ginearálta",
"Configure general forum settings" : "Cumraigh socruithe ginearálta an fhóraim",
"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",
"Welcome to the forum" : "Fáilte chuig an bhfóram",
"A brief description shown below the title" : "Cur síos gairid a thaispeántar faoin teideal",
"Access control" : "Rialú rochtana",
"Manage who can access the forum" : "Bainistigh cé a fhéadfaidh rochtain a fháil ar an bhfóram",
"Allow guest access" : "Ceadaigh rochtain aoi",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Nuair a bhíonn sé cumasaithe, is féidir le húsáideoirí neamhúdaraithe ábhar an fhóraim a fheiceáil i mód léite amháin.",
"Settings saved" : "Socruithe sábháilte",
"Failed to save settings" : "Theip ar na socruithe a shábháil",
"Create role" : "Cruthaigh ról",
"Edit role" : "Cuir ról in eagar",
"Configure role permissions and category access" : "Cumraigh ceadanna róil agus rochtain catagóire",
"Error loading role" : "Earráid ag lódáil an ról",
"Enter role name" : "Cuir isteach ainm an róil",
"Enter role description (optional)" : "Cuir isteach cur síos ar an ról (roghnach)",
"System role names cannot be changed" : "Ní féidir ainmneacha rólanna córais a athrú",
"Colors" : "Dathanna",
"Set colors for this role badge" : "Socraigh dathanna don suaitheantas róil seo",
"Light mode color" : "Dath mód solais",
"Dark mode color" : "Dath mód dorcha",
"Reset" : "Athshocraigh",
"Role permissions" : "Ceadanna ról",
"Set global permissions for this role" : "Socraigh ceadanna domhanda don ról seo",
"Can access admin tools" : "Is féidir rochtain a fháil ar uirlisí riaracháin",
"Allow access to the admin dashboard and tools" : "Ceadaigh rochtain ar an deais riarthóra agus ar na huirlisí",
"Can edit roles" : "Is féidir róil a chur in eagar",
"Allow creating, editing and deleting roles" : "Ceadaigh róil a chruthú, a chur in eagar agus a scriosadh",
"Can edit categories" : "Is féidir catagóirí a chur in eagar",
"Allow creating, editing and deleting categories" : "Ceadaigh catagóirí a chruthú, a chur in eagar agus a scriosadh",
"Category permissions" : "Ceadanna catagóire",
"Set which categories this role can access" : "Socraigh cé na catagóirí ar féidir leis an ról seo rochtain a fháil orthu",
"Category" : "Catagóir",
"Can view" : "Is féidir féachaint air",
"Can moderate" : "Is féidir maolú a dhéanamh",
"Allow" : "Ceadaigh",
"No categories available" : "Níl aon chatagóirí ar fáil",
"Admin role must have all permissions enabled" : "Ní mór gach cead a bheith cumasaithe i ról an riarthóra",
"Admin role has full access to all categories" : "Tá rochtain iomlán ag ról an riarthóra ar gach catagóir",
"Guest role cannot have admin permissions" : "Ní féidir ceadanna riarthóra a bheith ag ról aoi",
"Guest role cannot moderate categories" : "Ní féidir le ról aoi catagóirí a mhodhnú",
"Guest access is currently disabled" : "Tá rochtain aoi díchumasaithe faoi láthair",
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Ní bheidh úsáideoirí aoi in ann rochtain a fháil ar an bhfóram go dtí go mbeidh rochtain aoi cumasaithe i socruithe an fhóraim.",
"Go to forum settings" : "Téigh chuig socruithe an fhóraim",
"Default role cannot moderate categories" : "Ní féidir le ról réamhshocraithe catagóirí a mhodhnú",
"Role management" : "Bainistíocht rólanna",
"Create and manage forum roles and permissions" : "Róil agus ceadanna fóraim a chruthú agus a bhainistiú",
"Loading roles …" : "Ag lódáil róil …",
"Error loading roles" : "Earráid ag luchtú róil",
"No roles found" : "Níor aimsíodh aon róil",
"Create your first role to get started" : "Cruthaigh do chéad ról le tosú",
"ID" : "ID",
"Created" : "Cruthaithe",
"Actions" : "Gníomhartha",
"No description" : "Gan cur síos",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "An bhfuil tú cinnte gur mian leat an ról \"{name}\" a scriosadh? Ní féidir an gníomh seo a chealú.",
"System roles cannot be deleted" : "Ní féidir róil chórais a scriosadh",
"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",
"Posts" : "Poist",
"Joined" : "Chuaigh isteach",
"Status" : "Stádas",
"Active" : "Gníomhach",
"Deleted" : "Scriosta",
"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"
},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"
}

30
l10n/gd.js Normal file
View File

@@ -0,0 +1,30 @@
OC.L10N.register(
"forum",
{
"User" : "Cleachdaiche",
"General" : "Coitcheann",
"Search" : "Lorg",
"Home" : "Dachaigh",
"Font size" : "Meud a chrutha-chlò",
"Upload failed" : "Dh'fhàillig leis an luchdadh suas",
"Close" : "Dùin",
"Cancel" : "Cancel",
"Create" : "Cruthaich",
"Move" : "Gluais",
"Back" : "Air ais",
"Edit" : "Deasaich",
"Delete" : "Sguab às",
"Save" : "Sàbhail",
"Uncategorized" : "Gun seòrsachadh",
"Refresh" : "Ath-nuadhaich",
"Error" : "Mearachd",
"Preferences" : "Roghainnean",
"Notifications" : "Brathan",
"Files" : "Faidhlichean",
"Disable" : "Cuir à comas",
"Name" : "Ainm",
"Category" : "Roinn-seòrsa",
"Allow" : "Ceadaich",
"Deleted" : "Chaidh a sguabadh às"
},
"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;");

28
l10n/gd.json Normal file
View File

@@ -0,0 +1,28 @@
{ "translations": {
"User" : "Cleachdaiche",
"General" : "Coitcheann",
"Search" : "Lorg",
"Home" : "Dachaigh",
"Font size" : "Meud a chrutha-chlò",
"Upload failed" : "Dh'fhàillig leis an luchdadh suas",
"Close" : "Dùin",
"Cancel" : "Cancel",
"Create" : "Cruthaich",
"Move" : "Gluais",
"Back" : "Air ais",
"Edit" : "Deasaich",
"Delete" : "Sguab às",
"Save" : "Sàbhail",
"Uncategorized" : "Gun seòrsachadh",
"Refresh" : "Ath-nuadhaich",
"Error" : "Mearachd",
"Preferences" : "Roghainnean",
"Notifications" : "Brathan",
"Files" : "Faidhlichean",
"Disable" : "Cuir à comas",
"Name" : "Ainm",
"Category" : "Roinn-seòrsa",
"Allow" : "Ceadaich",
"Deleted" : "Chaidh a sguabadh às"
},"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"
}

437
l10n/gl.js Normal file
View File

@@ -0,0 +1,437 @@
OC.L10N.register(
"forum",
{
"Admin" : "Administración",
"Administrator role with full permissions" : "Rol de administrador con todos os permisos",
"Moderator" : "Moderador",
"Moderator role with elevated permissions" : "Rol de moderador con permisos elevados",
"User" : "Usuario",
"Default user role with basic permissions" : "Rol predeterminado de usuario con permisos básicos",
"Guest" : "Convidado",
"Guest role for unauthenticated users with read-only access" : "Rol de convidado para usuarios non autenticados con acceso de só lectura",
"General" : "Xeral",
"General discussion categories" : "Categorías xerais de debate",
"General discussions" : "Debates en xeral",
"A place for general conversations and discussions" : "Un lugar para conversas e debates en xeral",
"Support" : "Asistencia",
"Ask questions about the forum, provide feedback or report issues." : "Faga preguntas sobre o foro, envíe comentarios ou informe de problemas.",
"Inline code" : "Código en liña",
"Spoiler title" : "Título do destripe",
"Hidden content" : "Contido agochado",
"Spoilers" : "Destripes",
"Attachment" : "Anexo",
"Welcome to Nextcloud Forums" : "Dámoslle a benvida a os Foros de Nextcloud",
"Welcome to the Nextcloud Forums!" : "Dámoslle a benvida a os Foros de Nextcloud!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Este é un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud. Aquí pode debater temas, compartir ideas e colaborar con outros usuarios.",
"Features:" : "Funcionalidades:",
"Create and reply to threads" : "Crear e responder aos fíos",
"Organize discussions by categories" : "Organice os debates por categorías",
"Use BBCode for rich text formatting" : "Empregue BBCode para o formato de texto mellorado",
"Attach files from your Nextcloud storage" : "Anexe ficheiros desde o seu almacenamento en Nextcloud",
"React to posts" : "Reaccionar ás publicacións",
"Track read/unread threads" : "Rastrexar fíos lidos/non lidos",
"BBCode examples:" : "Exemplos de BBCode:",
"Bold text" : "Texto en grosa",
"Use %1$stext%2$s" : "Empregue %1$stexto%2$s",
"Italic text" : "Texto en cursiva",
"Underlined text" : "Texto subliñado",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Síntase libre de iniciar un novo debate ou de responder a fíos existentes. Feliz publicación!",
"Forum" : "Foro",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta en {thread}","{count} novas respostas en {thread}"],
"Welcome to the forum!" : "Dámoslle a benvida ao foro!",
"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",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cree debates, comparta ideas e colabore directamente coa súa comunidade en Nextcloud.\n\n**⚠️ Aviso sobre o desenvolvemento inicial:**\nEsta aplicación está en fases iniciais de desenvolvemento. Aínda que é funcional, pode atopar erros ou funcións incompletas. Informe de calquera problema en GitHub e considere facer copias de seguranza dos seus datos regularmente.\n\n**Características principais:**\n- **Debates baseados en fíos** - Crear e responder a fíos de debate organizados\n- **Organización por categorías** - Estruture o seu foro con categorías e cabeceiras personalizábeis\n- **Formato de texto enriquecido** - Use BBCode para formatar publicacións en grosa, cursiva, ligazóns, imaxes, bloques de código e máis\n- **Ficheiros anexos** - Anexe ficheiros do seu almacenamento Nextcloud ás publicacións\n- **Reaccións á publicación** - Reaccione ás publicacións con «emojis» de reacción\n- **Seguimento de lido/non lido** - Leve o control de que fíos leu\n- **Buscar** - Atope debates rapidamente coa busca integrada\n- **Perfís de usuario** - Ver o historial de publicacións e estatísticas de usuarios\n- **Permisos baseados en roles** - Controle o acceso e moderación con roles flexíbeis\n- **Acceso de convidados**: Acceso público opcional para usuarios non autenticados con permisos configurábeis\n- **Ferramentas de administración** - Xestione categorías, roles, BBCodes e os axustes do foro\n- **Ferramentas de moderación** - Fixar, bloquear e xestionar fíos e publicacións\n\n**Perfecto para:**\n- Debates e colaboración en equipo\n- Foros comunitarios\n- Canles de asistencia\n- Bases de coñecemento\n- Debates sobre proxectos\n- Comunicación interna\n\nO foro intégrase sen problemas coa súa instancia de Nextcloud, empregando os seus usuarios e grupos existentes para a autenticación e o control de acceso.",
"Search" : "Buscar",
"Home" : "Inicio",
"User preferences" : "Preferencias do usuario",
"Dashboard" : "Taboleiro",
"Forum settings" : "Axustes do Foro",
"Users" : "Usuarios",
"Roles" : "Roles",
"Categories" : "Categorías",
"BBCodes" : "BBCode",
"Expand" : "Estender",
"Collapse" : "Contraer",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Teña en conta:{bEnd} Os ficheiros anexos serán visíbeis para calquera no foro, independentemente da configuración de compartición do ficheiro.",
"Drop file here to upload" : "Solte o ficheiro aquí para envialo",
"Hello world!" : "Ola mundo!",
"Hello moon!" : "Ola lúa!",
"Font style bold" : "Estilo da letra grosa",
"Font style italic" : "Estilo da letra en cursiva",
"Font style struck through" : "Estilo da letra riscada",
"Font style underlined" : "Estilo da letra en subliñada",
"Code" : "Código",
"Email (clickable)" : "Correo-e (premíbel)",
"URL (clickable)" : "URL (premíbel)",
"Image (not clickable)" : "Imaxe (non premíbel)",
"Quote" : "Orzamento",
"Embedded YouTube video" : "Vídeo de YouTube incrustado",
"Font (name)" : "Tipo de letra (nome)",
"Font size" : "Tamaño da letra",
"Font color" : "Cor da letra",
"Align left" : "Aliñar á esquerda",
"Align center" : "Aliñar ao centro",
"Align right" : "Aliñar á dereita",
"List" : "Lista",
"List item within a list" : "Elemento de lista dentro dunha lista",
"List item within a list (alias)" : "Elemento de lista dentro dunha lista (alias)",
"BBCode help" : "Axuda de BBCode",
"Built-in BBCodes" : "BBCodes integradas",
"These BBCodes are available by default." : "Estas BBCodes están dispoñíbeis de xeito predeterminado",
"Custom BBCodes" : "BBCodes personalizadas",
"These BBCodes are custom to this forum and configured by administrators." : "Estas BBCodes foron personalizados para este foro e configurados pola administración.",
"Example" : "Exemplo",
"Replacement" : "Substitución",
"Loading custom BBCodes …" : "Cargando BBCodes personalizados…",
"No custom BBCodes configured." : "Non hai ningunha BBCode configurada",
"Failed to load custom BBCodes" : "Produciuse un fallo ao cargar algunhas BBCodes",
"Insert emoji" : "Inserir un «emoji»",
"Pick file from Nextcloud" : "Seleccionar un ficheiro en Nextcloud",
"Upload file to Nextcloud" : "Enviar un ficheiro a Nextcloud",
"Uploading file …" : "Enviando o ficheiro…",
"Upload failed" : "Produciuse algún fallo no envío",
"Close" : "Pechar",
"Pick a file to attach" : "Escolla un ficheiro para anexar",
"Failed to upload file" : "Produciuse un fallo ao enviar o ficheiro",
"_Thread_::_Threads_" : ["Fío","Fíos"],
"_Post_::_Posts_" : ["Publicación","Publicacións"],
"No description available" : "Non hai ningunha descrición dispoñíbel",
"Create category header" : "Crear a cabeceira de categoría",
"Edit category header" : "Editar a cabeceira de categoría",
"Header name" : "Nome da cabeceira",
"Enter header name" : "Introduza o nome da cabeceira",
"Header description" : "Descrición da cabeceira",
"Enter header description (optional)" : "Introduza a descrición da cabeceira (opcional)",
"Sort order" : "Criterio de ordenación",
"Lower numbers appear first" : "Os números máis baixos aparecen primeiro",
"Cancel" : "Cancelar",
"Create" : "Crear",
"Update" : "Actualizar",
"Move thread to category" : "Mover o fío a outra categoría",
"Select the category to move this thread to:" : "Seleccione a categoría á que quere mover este fío:",
"Select a category …" : "Seleccione unha categoría",
"Loading categories …" : "Cargando categorías…",
"Move" : "Mover",
"Cannot move to a category header. Please select a category instead." : "Non foi posíbel mover a unha cabeceira de categoría. Seleccione unha categoría no canto diso.",
"This thread is already in this category." : "Este fío xa está nesta categoría.",
"Failed to load categories" : "Produciuse un fallo ao cargar as categorías",
"Page not found" : "Non se atopou a páxina",
"The page you are looking for could not be found." : "Non foi posíbel atopar a páxina que busca.",
"Back" : "Atrás",
"Go to home" : "Ir ao inicio",
"Edited" : "Editado",
"Quote reply" : "Responder á cita",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Are you sure you want to delete this post? This action cannot be undone." : "Confirma que quere eliminar esta publicación? Esta acción non é posíbel desfacela.",
"Unread" : "Sen ler",
"Edit your post …" : "Edite a súa publicación…",
"Save" : "Gardar",
"Are you sure you want to discard your changes?" : "Confirma que quere desbotar os seus cambios?",
"Add reaction" : "Engadir reacción",
"React with {emoji}" : "Reaccionar con {emoji}",
"You reacted with {emoji}" : "Vde. reaccionou con {emoji}",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vde. e %n persoa máis reaccionaron con {emoji}","Vde. e %n persoas máis reaccionaron con {emoji}"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n persoa reaccionou con {emoji}","%n persoas reaccionaron con {emoji}"],
"Write your reply …" : "Escriba a súa resposta…",
"Post reply" : "Publicar a resposta",
"Are you sure you want to discard your reply?" : "Confirma que quere desbotar a súa resposta?",
"In thread" : "No fío",
"Thread unavailable" : "Fío non dispoñíbel",
"Pinned thread" : "Fío fixado",
"Locked thread" : "Fío bloqueado",
"Uncategorized" : "Sen categorizar",
"_%n post_::_%n posts_" : ["%n publicación","%n publicacións"],
"_%n view_::_%n views_" : ["%n vista","%n vistas"],
"Replies" : "Respostas",
"Views" : "Vistas",
"Title" : "Titulo",
"Enter thread title …" : "Introduza o título do fío…",
"Write your first post …" : "Escriba a súa primeira publicación…",
"Create thread" : "Crear un fío",
"Are you sure you want to discard this thread?" : "Confirma que quere desbotar este fío?",
"Refresh" : "Actualizar",
"Loading …" : "Cargando…",
"No categories yet" : "Aínda non hai categorías",
"Categories will appear here once they are created." : "As categorías aparecerán aquí unha vez creadas.",
"No categories in this section" : "Non hai ningunha categoría nesta sección",
"Category not found" : "Non se atopou a categoría",
"The category you are looking for does not exist or has been removed." : "A categoría que busca non existe ou foi retirada.",
"Back to categories" : "Volver ás categorías",
"New thread" : "Novo fío",
"Error loading category" : "Produciuse un erro ao cargar a categoría",
"No threads yet" : "Aínda non hai ningún fío",
"Be the first to start a discussion in this category." : "Sexa o primeiro en iniciar un debate nesta categoría.",
"Retry" : "Volver tentar",
"_Showing %n thread_::_Showing %n threads_" : ["Amosando %n fío","Amosando %n fíos"],
"An unexpected error occurred" : "Produciuse un erro non agardado",
"No category ID or slug provided" : "Non forneceu ningún ID ou URL semántico",
"Failed to load threads" : "Produciuse un fallo ao cargar os fíos",
"Create New Thread" : "Crear un novo fío",
"In {category}" : "En {category}",
"Creating thread …" : "Creando o fío…",
"Thread created" : "Fío creado",
"Failed to create thread" : "Produciuse un fallo ao crear o fío",
"No category specified" : "Non se especificou ningunha categoría",
"Error" : "Erro",
"First post" : "Primeira publicación",
"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 posted any replies yet" : "Este usuario aínda non publicou 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 posts" : "Buscar nas publicacións",
"Syntax help" : "Axuda coa sintaxe",
"Search syntax" : "Sintaxe de busca",
"Match exact phrase" : "Buscar frase exacta",
"Both terms required" : "Precísanse ambos termos.",
"Either term matches" : "Calquera dos dous termos coincide",
"Group conditions with parentheses" : "Condicións de grupo con parénteses",
"Exclude term from results" : "Excluír termo dos resultados",
"Searching …" : "Buscando…",
"Search Error" : "Erro de busca",
"Enter a search query" : "Introduza unha consulta de busca…",
"Use the search box above to find threads and posts" : "Empregue a caixa de buscas de enriba para atopar fíos e publicacións",
"No results found" : "Non se atopou ningún resultado",
"Try different keywords or check your syntax" : "Probe con diferentes palabras clave ou comprobe a sintaxe",
"_%n thread found_::_%n threads found_" : ["Atopouse %n fío","Atopáronse %n fíos"],
"_%n post found_::_%n posts found_" : ["Atopouse %n publicación","Atopáronse %n publicacións"],
"Please enter a search query" : "Introduza unha consulta de busca",
"Please select at least one search scope" : "Seleccione polo menos un ámbito de busca",
"Failed to search" : "Produciuse un fallo na busca",
"Thread not found" : "Non se atopou o fío",
"The thread you are looking for does not exist or has been removed." : "O fío que busca non existe ou foi retirado.",
"Back to {category}" : "Volver a {category}",
"Reply" : "Responder",
"Error loading thread" : "Produciuse un erro ao cargar o fío",
"No posts yet" : "Aínda non hai ningunha publicación",
"Be the first to post in this thread." : "Sexa o primeiro en publicar neste fío.",
"by" : "por",
"This thread is locked. Only moderators can post replies." : "Este fío está bloqueado. Só os moderadores poden publicar respostas.",
"You must be signed in to reply to this thread." : "Debe acceder para poder responder a este fío.",
"Sign in to reply" : "Acceder para responder",
"_Showing %n post_::_Showing %n posts_" : ["Amosando %n publicación","Amosando %n publicacións"],
"Lock thread" : "Bloquear o fío",
"Unlock thread" : "Desbloquear o fío",
"Pin thread" : "Fixar o fío",
"Unpin thread" : "Desprender o fío",
"Thread locked" : "Fío bloqueado",
"Thread unlocked" : "Fío desbloqueado",
"Thread pinned" : "Fío fixado",
"Thread unpinned" : "Fío desprendido",
"Subscribe" : "Subscribirse",
"Subscribed" : "Subscrito",
"Subscribed to thread" : "Subscribirse ao fío",
"Unsubscribed from thread" : "Desubscribirse ao fío",
"Edit title" : "Editar o título",
"Save title" : "Gardar o título",
"Thread title updated" : "Título do fío actualizado",
"Move thread" : "Mover o fío",
"Thread moved successfully" : "O fío foi movido satisfactoriamente",
"No thread ID or slug provided" : "Non foi fornecido ningún ID ou URL semántico",
"Failed to load posts" : "Produciuse un fallo ao cargar as publicacións",
"Post updated" : "Publicación actualizada",
"Failed to update post" : "Produciuse un fallo ao actualizar a publicación",
"Thread deleted" : "Fío eliminado",
"Post deleted" : "Publicación eliminada",
"Failed to delete post" : "Produciuse un fallo ao eliminar a publicación",
"Failed to update thread lock status" : "Produciuse un fallo ao actualizar o estado de bloqueado do fío",
"Failed to update thread pin status" : "Produciuse un fallo ao actualizar o estado de fixado do fío",
"Failed to update subscription" : "Produciuse un fallo ao actualizar a subscrición",
"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",
"Notifications" : "Notificacións",
"Configure how you receive notifications" : "Configure como quere recibir as notificacións",
"Auto-subscribe to threads I create" : "Subscríbirse automaticamente aos fíos que creou",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Cando estea activado, recibirá automaticamente notificacións das respostas aos fíos que cree",
"Files" : "Ficheiros",
"Configure file upload settings" : "Configurar os axustes de envío de ficheiros",
"Upload directory" : "Directorio ao que enviar",
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Os ficheiros anexos ás publicacións enviaranse a este directorio nos seus ficheiros de Nextcloud",
"Browse" : "Examinar",
"Preferences saved" : "Preferencias gardadas",
"Failed to save preferences" : "Produciuse un fallo ao gardar as preferencias",
"Select upload directory" : "Seleccionar o directorio ao que enviar",
"BBCode management" : "Xestión de BBCode",
"Manage custom BBCode tags for post formatting" : "Xestionar etiquetas personalizadas de BBCode para o formatado de publicacións",
"Error loading BBCodes" : "Produciuse un erro ao cargar BBCodes",
"Create BBCode" : "Crear BBCode",
"Enable" : "Activar",
"Disable" : "Desactivar",
"Enabled BBCodes" : "BBCodes activadas",
"These BBCode tags are currently active" : "Estas etiquetas BBCode están activas",
"Disabled BBCodes" : "BBCodes desactivadas",
"These BBCode tags are currently inactive" : "Estas etiquetas BBCode non están activas",
"No enabled BBCodes" : "Sen BBCodes activadas",
"Parses Inner" : "Análise interno",
"Delete BBCode" : "Eliminar BBCode",
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Confirma que quere eliminar a etiqueta BBCode [{tag}]?",
"This action cannot be undone." : "Esta acción non é posíbel desfacela.",
"Edit BBCode" : "Editar BBCode",
"Tag" : "Etiqueta",
"e.g., b, i, url, color" : "p. ex., b, i, url, cor",
"The BBCode tag name (without brackets)" : "O nome da etiqueta BBCode (sen corchetes)",
"HTML replacement" : "Substitución de HTML",
"e.g., {strongStart}{content}{strongEnd}" : "p. ex., {strongStart}{content}{strongEnd}",
"Use {content} for the tag content and {paramName} for parameters" : "Empregue {content} para o contido da etiqueta e {paramName} para os parámetros",
"e.g., {tagStart}Hello world{tagEnd}" : "e.g., {tagStart}Ola mundo{tagEnd}",
"Example usage of this BBCode tag" : "Exemplo de uso desta etiqueta BBCode",
"Description" : "Descrición",
"Brief description of what this BBCode does" : "Breve descrición do que fai esta BBCode",
"Enabled" : "Activado",
"Parse inner content" : "Análise do contido interno",
"If enabled, BBCode tags inside this tag will also be parsed" : "Se está activado, tamén se analizarán as etiquetas BBCode dentro desta etiqueta",
"Create category" : "Crear categoría",
"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 --",
"Name" : "Nome",
"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",
"Control which roles can access and moderate this category" : "Controle que roles poden acceder e moderar esta categoría",
"Roles that can view" : "Roles que poden ver",
"Select roles that can view this category and its threads" : "Seleccione os roles que poidan ver esta categoría e os seus fíos",
"Roles that can moderate" : "Roles que poden moderar",
"Select roles that can moderate (edit/delete) content in this category" : "Seleccione os roles que poidan moderar (editar/eliminar) contido nesta categoría",
"Select roles …" : "Seleccionar roles…",
"Manage forum categories and organization" : "Xestionar as categorías e a organización do foro",
"Error loading categories" : "Produciuse un erro ao cargar as categorías",
"No categories in this header" : "Non hai ningunha categoría neste fío",
"Delete category" : "Eliminar categoría",
"Are you sure you want to delete the category \"{name}\"?" : "Confirma que quere eliminar a categoría «{name}»?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Esta categoría contén %n fío.","Esta categoría contén %n fíos."],
"What should happen to the threads?" : "Que hai que facer cos fíos?",
"Move threads to another category" : "Mover os fíos a outra categoría",
"Delete all threads (soft delete)" : "Eliminar todos os fíos (eliminación suave)",
"Threads will be hidden but not permanently deleted" : "Os fíos quedarán agochados mais non serán eliminados definitivamente",
"Select target category" : "Seleccionar categoría de destino",
"-- Select a category --" : "-- Seleccionar unha categoría --",
"Create header" : "Crear a cabeceira",
"_%n category_::_%n categories_" : ["%n categoría","%n categorías"],
"_%n thread_::_%n threads_" : ["%n fío","%n fíos"],
"Delete header" : "Eliminar a cabeceira",
"Are you sure you want to delete the header \"{name}\"?" : "Confirma que quere eliminar a cabeceira «{name}»?",
"_This header contains %n category._::_This header contains %n categories._" : ["Esta cabeceira contén %n categoría.","Esta cabeceira contén %n categorías."],
"This action cannot be undone" : "Esta acción non é posíbel desfacela",
"What should happen to the categories?" : "Que hai que facer coas categorías?",
"Move categories to another header" : "Mover as categorías a outra cabeceira",
"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",
"Move up" : "Mover cara arriba",
"Move down" : "Mover cara abaixo",
"Admin dashboard" : "Taboleiro de administración",
"Overview of forum activity and statistics" : "Visita xeral da actividade e estatísticas do foro",
"Loading statistics …" : "Cargando as estatísticas…",
"Error loading dashboard" : "Produciuse un erro ao cargar o taboleiro",
"Total statistics" : "Estatísticas totais",
"Total users" : "Total de usuarios",
"Total threads" : "Total de fíos",
"Total posts" : "Total de publicacións",
"Total categories" : "Total de categorías",
"Recent activity (last 7 days)" : "Actividade recente (últimos 7 días)",
"New users" : "Novos usuarios",
"New threads" : "Novos fíos",
"New posts" : "Novas publicacións",
"Top contributors" : "Principais colaboradores",
"No contributors yet" : "Aínda non hai colaboradores",
"Last 7 days" : "Últimos 7 días",
"All time" : "Tempo total",
"General settings" : "Axustes xerais",
"Configure general forum settings" : "Configurar os axustes xerais do foro",
"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",
"Welcome to the forum" : "Dámoslle a benvida ao foro!",
"A brief description shown below the title" : "Unha breve descrición que aparece baixo o título",
"Access control" : "Control de acceso",
"Manage who can access the forum" : "Xestiona quen pode acceder ao foro",
"Allow guest access" : "Permitir o acceso de convidados",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Cando está activado, os usuarios non autenticados poden ver o contido do foro en modo de só lectura",
"Settings saved" : "Axustes gardados",
"Failed to save settings" : "Produciuse un fallo ao gardar os axustes",
"Create role" : "Crear rol",
"Edit role" : "Editar rol",
"Configure role permissions and category access" : "Configurar permisos de rol e acceso a categorías",
"Error loading role" : "Produciuse un erro ao cargar o rol",
"Enter role name" : "Introduza o nome do rol",
"Enter role description (optional)" : "Introduza a descrición do rol (opcional)",
"System role names cannot be changed" : "Non é posíbel cambiar os nomes dos roles do sistema",
"Colors" : "Cores",
"Set colors for this role badge" : "Definir as cores para esta insignia de rol",
"Light mode color" : "Cor do modo craro",
"Dark mode color" : "Cor do modo escuro",
"Reset" : "Restabelecer",
"Role permissions" : "Permisos de rol",
"Set global permissions for this role" : "Definir os permisos globais para este rol",
"Can access admin tools" : "Pode acceder a ferramentas de administración",
"Allow access to the admin dashboard and tools" : "Permitir o acceso ao taboleiro de administración e ás ferramentas",
"Can edit roles" : "Pode editar roles",
"Allow creating, editing and deleting roles" : "Permitir crear, editar e eliminar roles",
"Can edit categories" : "Pode editar categorías",
"Allow creating, editing and deleting categories" : "Permitir crear, editar e eliminar categorías",
"Category permissions" : "Permisos de categoría",
"Set which categories this role can access" : "Definir a que categorías pode acceder este rol",
"Category" : "Categoría",
"Can view" : "Pode ver",
"Can moderate" : "Pode moderar",
"Allow" : "Permitir",
"No categories available" : "Non hai ningunha categoría dispoñíbel",
"Admin role must have all permissions enabled" : "O rol de administraciónr debe ter todos os permisos activados",
"Admin role has full access to all categories" : "O rol de administración ten acceso total a todas as categorías",
"Guest role cannot have admin permissions" : "O rol de convidado non pode ter permisos de administración",
"Guest role cannot moderate categories" : "O rol de convidado non pode moderar categorías",
"You can control which categories guests can view using the checkboxes below." : "Vde. pode controlar que categorías poden ver os convidados usando as caixas de verificación de embaixo.",
"Guest access is currently disabled" : "O acceso para convidados está actualmente desactivado",
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Os usuarios convidados non poderán acceder ao foro ata que o acceso de convidado estea activado na configuración do foro.",
"Go to forum settings" : "Ir aos axustes do foro",
"Default role cannot moderate categories" : "O rol predeterminado non pode moderar categorías",
"Role management" : "Xestión de roles",
"Create and manage forum roles and permissions" : "Creación e xestión de roles e permisos do foro",
"Loading roles …" : "Cargando roles…",
"Error loading roles" : "Produciuse un erro ao cargar os roles",
"No roles found" : "Non se atopou ningún rol",
"Create your first role to get started" : "Cree o seu primeiro rol para comezar",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Accións",
"No description" : "Sen descrición",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Confirma que quere eliminar o rol «{name}»? Esta acción non é posíbel desfacela.",
"System roles cannot be deleted" : "Non é posíbel eliminar os roles do sistema",
"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",
"Posts" : "Publicacións",
"Joined" : "Uniuse",
"Status" : "Estado",
"Active" : "Activa",
"Deleted" : "Eliminada",
"No roles" : "Non hai ningún rol",
"Select roles" : "Seleccionar roles",
"Edit roles" : "Editar roles",
"Edit user roles" : "Editar roles de usuario"
},
"nplurals=2; plural=(n != 1);");

435
l10n/gl.json Normal file
View File

@@ -0,0 +1,435 @@
{ "translations": {
"Admin" : "Administración",
"Administrator role with full permissions" : "Rol de administrador con todos os permisos",
"Moderator" : "Moderador",
"Moderator role with elevated permissions" : "Rol de moderador con permisos elevados",
"User" : "Usuario",
"Default user role with basic permissions" : "Rol predeterminado de usuario con permisos básicos",
"Guest" : "Convidado",
"Guest role for unauthenticated users with read-only access" : "Rol de convidado para usuarios non autenticados con acceso de só lectura",
"General" : "Xeral",
"General discussion categories" : "Categorías xerais de debate",
"General discussions" : "Debates en xeral",
"A place for general conversations and discussions" : "Un lugar para conversas e debates en xeral",
"Support" : "Asistencia",
"Ask questions about the forum, provide feedback or report issues." : "Faga preguntas sobre o foro, envíe comentarios ou informe de problemas.",
"Inline code" : "Código en liña",
"Spoiler title" : "Título do destripe",
"Hidden content" : "Contido agochado",
"Spoilers" : "Destripes",
"Attachment" : "Anexo",
"Welcome to Nextcloud Forums" : "Dámoslle a benvida a os Foros de Nextcloud",
"Welcome to the Nextcloud Forums!" : "Dámoslle a benvida a os Foros de Nextcloud!",
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Este é un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud. Aquí pode debater temas, compartir ideas e colaborar con outros usuarios.",
"Features:" : "Funcionalidades:",
"Create and reply to threads" : "Crear e responder aos fíos",
"Organize discussions by categories" : "Organice os debates por categorías",
"Use BBCode for rich text formatting" : "Empregue BBCode para o formato de texto mellorado",
"Attach files from your Nextcloud storage" : "Anexe ficheiros desde o seu almacenamento en Nextcloud",
"React to posts" : "Reaccionar ás publicacións",
"Track read/unread threads" : "Rastrexar fíos lidos/non lidos",
"BBCode examples:" : "Exemplos de BBCode:",
"Bold text" : "Texto en grosa",
"Use %1$stext%2$s" : "Empregue %1$stexto%2$s",
"Italic text" : "Texto en cursiva",
"Underlined text" : "Texto subliñado",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Síntase libre de iniciar un novo debate ou de responder a fíos existentes. Feliz publicación!",
"Forum" : "Foro",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta en {thread}","{count} novas respostas en {thread}"],
"Welcome to the forum!" : "Dámoslle a benvida ao foro!",
"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",
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cree debates, comparta ideas e colabore directamente coa súa comunidade en Nextcloud.\n\n**⚠️ Aviso sobre o desenvolvemento inicial:**\nEsta aplicación está en fases iniciais de desenvolvemento. Aínda que é funcional, pode atopar erros ou funcións incompletas. Informe de calquera problema en GitHub e considere facer copias de seguranza dos seus datos regularmente.\n\n**Características principais:**\n- **Debates baseados en fíos** - Crear e responder a fíos de debate organizados\n- **Organización por categorías** - Estruture o seu foro con categorías e cabeceiras personalizábeis\n- **Formato de texto enriquecido** - Use BBCode para formatar publicacións en grosa, cursiva, ligazóns, imaxes, bloques de código e máis\n- **Ficheiros anexos** - Anexe ficheiros do seu almacenamento Nextcloud ás publicacións\n- **Reaccións á publicación** - Reaccione ás publicacións con «emojis» de reacción\n- **Seguimento de lido/non lido** - Leve o control de que fíos leu\n- **Buscar** - Atope debates rapidamente coa busca integrada\n- **Perfís de usuario** - Ver o historial de publicacións e estatísticas de usuarios\n- **Permisos baseados en roles** - Controle o acceso e moderación con roles flexíbeis\n- **Acceso de convidados**: Acceso público opcional para usuarios non autenticados con permisos configurábeis\n- **Ferramentas de administración** - Xestione categorías, roles, BBCodes e os axustes do foro\n- **Ferramentas de moderación** - Fixar, bloquear e xestionar fíos e publicacións\n\n**Perfecto para:**\n- Debates e colaboración en equipo\n- Foros comunitarios\n- Canles de asistencia\n- Bases de coñecemento\n- Debates sobre proxectos\n- Comunicación interna\n\nO foro intégrase sen problemas coa súa instancia de Nextcloud, empregando os seus usuarios e grupos existentes para a autenticación e o control de acceso.",
"Search" : "Buscar",
"Home" : "Inicio",
"User preferences" : "Preferencias do usuario",
"Dashboard" : "Taboleiro",
"Forum settings" : "Axustes do Foro",
"Users" : "Usuarios",
"Roles" : "Roles",
"Categories" : "Categorías",
"BBCodes" : "BBCode",
"Expand" : "Estender",
"Collapse" : "Contraer",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Teña en conta:{bEnd} Os ficheiros anexos serán visíbeis para calquera no foro, independentemente da configuración de compartición do ficheiro.",
"Drop file here to upload" : "Solte o ficheiro aquí para envialo",
"Hello world!" : "Ola mundo!",
"Hello moon!" : "Ola lúa!",
"Font style bold" : "Estilo da letra grosa",
"Font style italic" : "Estilo da letra en cursiva",
"Font style struck through" : "Estilo da letra riscada",
"Font style underlined" : "Estilo da letra en subliñada",
"Code" : "Código",
"Email (clickable)" : "Correo-e (premíbel)",
"URL (clickable)" : "URL (premíbel)",
"Image (not clickable)" : "Imaxe (non premíbel)",
"Quote" : "Orzamento",
"Embedded YouTube video" : "Vídeo de YouTube incrustado",
"Font (name)" : "Tipo de letra (nome)",
"Font size" : "Tamaño da letra",
"Font color" : "Cor da letra",
"Align left" : "Aliñar á esquerda",
"Align center" : "Aliñar ao centro",
"Align right" : "Aliñar á dereita",
"List" : "Lista",
"List item within a list" : "Elemento de lista dentro dunha lista",
"List item within a list (alias)" : "Elemento de lista dentro dunha lista (alias)",
"BBCode help" : "Axuda de BBCode",
"Built-in BBCodes" : "BBCodes integradas",
"These BBCodes are available by default." : "Estas BBCodes están dispoñíbeis de xeito predeterminado",
"Custom BBCodes" : "BBCodes personalizadas",
"These BBCodes are custom to this forum and configured by administrators." : "Estas BBCodes foron personalizados para este foro e configurados pola administración.",
"Example" : "Exemplo",
"Replacement" : "Substitución",
"Loading custom BBCodes …" : "Cargando BBCodes personalizados…",
"No custom BBCodes configured." : "Non hai ningunha BBCode configurada",
"Failed to load custom BBCodes" : "Produciuse un fallo ao cargar algunhas BBCodes",
"Insert emoji" : "Inserir un «emoji»",
"Pick file from Nextcloud" : "Seleccionar un ficheiro en Nextcloud",
"Upload file to Nextcloud" : "Enviar un ficheiro a Nextcloud",
"Uploading file …" : "Enviando o ficheiro…",
"Upload failed" : "Produciuse algún fallo no envío",
"Close" : "Pechar",
"Pick a file to attach" : "Escolla un ficheiro para anexar",
"Failed to upload file" : "Produciuse un fallo ao enviar o ficheiro",
"_Thread_::_Threads_" : ["Fío","Fíos"],
"_Post_::_Posts_" : ["Publicación","Publicacións"],
"No description available" : "Non hai ningunha descrición dispoñíbel",
"Create category header" : "Crear a cabeceira de categoría",
"Edit category header" : "Editar a cabeceira de categoría",
"Header name" : "Nome da cabeceira",
"Enter header name" : "Introduza o nome da cabeceira",
"Header description" : "Descrición da cabeceira",
"Enter header description (optional)" : "Introduza a descrición da cabeceira (opcional)",
"Sort order" : "Criterio de ordenación",
"Lower numbers appear first" : "Os números máis baixos aparecen primeiro",
"Cancel" : "Cancelar",
"Create" : "Crear",
"Update" : "Actualizar",
"Move thread to category" : "Mover o fío a outra categoría",
"Select the category to move this thread to:" : "Seleccione a categoría á que quere mover este fío:",
"Select a category …" : "Seleccione unha categoría",
"Loading categories …" : "Cargando categorías…",
"Move" : "Mover",
"Cannot move to a category header. Please select a category instead." : "Non foi posíbel mover a unha cabeceira de categoría. Seleccione unha categoría no canto diso.",
"This thread is already in this category." : "Este fío xa está nesta categoría.",
"Failed to load categories" : "Produciuse un fallo ao cargar as categorías",
"Page not found" : "Non se atopou a páxina",
"The page you are looking for could not be found." : "Non foi posíbel atopar a páxina que busca.",
"Back" : "Atrás",
"Go to home" : "Ir ao inicio",
"Edited" : "Editado",
"Quote reply" : "Responder á cita",
"Edit" : "Editar",
"Delete" : "Eliminar",
"Are you sure you want to delete this post? This action cannot be undone." : "Confirma que quere eliminar esta publicación? Esta acción non é posíbel desfacela.",
"Unread" : "Sen ler",
"Edit your post …" : "Edite a súa publicación…",
"Save" : "Gardar",
"Are you sure you want to discard your changes?" : "Confirma que quere desbotar os seus cambios?",
"Add reaction" : "Engadir reacción",
"React with {emoji}" : "Reaccionar con {emoji}",
"You reacted with {emoji}" : "Vde. reaccionou con {emoji}",
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vde. e %n persoa máis reaccionaron con {emoji}","Vde. e %n persoas máis reaccionaron con {emoji}"],
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n persoa reaccionou con {emoji}","%n persoas reaccionaron con {emoji}"],
"Write your reply …" : "Escriba a súa resposta…",
"Post reply" : "Publicar a resposta",
"Are you sure you want to discard your reply?" : "Confirma que quere desbotar a súa resposta?",
"In thread" : "No fío",
"Thread unavailable" : "Fío non dispoñíbel",
"Pinned thread" : "Fío fixado",
"Locked thread" : "Fío bloqueado",
"Uncategorized" : "Sen categorizar",
"_%n post_::_%n posts_" : ["%n publicación","%n publicacións"],
"_%n view_::_%n views_" : ["%n vista","%n vistas"],
"Replies" : "Respostas",
"Views" : "Vistas",
"Title" : "Titulo",
"Enter thread title …" : "Introduza o título do fío…",
"Write your first post …" : "Escriba a súa primeira publicación…",
"Create thread" : "Crear un fío",
"Are you sure you want to discard this thread?" : "Confirma que quere desbotar este fío?",
"Refresh" : "Actualizar",
"Loading …" : "Cargando…",
"No categories yet" : "Aínda non hai categorías",
"Categories will appear here once they are created." : "As categorías aparecerán aquí unha vez creadas.",
"No categories in this section" : "Non hai ningunha categoría nesta sección",
"Category not found" : "Non se atopou a categoría",
"The category you are looking for does not exist or has been removed." : "A categoría que busca non existe ou foi retirada.",
"Back to categories" : "Volver ás categorías",
"New thread" : "Novo fío",
"Error loading category" : "Produciuse un erro ao cargar a categoría",
"No threads yet" : "Aínda non hai ningún fío",
"Be the first to start a discussion in this category." : "Sexa o primeiro en iniciar un debate nesta categoría.",
"Retry" : "Volver tentar",
"_Showing %n thread_::_Showing %n threads_" : ["Amosando %n fío","Amosando %n fíos"],
"An unexpected error occurred" : "Produciuse un erro non agardado",
"No category ID or slug provided" : "Non forneceu ningún ID ou URL semántico",
"Failed to load threads" : "Produciuse un fallo ao cargar os fíos",
"Create New Thread" : "Crear un novo fío",
"In {category}" : "En {category}",
"Creating thread …" : "Creando o fío…",
"Thread created" : "Fío creado",
"Failed to create thread" : "Produciuse un fallo ao crear o fío",
"No category specified" : "Non se especificou ningunha categoría",
"Error" : "Erro",
"First post" : "Primeira publicación",
"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 posted any replies yet" : "Este usuario aínda non publicou 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 posts" : "Buscar nas publicacións",
"Syntax help" : "Axuda coa sintaxe",
"Search syntax" : "Sintaxe de busca",
"Match exact phrase" : "Buscar frase exacta",
"Both terms required" : "Precísanse ambos termos.",
"Either term matches" : "Calquera dos dous termos coincide",
"Group conditions with parentheses" : "Condicións de grupo con parénteses",
"Exclude term from results" : "Excluír termo dos resultados",
"Searching …" : "Buscando…",
"Search Error" : "Erro de busca",
"Enter a search query" : "Introduza unha consulta de busca…",
"Use the search box above to find threads and posts" : "Empregue a caixa de buscas de enriba para atopar fíos e publicacións",
"No results found" : "Non se atopou ningún resultado",
"Try different keywords or check your syntax" : "Probe con diferentes palabras clave ou comprobe a sintaxe",
"_%n thread found_::_%n threads found_" : ["Atopouse %n fío","Atopáronse %n fíos"],
"_%n post found_::_%n posts found_" : ["Atopouse %n publicación","Atopáronse %n publicacións"],
"Please enter a search query" : "Introduza unha consulta de busca",
"Please select at least one search scope" : "Seleccione polo menos un ámbito de busca",
"Failed to search" : "Produciuse un fallo na busca",
"Thread not found" : "Non se atopou o fío",
"The thread you are looking for does not exist or has been removed." : "O fío que busca non existe ou foi retirado.",
"Back to {category}" : "Volver a {category}",
"Reply" : "Responder",
"Error loading thread" : "Produciuse un erro ao cargar o fío",
"No posts yet" : "Aínda non hai ningunha publicación",
"Be the first to post in this thread." : "Sexa o primeiro en publicar neste fío.",
"by" : "por",
"This thread is locked. Only moderators can post replies." : "Este fío está bloqueado. Só os moderadores poden publicar respostas.",
"You must be signed in to reply to this thread." : "Debe acceder para poder responder a este fío.",
"Sign in to reply" : "Acceder para responder",
"_Showing %n post_::_Showing %n posts_" : ["Amosando %n publicación","Amosando %n publicacións"],
"Lock thread" : "Bloquear o fío",
"Unlock thread" : "Desbloquear o fío",
"Pin thread" : "Fixar o fío",
"Unpin thread" : "Desprender o fío",
"Thread locked" : "Fío bloqueado",
"Thread unlocked" : "Fío desbloqueado",
"Thread pinned" : "Fío fixado",
"Thread unpinned" : "Fío desprendido",
"Subscribe" : "Subscribirse",
"Subscribed" : "Subscrito",
"Subscribed to thread" : "Subscribirse ao fío",
"Unsubscribed from thread" : "Desubscribirse ao fío",
"Edit title" : "Editar o título",
"Save title" : "Gardar o título",
"Thread title updated" : "Título do fío actualizado",
"Move thread" : "Mover o fío",
"Thread moved successfully" : "O fío foi movido satisfactoriamente",
"No thread ID or slug provided" : "Non foi fornecido ningún ID ou URL semántico",
"Failed to load posts" : "Produciuse un fallo ao cargar as publicacións",
"Post updated" : "Publicación actualizada",
"Failed to update post" : "Produciuse un fallo ao actualizar a publicación",
"Thread deleted" : "Fío eliminado",
"Post deleted" : "Publicación eliminada",
"Failed to delete post" : "Produciuse un fallo ao eliminar a publicación",
"Failed to update thread lock status" : "Produciuse un fallo ao actualizar o estado de bloqueado do fío",
"Failed to update thread pin status" : "Produciuse un fallo ao actualizar o estado de fixado do fío",
"Failed to update subscription" : "Produciuse un fallo ao actualizar a subscrición",
"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",
"Notifications" : "Notificacións",
"Configure how you receive notifications" : "Configure como quere recibir as notificacións",
"Auto-subscribe to threads I create" : "Subscríbirse automaticamente aos fíos que creou",
"When enabled, you will automatically receive notifications for replies to threads you create" : "Cando estea activado, recibirá automaticamente notificacións das respostas aos fíos que cree",
"Files" : "Ficheiros",
"Configure file upload settings" : "Configurar os axustes de envío de ficheiros",
"Upload directory" : "Directorio ao que enviar",
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Os ficheiros anexos ás publicacións enviaranse a este directorio nos seus ficheiros de Nextcloud",
"Browse" : "Examinar",
"Preferences saved" : "Preferencias gardadas",
"Failed to save preferences" : "Produciuse un fallo ao gardar as preferencias",
"Select upload directory" : "Seleccionar o directorio ao que enviar",
"BBCode management" : "Xestión de BBCode",
"Manage custom BBCode tags for post formatting" : "Xestionar etiquetas personalizadas de BBCode para o formatado de publicacións",
"Error loading BBCodes" : "Produciuse un erro ao cargar BBCodes",
"Create BBCode" : "Crear BBCode",
"Enable" : "Activar",
"Disable" : "Desactivar",
"Enabled BBCodes" : "BBCodes activadas",
"These BBCode tags are currently active" : "Estas etiquetas BBCode están activas",
"Disabled BBCodes" : "BBCodes desactivadas",
"These BBCode tags are currently inactive" : "Estas etiquetas BBCode non están activas",
"No enabled BBCodes" : "Sen BBCodes activadas",
"Parses Inner" : "Análise interno",
"Delete BBCode" : "Eliminar BBCode",
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Confirma que quere eliminar a etiqueta BBCode [{tag}]?",
"This action cannot be undone." : "Esta acción non é posíbel desfacela.",
"Edit BBCode" : "Editar BBCode",
"Tag" : "Etiqueta",
"e.g., b, i, url, color" : "p. ex., b, i, url, cor",
"The BBCode tag name (without brackets)" : "O nome da etiqueta BBCode (sen corchetes)",
"HTML replacement" : "Substitución de HTML",
"e.g., {strongStart}{content}{strongEnd}" : "p. ex., {strongStart}{content}{strongEnd}",
"Use {content} for the tag content and {paramName} for parameters" : "Empregue {content} para o contido da etiqueta e {paramName} para os parámetros",
"e.g., {tagStart}Hello world{tagEnd}" : "e.g., {tagStart}Ola mundo{tagEnd}",
"Example usage of this BBCode tag" : "Exemplo de uso desta etiqueta BBCode",
"Description" : "Descrición",
"Brief description of what this BBCode does" : "Breve descrición do que fai esta BBCode",
"Enabled" : "Activado",
"Parse inner content" : "Análise do contido interno",
"If enabled, BBCode tags inside this tag will also be parsed" : "Se está activado, tamén se analizarán as etiquetas BBCode dentro desta etiqueta",
"Create category" : "Crear categoría",
"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 --",
"Name" : "Nome",
"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",
"Control which roles can access and moderate this category" : "Controle que roles poden acceder e moderar esta categoría",
"Roles that can view" : "Roles que poden ver",
"Select roles that can view this category and its threads" : "Seleccione os roles que poidan ver esta categoría e os seus fíos",
"Roles that can moderate" : "Roles que poden moderar",
"Select roles that can moderate (edit/delete) content in this category" : "Seleccione os roles que poidan moderar (editar/eliminar) contido nesta categoría",
"Select roles …" : "Seleccionar roles…",
"Manage forum categories and organization" : "Xestionar as categorías e a organización do foro",
"Error loading categories" : "Produciuse un erro ao cargar as categorías",
"No categories in this header" : "Non hai ningunha categoría neste fío",
"Delete category" : "Eliminar categoría",
"Are you sure you want to delete the category \"{name}\"?" : "Confirma que quere eliminar a categoría «{name}»?",
"_This category contains %n thread._::_This category contains %n threads._" : ["Esta categoría contén %n fío.","Esta categoría contén %n fíos."],
"What should happen to the threads?" : "Que hai que facer cos fíos?",
"Move threads to another category" : "Mover os fíos a outra categoría",
"Delete all threads (soft delete)" : "Eliminar todos os fíos (eliminación suave)",
"Threads will be hidden but not permanently deleted" : "Os fíos quedarán agochados mais non serán eliminados definitivamente",
"Select target category" : "Seleccionar categoría de destino",
"-- Select a category --" : "-- Seleccionar unha categoría --",
"Create header" : "Crear a cabeceira",
"_%n category_::_%n categories_" : ["%n categoría","%n categorías"],
"_%n thread_::_%n threads_" : ["%n fío","%n fíos"],
"Delete header" : "Eliminar a cabeceira",
"Are you sure you want to delete the header \"{name}\"?" : "Confirma que quere eliminar a cabeceira «{name}»?",
"_This header contains %n category._::_This header contains %n categories._" : ["Esta cabeceira contén %n categoría.","Esta cabeceira contén %n categorías."],
"This action cannot be undone" : "Esta acción non é posíbel desfacela",
"What should happen to the categories?" : "Que hai que facer coas categorías?",
"Move categories to another header" : "Mover as categorías a outra cabeceira",
"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",
"Move up" : "Mover cara arriba",
"Move down" : "Mover cara abaixo",
"Admin dashboard" : "Taboleiro de administración",
"Overview of forum activity and statistics" : "Visita xeral da actividade e estatísticas do foro",
"Loading statistics …" : "Cargando as estatísticas…",
"Error loading dashboard" : "Produciuse un erro ao cargar o taboleiro",
"Total statistics" : "Estatísticas totais",
"Total users" : "Total de usuarios",
"Total threads" : "Total de fíos",
"Total posts" : "Total de publicacións",
"Total categories" : "Total de categorías",
"Recent activity (last 7 days)" : "Actividade recente (últimos 7 días)",
"New users" : "Novos usuarios",
"New threads" : "Novos fíos",
"New posts" : "Novas publicacións",
"Top contributors" : "Principais colaboradores",
"No contributors yet" : "Aínda non hai colaboradores",
"Last 7 days" : "Últimos 7 días",
"All time" : "Tempo total",
"General settings" : "Axustes xerais",
"Configure general forum settings" : "Configurar os axustes xerais do foro",
"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",
"Welcome to the forum" : "Dámoslle a benvida ao foro!",
"A brief description shown below the title" : "Unha breve descrición que aparece baixo o título",
"Access control" : "Control de acceso",
"Manage who can access the forum" : "Xestiona quen pode acceder ao foro",
"Allow guest access" : "Permitir o acceso de convidados",
"When enabled, unauthenticated users can view forum content in read-only mode" : "Cando está activado, os usuarios non autenticados poden ver o contido do foro en modo de só lectura",
"Settings saved" : "Axustes gardados",
"Failed to save settings" : "Produciuse un fallo ao gardar os axustes",
"Create role" : "Crear rol",
"Edit role" : "Editar rol",
"Configure role permissions and category access" : "Configurar permisos de rol e acceso a categorías",
"Error loading role" : "Produciuse un erro ao cargar o rol",
"Enter role name" : "Introduza o nome do rol",
"Enter role description (optional)" : "Introduza a descrición do rol (opcional)",
"System role names cannot be changed" : "Non é posíbel cambiar os nomes dos roles do sistema",
"Colors" : "Cores",
"Set colors for this role badge" : "Definir as cores para esta insignia de rol",
"Light mode color" : "Cor do modo craro",
"Dark mode color" : "Cor do modo escuro",
"Reset" : "Restabelecer",
"Role permissions" : "Permisos de rol",
"Set global permissions for this role" : "Definir os permisos globais para este rol",
"Can access admin tools" : "Pode acceder a ferramentas de administración",
"Allow access to the admin dashboard and tools" : "Permitir o acceso ao taboleiro de administración e ás ferramentas",
"Can edit roles" : "Pode editar roles",
"Allow creating, editing and deleting roles" : "Permitir crear, editar e eliminar roles",
"Can edit categories" : "Pode editar categorías",
"Allow creating, editing and deleting categories" : "Permitir crear, editar e eliminar categorías",
"Category permissions" : "Permisos de categoría",
"Set which categories this role can access" : "Definir a que categorías pode acceder este rol",
"Category" : "Categoría",
"Can view" : "Pode ver",
"Can moderate" : "Pode moderar",
"Allow" : "Permitir",
"No categories available" : "Non hai ningunha categoría dispoñíbel",
"Admin role must have all permissions enabled" : "O rol de administraciónr debe ter todos os permisos activados",
"Admin role has full access to all categories" : "O rol de administración ten acceso total a todas as categorías",
"Guest role cannot have admin permissions" : "O rol de convidado non pode ter permisos de administración",
"Guest role cannot moderate categories" : "O rol de convidado non pode moderar categorías",
"You can control which categories guests can view using the checkboxes below." : "Vde. pode controlar que categorías poden ver os convidados usando as caixas de verificación de embaixo.",
"Guest access is currently disabled" : "O acceso para convidados está actualmente desactivado",
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Os usuarios convidados non poderán acceder ao foro ata que o acceso de convidado estea activado na configuración do foro.",
"Go to forum settings" : "Ir aos axustes do foro",
"Default role cannot moderate categories" : "O rol predeterminado non pode moderar categorías",
"Role management" : "Xestión de roles",
"Create and manage forum roles and permissions" : "Creación e xestión de roles e permisos do foro",
"Loading roles …" : "Cargando roles…",
"Error loading roles" : "Produciuse un erro ao cargar os roles",
"No roles found" : "Non se atopou ningún rol",
"Create your first role to get started" : "Cree o seu primeiro rol para comezar",
"ID" : "ID",
"Created" : "Creado",
"Actions" : "Accións",
"No description" : "Sen descrición",
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Confirma que quere eliminar o rol «{name}»? Esta acción non é posíbel desfacela.",
"System roles cannot be deleted" : "Non é posíbel eliminar os roles do sistema",
"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",
"Posts" : "Publicacións",
"Joined" : "Uniuse",
"Status" : "Estado",
"Active" : "Activa",
"Deleted" : "Eliminada",
"No roles" : "Non hai ningún rol",
"Select roles" : "Seleccionar roles",
"Edit roles" : "Editar roles",
"Edit user roles" : "Editar roles de usuario"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

158
l10n/he.js Normal file
View File

@@ -0,0 +1,158 @@
OC.L10N.register(
"forum",
{
"Admin" : "מנהל",
"Administrator role with full permissions" : "תפקיד מנהל עם הרשאות מלאות",
"Moderator" : "מפקח",
"Moderator role with elevated permissions" : "תפקיד מפקח עם הרשאות מוגבהות",
"User" : "משתמש",
"Default user role with basic permissions" : "תפקיד משתמש רגיל עם הרשאות בסיסיות",
"Guest" : "אורח",
"Guest role for unauthenticated users with read-only access" : "תפקיד אורח עם הרשאות גישה לקריאה בלבד",
"General" : "כללי",
"General discussion categories" : "קטגוריות לדיונים כלליים",
"General discussions" : "דיונים כלליים",
"A place for general conversations and discussions" : "מקום לשיחות ודיונים כלליים",
"Support" : "תמיכה",
"Ask questions about the forum, provide feedback or report issues." : "שאלת שאלות לגבי הפורום, סיפוק הערות ודיווח תקלות",
"Inline code" : "קוד מוטבע",
"Spoiler title" : "כותרת ספוילר",
"Hidden content" : "תוכן מוסתר",
"Spoilers" : "ספוילרים",
"Attachment" : "קובץ מצורף",
"Welcome to Nextcloud Forums" : "ברוכים הבאים לפורום Nextcloud",
"Welcome to the Nextcloud Forums!" : "ברוכים הבאים לפורום של Nextcloud!",
"Features:" : "יכולות:",
"Create and reply to threads" : "יצירה והגבה לשרשורים",
"Organize discussions by categories" : "אירגון דיונים על-פי קטגוריות",
"Attach files from your Nextcloud storage" : "צירוף קבצים מאחסון ה-Nextcloud שלך",
"React to posts" : "תגובות לשרשורים",
"Track read/unread threads" : "מעקב אחר שרשורים שנקראו\\לא נקראו",
"Bold text" : "טקסט בולט",
"Use %1$stext%2$s" : "השתמשו ב%1$sטקסט%2$s",
"Italic text" : "טקסט מוטה",
"Underlined text" : "טקסט בקו תחתון",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "הרגישו חופשי להתחיל שרשור חדש או להגיב לשרשורים קיימים. כתיבה מהנה!",
"Forum" : "פורום",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["תגובה {count} חדשה ב-{thread}","{count} תגובות חדשות ב-{thread}","{count} תגובות חדשות ב-{thread}"],
"Welcome to the forum!" : "ברוכים הבאים לפורום!",
"Deleted user" : "משתמש מחוק",
"A community-driven forum built right into your Nextcloud instance" : "פורום מונחה-קהילה מובנה ישירות להתקנת ה Nextcloud שלכם.",
"Search" : "חיפוש",
"Home" : "בית",
"User preferences" : "העדפות משתמש",
"Dashboard" : "לוח בקרה",
"Forum settings" : "הגדרות פורום",
"Users" : "משתמשים",
"Roles" : "תפקידים",
"Categories" : "קטגוריות",
"Expand" : "הרחבה",
"Collapse" : "קיווץ",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}נא לשים לב:{bEnd} קבצים מצורפים יהיו זמינים לכל מי שנמצא בפורום, ללא התחשבות בהגדרות השיתוף של הקובץ.",
"Drop file here to upload" : "השליכו קובץ כאן כדי להעלות",
"Hello world!" : "שלום עולם!",
"Hello moon!" : "שלום ירח!",
"Font style bold" : "סגנון גופן בולט",
"Font style italic" : "סגנון גופן מוטה",
"Font style struck through" : "סגנון גופן עם קו חוצה",
"Font style underlined" : "סגנון גופן עם קו תחתון",
"Code" : "קוד",
"Email (clickable)" : "דואר אלקטרוני (לחיץ)",
"URL (clickable)" : "קישור (לחיץ)",
"Image (not clickable)" : "תמונה (לא לחיצה)",
"Quote" : "ציטוט",
"Embedded YouTube video" : "סרטון יוטיוב מוטמע",
"Font (name)" : "גופן (שם)",
"Font size" : "גודל גופן",
"Font color" : "צבע גופן",
"Align left" : "יישור לשמאל",
"Align center" : "יישור למרכז",
"Align right" : "יישור ימין",
"List" : "רשימה",
"List item within a list" : "פריט רשימה בתוך רשימה",
"List item within a list (alias)" : "פריט רשימה בתוך רשימה (חלופה)",
"Example" : "דוגמה",
"Replacement" : "החלפה",
"Insert emoji" : "הכנסת אימוג'י",
"Pick file from Nextcloud" : "בחירת קובץ מ-Nextcloud",
"Upload file to Nextcloud" : "העלאת קובץ ל-Nextcloud",
"Uploading file …" : "מעלה קובץ …",
"Upload failed" : "ההעלאה נכשלה",
"Close" : "סגירה",
"Pick a file to attach" : "בחירת קובץ לצירוף",
"Failed to upload file" : "כשלון בהעלאת קובץ",
"_Thread_::_Threads_" : ["שרשור","שרשורים","שרשורים"],
"_Post_::_Posts_" : ["תגובה","תגובות","תגובות"],
"No description available" : "תיאור לא זמין",
"Create category header" : "יצירת כותרת קטגוריות",
"Edit category header" : "עריכת כותרת קטגוריות",
"Header name" : "שם כותרת",
"Enter header name" : "הכניסו שם כותרת",
"Header description" : "תיאור כותרת",
"Enter header description (optional)" : "הכניסו תיאור כותרת (רשות)",
"Sort order" : "סידור",
"Lower numbers appear first" : "מספרים נמוכים מופיעים קודם",
"Cancel" : "ביטול",
"Create" : "יצירה",
"Update" : "עדכון",
"Move thread to category" : "העברת שרשור לקטגוריה",
"Select the category to move this thread to:" : "נא לבחור לאיזו קטגוריה להזיז את השרשור הזה:",
"Select a category …" : "בחירת קטגוריה …",
"Loading categories …" : "טוען קטגוריות …",
"Move" : "העברה",
"Cannot move to a category header. Please select a category instead." : "לא ניתן להזיז לתוך כותרת קטגוריות. נא לבחור קטגוריה במקום.",
"This thread is already in this category." : "השרשור הזה כבר נמצא בקטגוריה הזו.",
"Failed to load categories" : "כשלון בטעינת קטגוריות",
"Page not found" : "העמוד לא נמצא",
"The page you are looking for could not be found." : "העמוד שחיפשתם לא נמצא.",
"Back" : "אחורה",
"Go to home" : "חזרה אל דף הבית",
"Edited" : "נערך",
"Quote reply" : "ציטוט בתגובה",
"Edit" : "עריכה",
"Delete" : "מחיקה",
"Are you sure you want to delete this post? This action cannot be undone." : "האם אתם בטוחים שתרצו למחוק את הפוסט הזה? הפעולה בלתי ניתנת להפיכה.",
"Unread" : "לא נקרא",
"Edit your post …" : "עריכת פוסט …",
"Save" : "שמירה",
"Are you sure you want to discard your changes?" : "האם אתם בטוחים שתרצו לבטל את השינויים שלכם?",
"Uncategorized" : "ללא קטגוריה",
"Views" : "תצוגות",
"Refresh" : "רענון",
"Loading …" : "בטעינה…",
"Retry" : "ניסיון חוזר",
"Error" : "שגיאה",
"Searching …" : "מתבצע חיפוש…",
"Back to {category}" : "חזרה אל {category}",
"by" : "מאת",
"Subscribe" : "הרשמה",
"Edit title" : "עריכת כותרת",
"Move thread" : "העברת שרשור",
"Preferences" : "העדפות",
"Notifications" : "התראות",
"Files" : "קבצים",
"Disable" : "השבתה",
"Tag" : "תגית",
"Description" : "תיאור",
"Enabled" : "מופעל",
"Name" : "שם",
"New" : "חדש",
"Permissions" : "הרשאות",
"Move down" : "להוריד למטה",
"General settings" : "הגדרות כלליות",
"Appearance" : "מראה",
"Access control" : "בקרת גישה",
"Settings saved" : "הגדרות נשמרו",
"Failed to save settings" : "שמירת ההגדרות נכשלה",
"Reset" : "איפוס",
"Category" : "קטגוריה",
"Allow" : "לאפשר",
"ID" : "מזהה",
"Created" : "יצירה",
"Actions" : "פעולות",
"No users found" : "לא נמצאו משתמשים",
"Posts" : "תגובות",
"Active" : "פעיל",
"Deleted" : "נמחק"
},
"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;");

156
l10n/he.json Normal file
View File

@@ -0,0 +1,156 @@
{ "translations": {
"Admin" : "מנהל",
"Administrator role with full permissions" : "תפקיד מנהל עם הרשאות מלאות",
"Moderator" : "מפקח",
"Moderator role with elevated permissions" : "תפקיד מפקח עם הרשאות מוגבהות",
"User" : "משתמש",
"Default user role with basic permissions" : "תפקיד משתמש רגיל עם הרשאות בסיסיות",
"Guest" : "אורח",
"Guest role for unauthenticated users with read-only access" : "תפקיד אורח עם הרשאות גישה לקריאה בלבד",
"General" : "כללי",
"General discussion categories" : "קטגוריות לדיונים כלליים",
"General discussions" : "דיונים כלליים",
"A place for general conversations and discussions" : "מקום לשיחות ודיונים כלליים",
"Support" : "תמיכה",
"Ask questions about the forum, provide feedback or report issues." : "שאלת שאלות לגבי הפורום, סיפוק הערות ודיווח תקלות",
"Inline code" : "קוד מוטבע",
"Spoiler title" : "כותרת ספוילר",
"Hidden content" : "תוכן מוסתר",
"Spoilers" : "ספוילרים",
"Attachment" : "קובץ מצורף",
"Welcome to Nextcloud Forums" : "ברוכים הבאים לפורום Nextcloud",
"Welcome to the Nextcloud Forums!" : "ברוכים הבאים לפורום של Nextcloud!",
"Features:" : "יכולות:",
"Create and reply to threads" : "יצירה והגבה לשרשורים",
"Organize discussions by categories" : "אירגון דיונים על-פי קטגוריות",
"Attach files from your Nextcloud storage" : "צירוף קבצים מאחסון ה-Nextcloud שלך",
"React to posts" : "תגובות לשרשורים",
"Track read/unread threads" : "מעקב אחר שרשורים שנקראו\\לא נקראו",
"Bold text" : "טקסט בולט",
"Use %1$stext%2$s" : "השתמשו ב%1$sטקסט%2$s",
"Italic text" : "טקסט מוטה",
"Underlined text" : "טקסט בקו תחתון",
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "הרגישו חופשי להתחיל שרשור חדש או להגיב לשרשורים קיימים. כתיבה מהנה!",
"Forum" : "פורום",
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["תגובה {count} חדשה ב-{thread}","{count} תגובות חדשות ב-{thread}","{count} תגובות חדשות ב-{thread}"],
"Welcome to the forum!" : "ברוכים הבאים לפורום!",
"Deleted user" : "משתמש מחוק",
"A community-driven forum built right into your Nextcloud instance" : "פורום מונחה-קהילה מובנה ישירות להתקנת ה Nextcloud שלכם.",
"Search" : "חיפוש",
"Home" : "בית",
"User preferences" : "העדפות משתמש",
"Dashboard" : "לוח בקרה",
"Forum settings" : "הגדרות פורום",
"Users" : "משתמשים",
"Roles" : "תפקידים",
"Categories" : "קטגוריות",
"Expand" : "הרחבה",
"Collapse" : "קיווץ",
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}נא לשים לב:{bEnd} קבצים מצורפים יהיו זמינים לכל מי שנמצא בפורום, ללא התחשבות בהגדרות השיתוף של הקובץ.",
"Drop file here to upload" : "השליכו קובץ כאן כדי להעלות",
"Hello world!" : "שלום עולם!",
"Hello moon!" : "שלום ירח!",
"Font style bold" : "סגנון גופן בולט",
"Font style italic" : "סגנון גופן מוטה",
"Font style struck through" : "סגנון גופן עם קו חוצה",
"Font style underlined" : "סגנון גופן עם קו תחתון",
"Code" : "קוד",
"Email (clickable)" : "דואר אלקטרוני (לחיץ)",
"URL (clickable)" : "קישור (לחיץ)",
"Image (not clickable)" : "תמונה (לא לחיצה)",
"Quote" : "ציטוט",
"Embedded YouTube video" : "סרטון יוטיוב מוטמע",
"Font (name)" : "גופן (שם)",
"Font size" : "גודל גופן",
"Font color" : "צבע גופן",
"Align left" : "יישור לשמאל",
"Align center" : "יישור למרכז",
"Align right" : "יישור ימין",
"List" : "רשימה",
"List item within a list" : "פריט רשימה בתוך רשימה",
"List item within a list (alias)" : "פריט רשימה בתוך רשימה (חלופה)",
"Example" : "דוגמה",
"Replacement" : "החלפה",
"Insert emoji" : "הכנסת אימוג'י",
"Pick file from Nextcloud" : "בחירת קובץ מ-Nextcloud",
"Upload file to Nextcloud" : "העלאת קובץ ל-Nextcloud",
"Uploading file …" : "מעלה קובץ …",
"Upload failed" : "ההעלאה נכשלה",
"Close" : "סגירה",
"Pick a file to attach" : "בחירת קובץ לצירוף",
"Failed to upload file" : "כשלון בהעלאת קובץ",
"_Thread_::_Threads_" : ["שרשור","שרשורים","שרשורים"],
"_Post_::_Posts_" : ["תגובה","תגובות","תגובות"],
"No description available" : "תיאור לא זמין",
"Create category header" : "יצירת כותרת קטגוריות",
"Edit category header" : "עריכת כותרת קטגוריות",
"Header name" : "שם כותרת",
"Enter header name" : "הכניסו שם כותרת",
"Header description" : "תיאור כותרת",
"Enter header description (optional)" : "הכניסו תיאור כותרת (רשות)",
"Sort order" : "סידור",
"Lower numbers appear first" : "מספרים נמוכים מופיעים קודם",
"Cancel" : "ביטול",
"Create" : "יצירה",
"Update" : "עדכון",
"Move thread to category" : "העברת שרשור לקטגוריה",
"Select the category to move this thread to:" : "נא לבחור לאיזו קטגוריה להזיז את השרשור הזה:",
"Select a category …" : "בחירת קטגוריה …",
"Loading categories …" : "טוען קטגוריות …",
"Move" : "העברה",
"Cannot move to a category header. Please select a category instead." : "לא ניתן להזיז לתוך כותרת קטגוריות. נא לבחור קטגוריה במקום.",
"This thread is already in this category." : "השרשור הזה כבר נמצא בקטגוריה הזו.",
"Failed to load categories" : "כשלון בטעינת קטגוריות",
"Page not found" : "העמוד לא נמצא",
"The page you are looking for could not be found." : "העמוד שחיפשתם לא נמצא.",
"Back" : "אחורה",
"Go to home" : "חזרה אל דף הבית",
"Edited" : "נערך",
"Quote reply" : "ציטוט בתגובה",
"Edit" : "עריכה",
"Delete" : "מחיקה",
"Are you sure you want to delete this post? This action cannot be undone." : "האם אתם בטוחים שתרצו למחוק את הפוסט הזה? הפעולה בלתי ניתנת להפיכה.",
"Unread" : "לא נקרא",
"Edit your post …" : "עריכת פוסט …",
"Save" : "שמירה",
"Are you sure you want to discard your changes?" : "האם אתם בטוחים שתרצו לבטל את השינויים שלכם?",
"Uncategorized" : "ללא קטגוריה",
"Views" : "תצוגות",
"Refresh" : "רענון",
"Loading …" : "בטעינה…",
"Retry" : "ניסיון חוזר",
"Error" : "שגיאה",
"Searching …" : "מתבצע חיפוש…",
"Back to {category}" : "חזרה אל {category}",
"by" : "מאת",
"Subscribe" : "הרשמה",
"Edit title" : "עריכת כותרת",
"Move thread" : "העברת שרשור",
"Preferences" : "העדפות",
"Notifications" : "התראות",
"Files" : "קבצים",
"Disable" : "השבתה",
"Tag" : "תגית",
"Description" : "תיאור",
"Enabled" : "מופעל",
"Name" : "שם",
"New" : "חדש",
"Permissions" : "הרשאות",
"Move down" : "להוריד למטה",
"General settings" : "הגדרות כלליות",
"Appearance" : "מראה",
"Access control" : "בקרת גישה",
"Settings saved" : "הגדרות נשמרו",
"Failed to save settings" : "שמירת ההגדרות נכשלה",
"Reset" : "איפוס",
"Category" : "קטגוריה",
"Allow" : "לאפשר",
"ID" : "מזהה",
"Created" : "יצירה",
"Actions" : "פעולות",
"No users found" : "לא נמצאו משתמשים",
"Posts" : "תגובות",
"Active" : "פעיל",
"Deleted" : "נמחק"
},"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"
}

View File

@@ -1,6 +1,74 @@
OC.L10N.register(
"forum",
{
"ID" : "ID"
"Admin" : "Admin",
"User" : "@string/user_icon",
"General" : "Općenito",
"Support" : "Podrška",
"Forum" : "Forum",
"Deleted user" : "Izbrisan korisnik",
"Search" : "Traži",
"Home" : "Doma",
"Dashboard" : "Nadzorna ploča",
"Users" : "Korisnici",
"Categories" : "Kategorije",
"Collapse" : "Sakrij",
"Hello world!" : "Pozdrav svijete!",
"Code" : "Kod",
"Quote" : "Ponuda",
"Font size" : "Veličina fonta",
"List" : "Popis",
"Insert emoji" : "Umetni emoji",
"Close" : "Zatvori",
"Cancel" : "Cancel",
"Create" : "Stvori",
"Update" : "Ažuriraj",
"Move" : "Premjesti",
"Page not found" : "Stranica nije pronađena",
"Edit" : "Uredi",
"Delete" : "Izbriši",
"Save" : "Spremi",
"Uncategorized" : "Nekategorizirani",
"Views" : "Prikazi",
"Title" : "Naslov",
"Refresh" : "Osvježi",
"Loading …" : "Učitavanje…",
"Error" : "Pogreška",
"Searching …" : "Traženje…",
"No results found" : "Nema rezultata",
"Back to {category}" : "Natrag na {category}",
"by" : "od",
"Subscribe" : "Preplata",
"Subscribed" : "Pretplaćen",
"Edit title" : "Uredi naslov",
"Move thread" : "Premjesti dretvu",
"Preferences" : "Preferencije",
"Notifications" : "Obavijesti",
"Files" : "Datoteke",
"Enable" : "Omogućite",
"Disable" : "Onemogući",
"Tag" : "Oznaka",
"Description" : "Opis",
"Enabled" : "Omogućeno",
"Name" : "Naziv",
"New" : "Novo",
"Permissions" : "Dopuštenja",
"Move up" : "Premjesti gore",
"Move down" : "Premjesti dolje",
"General settings" : "Opće postavke",
"Appearance" : "Izgled",
"Access control" : "Kontrola pristupa",
"Settings saved" : "Postavke spremljene",
"Failed to save settings" : "Spremanje postavki nije uspjelo",
"Reset" : "Resetiraj",
"Category" : "Kategorija",
"Allow" : "Dopusti",
"ID" : "ID",
"Actions" : "Radnje",
"No users found" : "Nije pronađen nijedan korisnik",
"Joined" : "Pridružen",
"Status" : "Status",
"Active" : "Aktivan",
"Deleted" : "Izbrisano"
},
"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;");

View File

@@ -1,4 +1,72 @@
{ "translations": {
"ID" : "ID"
"Admin" : "Admin",
"User" : "@string/user_icon",
"General" : "Općenito",
"Support" : "Podrška",
"Forum" : "Forum",
"Deleted user" : "Izbrisan korisnik",
"Search" : "Traži",
"Home" : "Doma",
"Dashboard" : "Nadzorna ploča",
"Users" : "Korisnici",
"Categories" : "Kategorije",
"Collapse" : "Sakrij",
"Hello world!" : "Pozdrav svijete!",
"Code" : "Kod",
"Quote" : "Ponuda",
"Font size" : "Veličina fonta",
"List" : "Popis",
"Insert emoji" : "Umetni emoji",
"Close" : "Zatvori",
"Cancel" : "Cancel",
"Create" : "Stvori",
"Update" : "Ažuriraj",
"Move" : "Premjesti",
"Page not found" : "Stranica nije pronađena",
"Edit" : "Uredi",
"Delete" : "Izbriši",
"Save" : "Spremi",
"Uncategorized" : "Nekategorizirani",
"Views" : "Prikazi",
"Title" : "Naslov",
"Refresh" : "Osvježi",
"Loading …" : "Učitavanje…",
"Error" : "Pogreška",
"Searching …" : "Traženje…",
"No results found" : "Nema rezultata",
"Back to {category}" : "Natrag na {category}",
"by" : "od",
"Subscribe" : "Preplata",
"Subscribed" : "Pretplaćen",
"Edit title" : "Uredi naslov",
"Move thread" : "Premjesti dretvu",
"Preferences" : "Preferencije",
"Notifications" : "Obavijesti",
"Files" : "Datoteke",
"Enable" : "Omogućite",
"Disable" : "Onemogući",
"Tag" : "Oznaka",
"Description" : "Opis",
"Enabled" : "Omogućeno",
"Name" : "Naziv",
"New" : "Novo",
"Permissions" : "Dopuštenja",
"Move up" : "Premjesti gore",
"Move down" : "Premjesti dolje",
"General settings" : "Opće postavke",
"Appearance" : "Izgled",
"Access control" : "Kontrola pristupa",
"Settings saved" : "Postavke spremljene",
"Failed to save settings" : "Spremanje postavki nije uspjelo",
"Reset" : "Resetiraj",
"Category" : "Kategorija",
"Allow" : "Dopusti",
"ID" : "ID",
"Actions" : "Radnje",
"No users found" : "Nije pronađen nijedan korisnik",
"Joined" : "Pridružen",
"Status" : "Status",
"Active" : "Aktivan",
"Deleted" : "Izbrisano"
},"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"
}

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