mirror of
https://github.com/chenasraf/nextcloud-forum.git
synced 2026-05-18 01:28:58 +00:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9965f58dc3 | |||
|
|
6a920d3ebf | ||
| d8a8e96922 | |||
| 1793a169c4 | |||
| a3f5360ff5 | |||
| d4e9ffd467 | |||
| 90446e4cd7 | |||
| 4b08dad606 | |||
|
|
a7c10f2e0c | ||
|
|
33e714cab2 |
@@ -1 +1 @@
|
||||
{".":"0.18.0"}
|
||||
{".":"0.19.0"}
|
||||
|
||||
23
CHANGELOG.md
23
CHANGELOG.md
@@ -1,5 +1,28 @@
|
||||
# Changelog
|
||||
|
||||
## [0.19.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.18.1...v0.19.0) (2025-12-18)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* post edit history ([a3f5360](https://github.com/chenasraf/nextcloud-forum/commit/a3f5360ff518753439bfc3370700a6f4521ac16b))
|
||||
* show loader in navigation sidebar ([d4e9ffd](https://github.com/chenasraf/nextcloud-forum/commit/d4e9ffd467da658629317d88c13f6a7c66425826))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **l10n:** show correct msg in thread update responses ([1793a16](https://github.com/chenasraf/nextcloud-forum/commit/1793a169c4ceeebd3d86cd68bed0056f0aaab1f1))
|
||||
* **l10n:** Update translations from Transifex ([6a920d3](https://github.com/chenasraf/nextcloud-forum/commit/6a920d3ebf9530022205a2502185ea1d3701fcac))
|
||||
|
||||
## [0.18.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.18.0...v0.18.1) (2025-12-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* allow updating thread title ([4b08dad](https://github.com/chenasraf/nextcloud-forum/commit/4b08dad606367229add21cfd71427028b464b528))
|
||||
* **l10n:** Update translations from Transifex ([a7c10f2](https://github.com/chenasraf/nextcloud-forum/commit/a7c10f2e0c1ccb97e8f96a6d7abe084743e54f04))
|
||||
* **l10n:** Update translations from Transifex ([33e714c](https://github.com/chenasraf/nextcloud-forum/commit/33e714cab25e3c47fde7da8308eb4d8a3e2f2320))
|
||||
|
||||
## [0.18.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.17.1...v0.18.0) (2025-12-15)
|
||||
|
||||
|
||||
|
||||
16
Makefile
16
Makefile
@@ -163,6 +163,7 @@ source:
|
||||
|
||||
# appstore:
|
||||
# - Create an App Store tarball (strips tests, dotfiles, dev configs)
|
||||
# - Installs only production dependencies (no dev deps)
|
||||
# - Output: build/artifacts/appstore/$(app_name).tar.gz
|
||||
.PHONY: appstore
|
||||
appstore:
|
||||
@@ -170,7 +171,10 @@ appstore:
|
||||
mkdir -p $(app_intermediate_directory)
|
||||
mkdir -p $(appstore_build_directory)
|
||||
rm -rf $(appstore_package_name).tar.gz
|
||||
rsync -vtr \
|
||||
@echo "Installing production dependencies only..."
|
||||
rm -rf vendor
|
||||
$(composer_bin) install --no-dev --prefer-dist --optimize-autoloader
|
||||
rsync -vtr --delete \
|
||||
--exclude="**/.git/**/*" \
|
||||
--exclude="**/.github/**/*" \
|
||||
--exclude="build" \
|
||||
@@ -178,8 +182,10 @@ appstore:
|
||||
--exclude="Makefile" \
|
||||
--exclude="*.log" \
|
||||
--exclude="phpunit*xml" \
|
||||
--exclude="psalm.xml" \
|
||||
--exclude="composer.*" \
|
||||
--exclude="node_modules" \
|
||||
--exclude="vendor-bin" \
|
||||
--exclude="dist/js/node_modules" \
|
||||
--exclude="dist/js/tests" \
|
||||
--exclude="dist/js/test" \
|
||||
@@ -189,17 +195,23 @@ appstore:
|
||||
--exclude="dist/js/karma.*" \
|
||||
--exclude="dist/js/protractor.*" \
|
||||
--exclude="package.json" \
|
||||
--exclude="pnpm-lock.yaml" \
|
||||
--exclude="bower.json" \
|
||||
--exclude="karma.*" \
|
||||
--exclude="protractor\.*" \
|
||||
--exclude="/gen" \
|
||||
--exclude="/.*" \
|
||||
--exclude="dist/js/.*" \
|
||||
--exclude="/src" \
|
||||
--exclude="rename-template.sh" \
|
||||
--exclude="*.config.cjs" \
|
||||
--exclude="*.config.js" \
|
||||
--exclude="*.config.ts" \
|
||||
--exclude="tsconfig*.json" \
|
||||
$(CURDIR)/ $(app_intermediate_directory)
|
||||
cd $(CURDIR)/build/artifacts/intermediate && \
|
||||
tar czf $(appstore_package_name).tar.gz $(app_name)
|
||||
@echo "Restoring dev dependencies..."
|
||||
$(composer_bin) install --prefer-dist
|
||||
|
||||
# test:
|
||||
# - Run PHP unit tests locally with a configured Nextcloud installation
|
||||
|
||||
@@ -37,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.18.0</version>
|
||||
<version>0.19.0</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="contact@casraf.dev" homepage="https://casraf.dev">Chen Asraf</author>
|
||||
<namespace>Forum</namespace>
|
||||
|
||||
@@ -16,10 +16,10 @@
|
||||
},
|
||||
"scripts": {
|
||||
"post-install-cmd": [
|
||||
"@composer bin all install --ansi"
|
||||
"@php -r \"if (getenv('COMPOSER_DEV_MODE') !== '0') { passthru(getenv('COMPOSER_BINARY').' bin all install --ansi'); }\""
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"@composer bin all update --ansi"
|
||||
"@php -r \"if (getenv('COMPOSER_DEV_MODE') !== '0') { passthru(getenv('COMPOSER_BINARY').' bin all update --ansi'); }\""
|
||||
],
|
||||
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './gen/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
|
||||
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
||||
@@ -30,11 +30,11 @@
|
||||
},
|
||||
"require": {
|
||||
"php": "^8.1",
|
||||
"bamarni/composer-bin-plugin": "^1.8",
|
||||
"chriskonnertz/bbcode": "^1.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"nextcloud/ocp": "dev-stable29",
|
||||
"bamarni/composer-bin-plugin": "^1.8",
|
||||
"nextcloud/ocp": "dev-stable32",
|
||||
"phpunit/phpunit": "^10.5",
|
||||
"roave/security-advisories": "dev-latest"
|
||||
},
|
||||
@@ -47,5 +47,11 @@
|
||||
"platform": {
|
||||
"php": "8.1"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"bamarni-bin": {
|
||||
"bin-links": true,
|
||||
"forward-command": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
163
composer.lock
generated
163
composer.lock
generated
@@ -4,8 +4,59 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "48d3d1ff5b242a7f16dd89794097f180",
|
||||
"content-hash": "449361de31344c6c5c7f54a44ae518ff",
|
||||
"packages": [
|
||||
{
|
||||
"name": "chriskonnertz/bbcode",
|
||||
"version": "v1.1.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/chriskonnertz/bbcode.git",
|
||||
"reference": "d3acd447ee11265d4ef38b9058cef32adcafa245"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/chriskonnertz/bbcode/zipball/d3acd447ee11265d4ef38b9058cef32adcafa245",
|
||||
"reference": "d3acd447ee11265d4ef38b9058cef32adcafa245",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.7"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~4"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-0": {
|
||||
"ChrisKonnertz\\BBCode": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Kai Mallea",
|
||||
"email": "kmallea@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Chris Konnertz"
|
||||
}
|
||||
],
|
||||
"description": "A naive attempt at a BBCode 'parser' written in PHP. It uses regex and thus fails at complex, nested tags.",
|
||||
"keywords": [
|
||||
"bbcode"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/chriskonnertz/bbcode/issues",
|
||||
"source": "https://github.com/chriskonnertz/bbcode/tree/master"
|
||||
},
|
||||
"time": "2018-06-17T13:58:51+00:00"
|
||||
}
|
||||
],
|
||||
"packages-dev": [
|
||||
{
|
||||
"name": "bamarni/composer-bin-plugin",
|
||||
"version": "1.8.3",
|
||||
@@ -63,57 +114,6 @@
|
||||
},
|
||||
"time": "2025-11-24T19:20:55+00:00"
|
||||
},
|
||||
{
|
||||
"name": "chriskonnertz/bbcode",
|
||||
"version": "v1.1.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/chriskonnertz/bbcode.git",
|
||||
"reference": "d3acd447ee11265d4ef38b9058cef32adcafa245"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/chriskonnertz/bbcode/zipball/d3acd447ee11265d4ef38b9058cef32adcafa245",
|
||||
"reference": "d3acd447ee11265d4ef38b9058cef32adcafa245",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.7"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~4"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-0": {
|
||||
"ChrisKonnertz\\BBCode": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Kai Mallea",
|
||||
"email": "kmallea@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Chris Konnertz"
|
||||
}
|
||||
],
|
||||
"description": "A naive attempt at a BBCode 'parser' written in PHP. It uses regex and thus fails at complex, nested tags.",
|
||||
"keywords": [
|
||||
"bbcode"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/chriskonnertz/bbcode/issues",
|
||||
"source": "https://github.com/chriskonnertz/bbcode/tree/master"
|
||||
},
|
||||
"time": "2018-06-17T13:58:51+00:00"
|
||||
}
|
||||
],
|
||||
"packages-dev": [
|
||||
{
|
||||
"name": "myclabs/deep-copy",
|
||||
"version": "1.13.4",
|
||||
@@ -176,29 +176,29 @@
|
||||
},
|
||||
{
|
||||
"name": "nextcloud/ocp",
|
||||
"version": "dev-stable29",
|
||||
"version": "dev-stable32",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nextcloud-deps/ocp.git",
|
||||
"reference": "f8c70c8d28000510f865028e24bb5cfe562f8b77"
|
||||
"reference": "45612049852ea4234dd799a4a3281a397f0749c3"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/f8c70c8d28000510f865028e24bb5cfe562f8b77",
|
||||
"reference": "f8c70c8d28000510f865028e24bb5cfe562f8b77",
|
||||
"url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/45612049852ea4234dd799a4a3281a397f0749c3",
|
||||
"reference": "45612049852ea4234dd799a4a3281a397f0749c3",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "~8.0 || ~8.1 || ~8.2 || ~8.3",
|
||||
"php": "~8.1 || ~8.2 || ~8.3 || ~8.4",
|
||||
"psr/clock": "^1.0",
|
||||
"psr/container": "^2.0.2",
|
||||
"psr/event-dispatcher": "^1.0",
|
||||
"psr/log": "^1.1.4"
|
||||
"psr/log": "^3.0.2"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-stable29": "29.0.0-dev"
|
||||
"dev-stable32": "32.0.0-dev"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
@@ -209,14 +209,18 @@
|
||||
{
|
||||
"name": "Christoph Wurst",
|
||||
"email": "christoph@winzerhof-wurst.at"
|
||||
},
|
||||
{
|
||||
"name": "Joas Schilling",
|
||||
"email": "coding@schilljs.com"
|
||||
}
|
||||
],
|
||||
"description": "Composer package containing Nextcloud's public API (classes, interfaces)",
|
||||
"description": "Composer package containing Nextcloud's public OCP API and the unstable NCU API",
|
||||
"support": {
|
||||
"issues": "https://github.com/nextcloud-deps/ocp/issues",
|
||||
"source": "https://github.com/nextcloud-deps/ocp/tree/stable29"
|
||||
"source": "https://github.com/nextcloud-deps/ocp/tree/stable32"
|
||||
},
|
||||
"time": "2025-11-30T00:58:59+00:00"
|
||||
"time": "2025-12-16T00:55:52+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nikic/php-parser",
|
||||
@@ -977,30 +981,30 @@
|
||||
},
|
||||
{
|
||||
"name": "psr/log",
|
||||
"version": "1.1.4",
|
||||
"version": "3.0.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-fig/log.git",
|
||||
"reference": "d49695b909c3b7628b6289db5479a1c204601f11"
|
||||
"reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
|
||||
"reference": "d49695b909c3b7628b6289db5479a1c204601f11",
|
||||
"url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
|
||||
"reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
"php": ">=8.0.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.1.x-dev"
|
||||
"dev-master": "3.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Psr\\Log\\": "Psr/Log/"
|
||||
"Psr\\Log\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
@@ -1021,9 +1025,9 @@
|
||||
"psr-3"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/php-fig/log/tree/1.1.4"
|
||||
"source": "https://github.com/php-fig/log/tree/3.0.2"
|
||||
},
|
||||
"time": "2021-05-03T11:20:27+00:00"
|
||||
"time": "2024-09-11T13:17:53+00:00"
|
||||
},
|
||||
{
|
||||
"name": "roave/security-advisories",
|
||||
@@ -1031,12 +1035,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Roave/SecurityAdvisories.git",
|
||||
"reference": "1553067758ae7f3df13df7c7e232c62d928e1d23"
|
||||
"reference": "e5034c4df32edeafb119b2c1e2b58876d0286ea8"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/1553067758ae7f3df13df7c7e232c62d928e1d23",
|
||||
"reference": "1553067758ae7f3df13df7c7e232c62d928e1d23",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/e5034c4df32edeafb119b2c1e2b58876d0286ea8",
|
||||
"reference": "e5034c4df32edeafb119b2c1e2b58876d0286ea8",
|
||||
"shasum": ""
|
||||
},
|
||||
"conflict": {
|
||||
@@ -1058,6 +1062,7 @@
|
||||
"alextselegidis/easyappointments": "<1.5.2.0-beta1",
|
||||
"alexusmai/laravel-file-manager": "<=3.3.1",
|
||||
"alt-design/alt-redirect": "<1.6.4",
|
||||
"altcha-org/altcha": "<1.3.1",
|
||||
"alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
|
||||
"amazing/media2click": ">=1,<1.3.3",
|
||||
"ameos/ameos_tarteaucitron": "<1.2.23",
|
||||
@@ -1081,10 +1086,10 @@
|
||||
"athlon1600/php-proxy-app": "<=3",
|
||||
"athlon1600/youtube-downloader": "<=4",
|
||||
"austintoddj/canvas": "<=3.4.2",
|
||||
"auth0/auth0-php": ">=3.3,<=8.16",
|
||||
"auth0/login": "<=7.18",
|
||||
"auth0/symfony": "<=5.4.1",
|
||||
"auth0/wordpress": "<=5.3",
|
||||
"auth0/auth0-php": ">=3.3,<8.18",
|
||||
"auth0/login": "<7.20",
|
||||
"auth0/symfony": "<=5.5",
|
||||
"auth0/wordpress": "<=5.4",
|
||||
"automad/automad": "<2.0.0.0-alpha5",
|
||||
"automattic/jetpack": "<9.8",
|
||||
"awesome-support/awesome-support": "<=6.0.7",
|
||||
@@ -2027,7 +2032,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2025-12-12T23:06:01+00:00"
|
||||
"time": "2025-12-17T21:06:23+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/cli-parser",
|
||||
|
||||
@@ -10,6 +10,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
|
||||
"Forum" : "المنتدى",
|
||||
"Deleted user" : "مستخدم محذوف",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Search" : "بحث",
|
||||
"Home" : "الرئيسية",
|
||||
"Bookmarks" : "الإشارات المرجعية Bookmarks",
|
||||
@@ -45,7 +46,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "تمّ حفظ المُسوَّدة",
|
||||
"Unsaved changes" : "تغييرات لم يتم حفظها",
|
||||
"Refresh" : "إنعاش",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Retry" : "أعِدِ المحاولة",
|
||||
"Error" : "خطأ",
|
||||
"Searching …" : "يتم الآن البحث…",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
|
||||
"Forum" : "المنتدى",
|
||||
"Deleted user" : "مستخدم محذوف",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Search" : "بحث",
|
||||
"Home" : "الرئيسية",
|
||||
"Bookmarks" : "الإشارات المرجعية Bookmarks",
|
||||
@@ -43,7 +44,6 @@
|
||||
"Draft saved" : "تمّ حفظ المُسوَّدة",
|
||||
"Unsaved changes" : "تغييرات لم يتم حفظها",
|
||||
"Refresh" : "إنعاش",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Retry" : "أعِدِ المحاولة",
|
||||
"Error" : "خطأ",
|
||||
"Searching …" : "يتم الآن البحث…",
|
||||
|
||||
@@ -11,6 +11,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Testu solliniáu",
|
||||
"Forum" : "Foru",
|
||||
"Deleted user" : "Usuariu desaniciáu",
|
||||
"Loading …" : "Cargando…",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Aniciu",
|
||||
"Dashboard" : "Panel",
|
||||
@@ -39,7 +40,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Guardóse'l borrador",
|
||||
"Unsaved changes" : "Cambeos ensin guardar",
|
||||
"Refresh" : "Anovar",
|
||||
"Loading …" : "Cargando…",
|
||||
"Retry" : "Retentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando…",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"Underlined text" : "Testu solliniáu",
|
||||
"Forum" : "Foru",
|
||||
"Deleted user" : "Usuariu desaniciáu",
|
||||
"Loading …" : "Cargando…",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Aniciu",
|
||||
"Dashboard" : "Panel",
|
||||
@@ -37,7 +38,6 @@
|
||||
"Draft saved" : "Guardóse'l borrador",
|
||||
"Unsaved changes" : "Cambeos ensin guardar",
|
||||
"Refresh" : "Anovar",
|
||||
"Loading …" : "Cargando…",
|
||||
"Retry" : "Retentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando…",
|
||||
|
||||
@@ -16,6 +16,7 @@ OC.L10N.register(
|
||||
"Forum" : "Форум",
|
||||
"Welcome to the forum!" : "Вітаем на форуме!",
|
||||
"Deleted user" : "Выдалены карыстальнік",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Search" : "Пошук",
|
||||
"Home" : "Дадому",
|
||||
"Dashboard" : "Панэль кіравання",
|
||||
@@ -63,7 +64,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Чарнавік захаваны",
|
||||
"Unsaved changes" : "Незахаваныя змены",
|
||||
"Refresh" : "Абнавіць",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Retry" : "Паўтарыць спробу",
|
||||
"In {category}" : "У {category}",
|
||||
"Error" : "Памылка",
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
"Forum" : "Форум",
|
||||
"Welcome to the forum!" : "Вітаем на форуме!",
|
||||
"Deleted user" : "Выдалены карыстальнік",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Search" : "Пошук",
|
||||
"Home" : "Дадому",
|
||||
"Dashboard" : "Панэль кіравання",
|
||||
@@ -61,7 +62,6 @@
|
||||
"Draft saved" : "Чарнавік захаваны",
|
||||
"Unsaved changes" : "Незахаваныя змены",
|
||||
"Refresh" : "Абнавіць",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Retry" : "Паўтарыць спробу",
|
||||
"In {category}" : "У {category}",
|
||||
"Error" : "Памылка",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Подчертан текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Изтрит потребител",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Search" : "Търсене",
|
||||
"Home" : "Начало",
|
||||
"Bookmarks" : "Отметки",
|
||||
@@ -45,8 +46,8 @@ OC.L10N.register(
|
||||
"Title" : "Заглавие",
|
||||
"Saving draft …" : "Записване на чернова …",
|
||||
"Draft saved" : "Черновата е записана",
|
||||
"Unsaved changes" : "Незаписани промени",
|
||||
"Refresh" : "Опресняване",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Retry" : "Опитай отново",
|
||||
"Error" : "Грешка",
|
||||
"Searching …" : "Търсене ...",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Underlined text" : "Подчертан текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Изтрит потребител",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Search" : "Търсене",
|
||||
"Home" : "Начало",
|
||||
"Bookmarks" : "Отметки",
|
||||
@@ -43,8 +44,8 @@
|
||||
"Title" : "Заглавие",
|
||||
"Saving draft …" : "Записване на чернова …",
|
||||
"Draft saved" : "Черновата е записана",
|
||||
"Unsaved changes" : "Незаписани промени",
|
||||
"Refresh" : "Опресняване",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Retry" : "Опитай отново",
|
||||
"Error" : "Грешка",
|
||||
"Searching …" : "Търсене ...",
|
||||
|
||||
@@ -21,6 +21,7 @@ OC.L10N.register(
|
||||
"Delete" : "Dilemel",
|
||||
"Save" : "Enrollañ",
|
||||
"Title" : "Titl",
|
||||
"Unsaved changes" : "Kemmoù n'int ket bet enrollet",
|
||||
"Refresh" : "Freskaat",
|
||||
"Retry" : "Klaskit en dro",
|
||||
"Error" : "Fazi",
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
"Delete" : "Dilemel",
|
||||
"Save" : "Enrollañ",
|
||||
"Title" : "Titl",
|
||||
"Unsaved changes" : "Kemmoù n'int ket bet enrollet",
|
||||
"Refresh" : "Freskaat",
|
||||
"Retry" : "Klaskit en dro",
|
||||
"Error" : "Fazi",
|
||||
|
||||
@@ -11,6 +11,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Text subratllat",
|
||||
"Forum" : "Fòrum",
|
||||
"Deleted user" : "Usuari suprimit",
|
||||
"Loading …" : "S'està carregant…",
|
||||
"Search" : "Cercar",
|
||||
"Home" : "Casa",
|
||||
"Bookmarks" : "Adreces d'interès",
|
||||
@@ -48,9 +49,9 @@ OC.L10N.register(
|
||||
"Title" : "Títol",
|
||||
"Saving draft …" : "S'està desant l'esborrany …",
|
||||
"Draft saved" : "S'ha desat l'esborrany",
|
||||
"Unsaved changes" : "Hi ha canvis sense desar",
|
||||
"Back to home" : "Tornar a l'inici",
|
||||
"Refresh" : "Actualitza",
|
||||
"Loading …" : "S'està carregant…",
|
||||
"Retry" : "Torna-ho a provar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "S'està cercant…",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"Underlined text" : "Text subratllat",
|
||||
"Forum" : "Fòrum",
|
||||
"Deleted user" : "Usuari suprimit",
|
||||
"Loading …" : "S'està carregant…",
|
||||
"Search" : "Cercar",
|
||||
"Home" : "Casa",
|
||||
"Bookmarks" : "Adreces d'interès",
|
||||
@@ -46,9 +47,9 @@
|
||||
"Title" : "Títol",
|
||||
"Saving draft …" : "S'està desant l'esborrany …",
|
||||
"Draft saved" : "S'ha desat l'esborrany",
|
||||
"Unsaved changes" : "Hi ha canvis sense desar",
|
||||
"Back to home" : "Tornar a l'inici",
|
||||
"Refresh" : "Actualitza",
|
||||
"Loading …" : "S'està carregant…",
|
||||
"Retry" : "Torna-ho a provar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "S'està cercant…",
|
||||
|
||||
@@ -41,6 +41,7 @@ OC.L10N.register(
|
||||
"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",
|
||||
"Loading …" : "Načítání …",
|
||||
"Search" : "Hledat",
|
||||
"Home" : "Domů",
|
||||
"Bookmarks" : "Záložky",
|
||||
@@ -156,7 +157,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Neuložené změny",
|
||||
"Back to home" : "Zpět na začátek",
|
||||
"Refresh" : "Znovu načíst",
|
||||
"Loading …" : "Načítání …",
|
||||
"Retry" : "Zkusit znovu",
|
||||
"An unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||
"No categories yet" : "Zatím ještě žádné kategorie",
|
||||
|
||||
@@ -39,6 +39,7 @@
|
||||
"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",
|
||||
"Loading …" : "Načítání …",
|
||||
"Search" : "Hledat",
|
||||
"Home" : "Domů",
|
||||
"Bookmarks" : "Záložky",
|
||||
@@ -154,7 +155,6 @@
|
||||
"Unsaved changes" : "Neuložené změny",
|
||||
"Back to home" : "Zpět na začátek",
|
||||
"Refresh" : "Znovu načíst",
|
||||
"Loading …" : "Načítání …",
|
||||
"Retry" : "Zkusit znovu",
|
||||
"An unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||
"No categories yet" : "Zatím ještě žádné kategorie",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Bold text" : "Fed tekst",
|
||||
"Underlined text" : "Understreget tekst",
|
||||
"Forum" : "Forum",
|
||||
"Loading …" : "Indlæser ...",
|
||||
"Search" : "Søg",
|
||||
"Home" : "Hjem",
|
||||
"Bookmarks" : "Bogmærker",
|
||||
@@ -47,7 +48,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Ikke gemte ændringer",
|
||||
"Back to home" : "Tilbage til hjem ",
|
||||
"Refresh" : "Opdatér",
|
||||
"Loading …" : "Indlæser ...",
|
||||
"Retry" : "Prøv igen",
|
||||
"Error" : "Fejl",
|
||||
"Searching …" : "Søger …",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Bold text" : "Fed tekst",
|
||||
"Underlined text" : "Understreget tekst",
|
||||
"Forum" : "Forum",
|
||||
"Loading …" : "Indlæser ...",
|
||||
"Search" : "Søg",
|
||||
"Home" : "Hjem",
|
||||
"Bookmarks" : "Bogmærker",
|
||||
@@ -45,7 +46,6 @@
|
||||
"Unsaved changes" : "Ikke gemte ændringer",
|
||||
"Back to home" : "Tilbage til hjem ",
|
||||
"Refresh" : "Opdatér",
|
||||
"Loading …" : "Indlæser ...",
|
||||
"Retry" : "Prøv igen",
|
||||
"Error" : "Fejl",
|
||||
"Searching …" : "Søger …",
|
||||
|
||||
10
l10n/de.js
10
l10n/de.js
@@ -27,7 +27,7 @@ OC.L10N.register(
|
||||
"Create and reply to threads" : "Themen 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",
|
||||
"Attach files from your Nextcloud storage" : "Dateien aus deinem Nextcloud-Speicher hinzufügen",
|
||||
"React to posts" : "Auf Beiträge reagieren",
|
||||
"Track read/unread threads" : "Gelesene/ungelesene Themen verfolgen",
|
||||
"BBCode examples:" : "BBCode-Beispiele:",
|
||||
@@ -42,7 +42,8 @@ OC.L10N.register(
|
||||
"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 Themen 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.",
|
||||
"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 meldealle Probleme auf GitHub und erstelle regelmäßig Backups deiner 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 Themen 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.",
|
||||
"Loading …" : "Lade …",
|
||||
"Search" : "Suche",
|
||||
"Home" : "Startseite",
|
||||
"Bookmarks" : "Lesezeichen",
|
||||
@@ -163,7 +164,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Nicht gespeicherte Änderungen",
|
||||
"Back to home" : "Zurück zur Hauptseite",
|
||||
"Refresh" : "Aktualisieren",
|
||||
"Loading …" : "Lade …",
|
||||
"Your bookmarked threads" : "Deine, mit Lesezeichen versehenen, Themen",
|
||||
"Error loading bookmarks" : "Fehler beim Laden der Lesezeichen",
|
||||
"No bookmarks yet" : "Bislang keine Lesezeichen",
|
||||
@@ -280,8 +280,8 @@ OC.L10N.register(
|
||||
"Preferences saved" : "Einstellungen gespeichert",
|
||||
"Signature" : "Signatur",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Deine Signatur erscheint am Ende deiner Themen oder Antworten",
|
||||
"You can use BBCode formatting in your signature" : "Sie können die BBCode-Formatierung in Ihrer Signatur verwenden",
|
||||
"Enter your signature …" : "Geben Sie Ihre Signatur ein …",
|
||||
"You can use BBCode formatting in your signature" : "Du kannst die BBCode-Formatierung in deiner Signatur verwenden",
|
||||
"Enter your signature …" : "Gebe deine Signatur ein …",
|
||||
"Failed to save preferences" : "Einstellungen konnten nicht gespeichert werden",
|
||||
"Select upload directory" : "Hochladeverzeichnis auswählen",
|
||||
"BBCode management" : "BBCode-Verwaltung",
|
||||
|
||||
10
l10n/de.json
10
l10n/de.json
@@ -25,7 +25,7 @@
|
||||
"Create and reply to threads" : "Themen 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",
|
||||
"Attach files from your Nextcloud storage" : "Dateien aus deinem Nextcloud-Speicher hinzufügen",
|
||||
"React to posts" : "Auf Beiträge reagieren",
|
||||
"Track read/unread threads" : "Gelesene/ungelesene Themen verfolgen",
|
||||
"BBCode examples:" : "BBCode-Beispiele:",
|
||||
@@ -40,7 +40,8 @@
|
||||
"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 Themen 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.",
|
||||
"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 meldealle Probleme auf GitHub und erstelle regelmäßig Backups deiner 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 Themen 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.",
|
||||
"Loading …" : "Lade …",
|
||||
"Search" : "Suche",
|
||||
"Home" : "Startseite",
|
||||
"Bookmarks" : "Lesezeichen",
|
||||
@@ -161,7 +162,6 @@
|
||||
"Unsaved changes" : "Nicht gespeicherte Änderungen",
|
||||
"Back to home" : "Zurück zur Hauptseite",
|
||||
"Refresh" : "Aktualisieren",
|
||||
"Loading …" : "Lade …",
|
||||
"Your bookmarked threads" : "Deine, mit Lesezeichen versehenen, Themen",
|
||||
"Error loading bookmarks" : "Fehler beim Laden der Lesezeichen",
|
||||
"No bookmarks yet" : "Bislang keine Lesezeichen",
|
||||
@@ -278,8 +278,8 @@
|
||||
"Preferences saved" : "Einstellungen gespeichert",
|
||||
"Signature" : "Signatur",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Deine Signatur erscheint am Ende deiner Themen oder Antworten",
|
||||
"You can use BBCode formatting in your signature" : "Sie können die BBCode-Formatierung in Ihrer Signatur verwenden",
|
||||
"Enter your signature …" : "Geben Sie Ihre Signatur ein …",
|
||||
"You can use BBCode formatting in your signature" : "Du kannst die BBCode-Formatierung in deiner Signatur verwenden",
|
||||
"Enter your signature …" : "Gebe deine Signatur ein …",
|
||||
"Failed to save preferences" : "Einstellungen konnten nicht gespeichert werden",
|
||||
"Select upload directory" : "Hochladeverzeichnis auswählen",
|
||||
"BBCode management" : "BBCode-Verwaltung",
|
||||
|
||||
@@ -43,6 +43,7 @@ OC.L10N.register(
|
||||
"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 Themen 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.",
|
||||
"Loading …" : "Lade …",
|
||||
"Search" : "Suche",
|
||||
"Home" : "Startseite",
|
||||
"Bookmarks" : "Lesezeichen",
|
||||
@@ -142,7 +143,7 @@ OC.L10N.register(
|
||||
"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 ...",
|
||||
"Write your reply …" : "Ihre Antwort schreiben ...",
|
||||
"Submit reply" : "Antwort absenden",
|
||||
"Are you sure you want to discard your reply?" : "Soll Ihre Antwort wirklich verworfen werden?",
|
||||
"In thread" : "Im Thema",
|
||||
@@ -163,7 +164,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Nicht gespeicherte Änderungen",
|
||||
"Back to home" : "Zurück zum Start",
|
||||
"Refresh" : "Aktualisieren",
|
||||
"Loading …" : "Lade …",
|
||||
"Your bookmarked threads" : "Ihre, mit Lesezeichen versehenen, Themen",
|
||||
"Error loading bookmarks" : "Fehler beim Laden der Lesezeichen",
|
||||
"No bookmarks yet" : "Bislang keine Lesezeichen",
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
"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 Themen 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.",
|
||||
"Loading …" : "Lade …",
|
||||
"Search" : "Suche",
|
||||
"Home" : "Startseite",
|
||||
"Bookmarks" : "Lesezeichen",
|
||||
@@ -140,7 +141,7 @@
|
||||
"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 ...",
|
||||
"Write your reply …" : "Ihre Antwort schreiben ...",
|
||||
"Submit reply" : "Antwort absenden",
|
||||
"Are you sure you want to discard your reply?" : "Soll Ihre Antwort wirklich verworfen werden?",
|
||||
"In thread" : "Im Thema",
|
||||
@@ -161,7 +162,6 @@
|
||||
"Unsaved changes" : "Nicht gespeicherte Änderungen",
|
||||
"Back to home" : "Zurück zum Start",
|
||||
"Refresh" : "Aktualisieren",
|
||||
"Loading …" : "Lade …",
|
||||
"Your bookmarked threads" : "Ihre, mit Lesezeichen versehenen, Themen",
|
||||
"Error loading bookmarks" : "Fehler beim Laden der Lesezeichen",
|
||||
"No bookmarks yet" : "Bislang keine Lesezeichen",
|
||||
|
||||
@@ -11,6 +11,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Υπογραμμισμένο κείμενο",
|
||||
"Forum" : "Φόρουμ",
|
||||
"Deleted user" : "Διαγραμμένος χρήστης",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Search" : "Αναζήτηση",
|
||||
"Home" : "Αρχική",
|
||||
"Bookmarks" : "Σελιδοδείκτες",
|
||||
@@ -55,7 +56,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Το πρόχειρο αποθηκεύτηκε",
|
||||
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
|
||||
"Refresh" : "Ανανέωση",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Retry" : "Δοκιμή ξανά",
|
||||
"In {category}" : "Στη συνομιλία {category}",
|
||||
"Error" : "Σφάλμα",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"Underlined text" : "Υπογραμμισμένο κείμενο",
|
||||
"Forum" : "Φόρουμ",
|
||||
"Deleted user" : "Διαγραμμένος χρήστης",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Search" : "Αναζήτηση",
|
||||
"Home" : "Αρχική",
|
||||
"Bookmarks" : "Σελιδοδείκτες",
|
||||
@@ -53,7 +54,6 @@
|
||||
"Draft saved" : "Το πρόχειρο αποθηκεύτηκε",
|
||||
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
|
||||
"Refresh" : "Ανανέωση",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Retry" : "Δοκιμή ξανά",
|
||||
"In {category}" : "Στη συνομιλία {category}",
|
||||
"Error" : "Σφάλμα",
|
||||
|
||||
@@ -43,6 +43,7 @@ OC.L10N.register(
|
||||
"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.",
|
||||
"Loading …" : "Loading …",
|
||||
"Search" : "Search",
|
||||
"Home" : "Home",
|
||||
"Bookmarks" : "Bookmarks",
|
||||
@@ -163,7 +164,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Unsaved changes",
|
||||
"Back to home" : "Back to home",
|
||||
"Refresh" : "Refresh",
|
||||
"Loading …" : "Loading …",
|
||||
"Your bookmarked threads" : "Your bookmarked threads",
|
||||
"Error loading bookmarks" : "Error loading bookmarks",
|
||||
"No bookmarks yet" : "No bookmarks yet",
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
"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.",
|
||||
"Loading …" : "Loading …",
|
||||
"Search" : "Search",
|
||||
"Home" : "Home",
|
||||
"Bookmarks" : "Bookmarks",
|
||||
@@ -161,7 +162,6 @@
|
||||
"Unsaved changes" : "Unsaved changes",
|
||||
"Back to home" : "Back to home",
|
||||
"Refresh" : "Refresh",
|
||||
"Loading …" : "Loading …",
|
||||
"Your bookmarked threads" : "Your bookmarked threads",
|
||||
"Error loading bookmarks" : "Error loading bookmarks",
|
||||
"No bookmarks yet" : "No bookmarks yet",
|
||||
|
||||
@@ -6,6 +6,7 @@ OC.L10N.register(
|
||||
"User" : "Uzanto",
|
||||
"General" : "Ĝenerala",
|
||||
"Forum" : "Forumo",
|
||||
"Loading …" : "Ŝargado...",
|
||||
"Search" : "Serĉi",
|
||||
"Home" : "Hejmo",
|
||||
"Bookmarks" : "Legosignaro",
|
||||
@@ -28,7 +29,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Malneto konservita",
|
||||
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
|
||||
"Refresh" : "Aktualigi",
|
||||
"Loading …" : "Ŝargado...",
|
||||
"Retry" : "Reprovi",
|
||||
"Error" : "Eraro",
|
||||
"Searching …" : "Serĉado ...",
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
"User" : "Uzanto",
|
||||
"General" : "Ĝenerala",
|
||||
"Forum" : "Forumo",
|
||||
"Loading …" : "Ŝargado...",
|
||||
"Search" : "Serĉi",
|
||||
"Home" : "Hejmo",
|
||||
"Bookmarks" : "Legosignaro",
|
||||
@@ -26,7 +27,6 @@
|
||||
"Draft saved" : "Malneto konservita",
|
||||
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
|
||||
"Refresh" : "Aktualigi",
|
||||
"Loading …" : "Ŝargado...",
|
||||
"Retry" : "Reprovi",
|
||||
"Error" : "Eraro",
|
||||
"Searching …" : "Serĉado ...",
|
||||
|
||||
@@ -12,6 +12,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
@@ -54,7 +55,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Borrador guardado",
|
||||
"Unsaved changes" : "Cambios sin guardar",
|
||||
"Refresh" : "Refrescar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"In {category}" : "En {category}",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
@@ -52,7 +53,6 @@
|
||||
"Draft saved" : "Borrador guardado",
|
||||
"Unsaved changes" : "Cambios sin guardar",
|
||||
"Refresh" : "Refrescar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"In {category}" : "En {category}",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -40,6 +40,7 @@ OC.L10N.register(
|
||||
"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.",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
@@ -136,7 +137,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Borrador guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"An unexpected error occurred" : "Ocurrió un error inesperado",
|
||||
"No categories yet" : "Aún no hay categorías",
|
||||
|
||||
@@ -38,6 +38,7 @@
|
||||
"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.",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
@@ -134,7 +135,6 @@
|
||||
"Draft saved" : "Borrador guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"An unexpected error occurred" : "Ocurrió un error inesperado",
|
||||
"No categories yet" : "Aún no hay categorías",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Bold text" : "Texto en negritas",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
@@ -38,7 +39,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Back to home" : "Regresar al inicio",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando …",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Bold text" : "Texto en negritas",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
@@ -36,7 +37,6 @@
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Back to home" : "Regresar al inicio",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando …",
|
||||
|
||||
@@ -42,6 +42,7 @@ OC.L10N.register(
|
||||
"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.",
|
||||
"Loading …" : "Laadin...",
|
||||
"Search" : "Otsi",
|
||||
"Home" : "Avaleht",
|
||||
"Bookmarks" : "Järjehoidjad",
|
||||
@@ -162,7 +163,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Salvestamata muutused",
|
||||
"Back to home" : "Tagasi avalehele",
|
||||
"Refresh" : "Värskenda",
|
||||
"Loading …" : "Laadin...",
|
||||
"Your bookmarked threads" : "Jutulõngad, millele oled lisanud järjehoidja",
|
||||
"Error loading bookmarks" : "Viga järjehoidja lisamisel",
|
||||
"No bookmarks yet" : "Järjehoidjaid veel ei leidu",
|
||||
@@ -359,7 +359,7 @@ OC.L10N.register(
|
||||
"New threads" : "Uued jutulõngad",
|
||||
"New replies" : "Uued vastused",
|
||||
"Top contributors" : "Toimekamad kaasautorid",
|
||||
"No contributors yet" : "Kkaasautoreid veel pole",
|
||||
"No contributors yet" : "Kaasautoreid veel pole",
|
||||
"Last 7 days" : "Viimase 7 päeva jooksul",
|
||||
"All time" : "Läbi aegade",
|
||||
"General settings" : "Üldised seadistused",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"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.",
|
||||
"Loading …" : "Laadin...",
|
||||
"Search" : "Otsi",
|
||||
"Home" : "Avaleht",
|
||||
"Bookmarks" : "Järjehoidjad",
|
||||
@@ -160,7 +161,6 @@
|
||||
"Unsaved changes" : "Salvestamata muutused",
|
||||
"Back to home" : "Tagasi avalehele",
|
||||
"Refresh" : "Värskenda",
|
||||
"Loading …" : "Laadin...",
|
||||
"Your bookmarked threads" : "Jutulõngad, millele oled lisanud järjehoidja",
|
||||
"Error loading bookmarks" : "Viga järjehoidja lisamisel",
|
||||
"No bookmarks yet" : "Järjehoidjaid veel ei leidu",
|
||||
@@ -357,7 +357,7 @@
|
||||
"New threads" : "Uued jutulõngad",
|
||||
"New replies" : "Uued vastused",
|
||||
"Top contributors" : "Toimekamad kaasautorid",
|
||||
"No contributors yet" : "Kkaasautoreid veel pole",
|
||||
"No contributors yet" : "Kaasautoreid veel pole",
|
||||
"Last 7 days" : "Viimase 7 päeva jooksul",
|
||||
"All time" : "Läbi aegade",
|
||||
"General settings" : "Üldised seadistused",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Azpimarratutako testua",
|
||||
"Forum" : "Foroa",
|
||||
"Deleted user" : "Ezabatutako erabiltzaileak",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Search" : "Bilatu",
|
||||
"Home" : "Etxea",
|
||||
"Bookmarks" : "Laster-markak",
|
||||
@@ -50,7 +51,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Gorde gabeko aldaketak",
|
||||
"Back to home" : "Itzuli etxera",
|
||||
"Refresh" : "Freskatu",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Retry" : "saiatu berriro",
|
||||
"Error" : "Errorea",
|
||||
"Searching …" : "Bilatzen…",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Underlined text" : "Azpimarratutako testua",
|
||||
"Forum" : "Foroa",
|
||||
"Deleted user" : "Ezabatutako erabiltzaileak",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Search" : "Bilatu",
|
||||
"Home" : "Etxea",
|
||||
"Bookmarks" : "Laster-markak",
|
||||
@@ -48,7 +49,6 @@
|
||||
"Unsaved changes" : "Gorde gabeko aldaketak",
|
||||
"Back to home" : "Itzuli etxera",
|
||||
"Refresh" : "Freskatu",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Retry" : "saiatu berriro",
|
||||
"Error" : "Errorea",
|
||||
"Searching …" : "Bilatzen…",
|
||||
|
||||
@@ -10,6 +10,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Underlined text",
|
||||
"Forum" : "انجمن",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Search" : "جستجو",
|
||||
"Home" : "خانه",
|
||||
"Bookmarks" : "نشانکها",
|
||||
@@ -45,7 +46,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "پیش نویس ذخیره شد",
|
||||
"Unsaved changes" : "Unsaved changes",
|
||||
"Refresh" : "تازهسازی",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Retry" : "تلاش دوباره",
|
||||
"Error" : "خطا",
|
||||
"Searching …" : "جستجوکردن …",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
"Underlined text" : "Underlined text",
|
||||
"Forum" : "انجمن",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Search" : "جستجو",
|
||||
"Home" : "خانه",
|
||||
"Bookmarks" : "نشانکها",
|
||||
@@ -43,7 +44,6 @@
|
||||
"Draft saved" : "پیش نویس ذخیره شد",
|
||||
"Unsaved changes" : "Unsaved changes",
|
||||
"Refresh" : "تازهسازی",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Retry" : "تلاش دوباره",
|
||||
"Error" : "خطا",
|
||||
"Searching …" : "جستجوکردن …",
|
||||
|
||||
@@ -10,6 +10,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Alleviivattu teksti",
|
||||
"Forum" : "Keskustelupalsta",
|
||||
"Deleted user" : "Poistettu käyttäjä",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Search" : "Etsi",
|
||||
"Home" : "Koti",
|
||||
"Bookmarks" : "Kirjanmerkit",
|
||||
@@ -48,7 +49,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Luonnos tallennettu",
|
||||
"Unsaved changes" : "Tallentamattomia muutoksia",
|
||||
"Refresh" : "Päivitä",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Retry" : "Yritä uudelleen",
|
||||
"Error" : "Virhe",
|
||||
"Searching …" : "Haetaan…",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
"Underlined text" : "Alleviivattu teksti",
|
||||
"Forum" : "Keskustelupalsta",
|
||||
"Deleted user" : "Poistettu käyttäjä",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Search" : "Etsi",
|
||||
"Home" : "Koti",
|
||||
"Bookmarks" : "Kirjanmerkit",
|
||||
@@ -46,7 +47,6 @@
|
||||
"Draft saved" : "Luonnos tallennettu",
|
||||
"Unsaved changes" : "Tallentamattomia muutoksia",
|
||||
"Refresh" : "Päivitä",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Retry" : "Yritä uudelleen",
|
||||
"Error" : "Virhe",
|
||||
"Searching …" : "Haetaan…",
|
||||
|
||||
@@ -10,6 +10,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Texte souligné",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilisateur supprimé",
|
||||
"Loading …" : "Chargement…",
|
||||
"Search" : "Rechercher",
|
||||
"Home" : "Accueil",
|
||||
"Bookmarks" : "Favoris",
|
||||
@@ -53,7 +54,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Modifications non enregistrées",
|
||||
"Back to home" : "Retour à l'accueil",
|
||||
"Refresh" : "Actualiser",
|
||||
"Loading …" : "Chargement…",
|
||||
"Retry" : "Réessayer",
|
||||
"In {category}" : "Dans {category}",
|
||||
"Error" : "Erreur",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
"Underlined text" : "Texte souligné",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilisateur supprimé",
|
||||
"Loading …" : "Chargement…",
|
||||
"Search" : "Rechercher",
|
||||
"Home" : "Accueil",
|
||||
"Bookmarks" : "Favoris",
|
||||
@@ -51,7 +52,6 @@
|
||||
"Unsaved changes" : "Modifications non enregistrées",
|
||||
"Back to home" : "Retour à l'accueil",
|
||||
"Refresh" : "Actualiser",
|
||||
"Loading …" : "Chargement…",
|
||||
"Retry" : "Réessayer",
|
||||
"In {category}" : "Dans {category}",
|
||||
"Error" : "Erreur",
|
||||
|
||||
@@ -43,6 +43,7 @@ OC.L10N.register(
|
||||
"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.",
|
||||
"Loading …" : "Á lódáil…",
|
||||
"Search" : "Cuardach",
|
||||
"Home" : "Baile",
|
||||
"Bookmarks" : "Leabharmharcanna",
|
||||
@@ -163,7 +164,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Athruithe gan sábháil",
|
||||
"Back to home" : "Ar ais sa bhaile",
|
||||
"Refresh" : "Athnuaigh",
|
||||
"Loading …" : "Á lódáil…",
|
||||
"Your bookmarked threads" : "Do shnáitheanna leabharmharcáilte",
|
||||
"Error loading bookmarks" : "Earráid ag luchtú leabharmharcanna",
|
||||
"No bookmarks yet" : "Gan aon leabharmharcanna fós",
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
"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.",
|
||||
"Loading …" : "Á lódáil…",
|
||||
"Search" : "Cuardach",
|
||||
"Home" : "Baile",
|
||||
"Bookmarks" : "Leabharmharcanna",
|
||||
@@ -161,7 +162,6 @@
|
||||
"Unsaved changes" : "Athruithe gan sábháil",
|
||||
"Back to home" : "Ar ais sa bhaile",
|
||||
"Refresh" : "Athnuaigh",
|
||||
"Loading …" : "Á lódáil…",
|
||||
"Your bookmarked threads" : "Do shnáitheanna leabharmharcáilte",
|
||||
"Error loading bookmarks" : "Earráid ag luchtú leabharmharcanna",
|
||||
"No bookmarks yet" : "Gan aon leabharmharcanna fós",
|
||||
|
||||
@@ -43,6 +43,7 @@ OC.L10N.register(
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud",
|
||||
"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.",
|
||||
"Loading …" : "Cargando…",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
@@ -163,7 +164,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Cambios sen gardar",
|
||||
"Back to home" : "Volver ao inicio",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando…",
|
||||
"Your bookmarked threads" : "Os sus fíos marcados",
|
||||
"Error loading bookmarks" : "Produciuse un erro ao cargar os marcadores",
|
||||
"No bookmarks yet" : "Aínda non hai marcadores. ",
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
"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.",
|
||||
"Loading …" : "Cargando…",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
@@ -161,7 +162,6 @@
|
||||
"Unsaved changes" : "Cambios sen gardar",
|
||||
"Back to home" : "Volver ao inicio",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando…",
|
||||
"Your bookmarked threads" : "Os sus fíos marcados",
|
||||
"Error loading bookmarks" : "Produciuse un erro ao cargar os marcadores",
|
||||
"No bookmarks yet" : "Aínda non hai marcadores. ",
|
||||
|
||||
@@ -38,6 +38,7 @@ OC.L10N.register(
|
||||
"Welcome to the forum!" : "ברוכים הבאים לפורום!",
|
||||
"Deleted user" : "משתמש מחוק",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "פורום מונחה-קהילה מובנה ישירות להתקנת ה Nextcloud שלכם.",
|
||||
"Loading …" : "בטעינה…",
|
||||
"Search" : "חיפוש",
|
||||
"Home" : "בית",
|
||||
"Bookmarks" : "סימניות",
|
||||
@@ -121,7 +122,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "הטיוטה נשמרה",
|
||||
"Unsaved changes" : "שינויים שלא נשמרו",
|
||||
"Refresh" : "רענון",
|
||||
"Loading …" : "בטעינה…",
|
||||
"Retry" : "ניסיון חוזר",
|
||||
"Error" : "שגיאה",
|
||||
"Searching …" : "מתבצע חיפוש…",
|
||||
|
||||
@@ -36,6 +36,7 @@
|
||||
"Welcome to the forum!" : "ברוכים הבאים לפורום!",
|
||||
"Deleted user" : "משתמש מחוק",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "פורום מונחה-קהילה מובנה ישירות להתקנת ה Nextcloud שלכם.",
|
||||
"Loading …" : "בטעינה…",
|
||||
"Search" : "חיפוש",
|
||||
"Home" : "בית",
|
||||
"Bookmarks" : "סימניות",
|
||||
@@ -119,7 +120,6 @@
|
||||
"Draft saved" : "הטיוטה נשמרה",
|
||||
"Unsaved changes" : "שינויים שלא נשמרו",
|
||||
"Refresh" : "רענון",
|
||||
"Loading …" : "בטעינה…",
|
||||
"Retry" : "ניסיון חוזר",
|
||||
"Error" : "שגיאה",
|
||||
"Searching …" : "מתבצע חיפוש…",
|
||||
|
||||
@@ -7,6 +7,7 @@ OC.L10N.register(
|
||||
"Support" : "Podrška",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Izbrisan korisnik",
|
||||
"Loading …" : "Učitavanje…",
|
||||
"Search" : "Traži",
|
||||
"Home" : "Doma",
|
||||
"Bookmarks" : "Knjižne oznake",
|
||||
@@ -36,7 +37,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Skica je spremljena",
|
||||
"Unsaved changes" : "Nespremljene promjene",
|
||||
"Refresh" : "Osvježi",
|
||||
"Loading …" : "Učitavanje…",
|
||||
"Error" : "Pogreška",
|
||||
"Searching …" : "Traženje…",
|
||||
"No results found" : "Nema rezultata",
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
"Support" : "Podrška",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Izbrisan korisnik",
|
||||
"Loading …" : "Učitavanje…",
|
||||
"Search" : "Traži",
|
||||
"Home" : "Doma",
|
||||
"Bookmarks" : "Knjižne oznake",
|
||||
@@ -34,7 +35,6 @@
|
||||
"Draft saved" : "Skica je spremljena",
|
||||
"Unsaved changes" : "Nespremljene promjene",
|
||||
"Refresh" : "Osvježi",
|
||||
"Loading …" : "Učitavanje…",
|
||||
"Error" : "Pogreška",
|
||||
"Searching …" : "Traženje…",
|
||||
"No results found" : "Nema rezultata",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Aláhúzott szöveg",
|
||||
"Forum" : "Fórum",
|
||||
"Deleted user" : "Törölt felhasználó",
|
||||
"Loading …" : "Betöltés…",
|
||||
"Search" : "Keresés",
|
||||
"Home" : "Kezdőlap",
|
||||
"Bookmarks" : "Könyvjelzők",
|
||||
@@ -52,7 +53,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Mentetlen változtatások",
|
||||
"Back to home" : "Vissza a kezdőlapra",
|
||||
"Refresh" : "Frissítés",
|
||||
"Loading …" : "Betöltés…",
|
||||
"Retry" : "Újra",
|
||||
"In {category}" : "Ebben: {category}",
|
||||
"Error" : "Hiba",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Underlined text" : "Aláhúzott szöveg",
|
||||
"Forum" : "Fórum",
|
||||
"Deleted user" : "Törölt felhasználó",
|
||||
"Loading …" : "Betöltés…",
|
||||
"Search" : "Keresés",
|
||||
"Home" : "Kezdőlap",
|
||||
"Bookmarks" : "Könyvjelzők",
|
||||
@@ -50,7 +51,6 @@
|
||||
"Unsaved changes" : "Mentetlen változtatások",
|
||||
"Back to home" : "Vissza a kezdőlapra",
|
||||
"Refresh" : "Frissítés",
|
||||
"Loading …" : "Betöltés…",
|
||||
"Retry" : "Újra",
|
||||
"In {category}" : "Ebben: {category}",
|
||||
"Error" : "Hiba",
|
||||
|
||||
@@ -6,6 +6,7 @@ OC.L10N.register(
|
||||
"Guest" : "Tamu",
|
||||
"General" : "Umum",
|
||||
"Forum" : "Forum",
|
||||
"Loading …" : "Memuat …",
|
||||
"Search" : "Cari",
|
||||
"Home" : "Beranda",
|
||||
"Bookmarks" : "Markah",
|
||||
@@ -33,7 +34,6 @@ OC.L10N.register(
|
||||
"Views" : "Tampilan",
|
||||
"Unsaved changes" : "Perubahan belum disimpan",
|
||||
"Refresh" : "Muat ulang",
|
||||
"Loading …" : "Memuat …",
|
||||
"Retry" : "Ulangi",
|
||||
"Error" : "Galat",
|
||||
"Back to {category}" : "Kembali ke {category}",
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
"Guest" : "Tamu",
|
||||
"General" : "Umum",
|
||||
"Forum" : "Forum",
|
||||
"Loading …" : "Memuat …",
|
||||
"Search" : "Cari",
|
||||
"Home" : "Beranda",
|
||||
"Bookmarks" : "Markah",
|
||||
@@ -31,7 +32,6 @@
|
||||
"Views" : "Tampilan",
|
||||
"Unsaved changes" : "Perubahan belum disimpan",
|
||||
"Refresh" : "Muat ulang",
|
||||
"Loading …" : "Memuat …",
|
||||
"Retry" : "Ulangi",
|
||||
"Error" : "Galat",
|
||||
"Back to {category}" : "Kembali ke {category}",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Bold text" : "Feitletraður texti",
|
||||
"Underlined text" : "Undirstrikaður texti",
|
||||
"Forum" : "Vefspjall",
|
||||
"Loading …" : "Hleð inn …",
|
||||
"Search" : "Search",
|
||||
"Home" : "Heim",
|
||||
"Bookmarks" : "Bókamerki",
|
||||
@@ -42,7 +43,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Óvistaðar breytingar",
|
||||
"Back to home" : "Til baka á upphafssíðu",
|
||||
"Refresh" : "Endurnýja",
|
||||
"Loading …" : "Hleð inn …",
|
||||
"Retry" : "Reyna aftur",
|
||||
"Error" : "Villa",
|
||||
"Searching …" : "Leita …",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Bold text" : "Feitletraður texti",
|
||||
"Underlined text" : "Undirstrikaður texti",
|
||||
"Forum" : "Vefspjall",
|
||||
"Loading …" : "Hleð inn …",
|
||||
"Search" : "Search",
|
||||
"Home" : "Heim",
|
||||
"Bookmarks" : "Bókamerki",
|
||||
@@ -40,7 +41,6 @@
|
||||
"Unsaved changes" : "Óvistaðar breytingar",
|
||||
"Back to home" : "Til baka á upphafssíðu",
|
||||
"Refresh" : "Endurnýja",
|
||||
"Loading …" : "Hleð inn …",
|
||||
"Retry" : "Reyna aftur",
|
||||
"Error" : "Villa",
|
||||
"Searching …" : "Leita …",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Testo sottolineato",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utente eliminato",
|
||||
"Loading …" : "Caricamento…",
|
||||
"Search" : "Cerca",
|
||||
"Home" : "Home",
|
||||
"Bookmarks" : "Segnalibri",
|
||||
@@ -49,7 +50,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Bozza salvata",
|
||||
"Unsaved changes" : "Modifiche non salvate",
|
||||
"Refresh" : "Aggiorna",
|
||||
"Loading …" : "Caricamento…",
|
||||
"Retry" : "Riprova",
|
||||
"In {category}" : "In {category}",
|
||||
"Error" : "Errore",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Underlined text" : "Testo sottolineato",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utente eliminato",
|
||||
"Loading …" : "Caricamento…",
|
||||
"Search" : "Cerca",
|
||||
"Home" : "Home",
|
||||
"Bookmarks" : "Segnalibri",
|
||||
@@ -47,7 +48,6 @@
|
||||
"Draft saved" : "Bozza salvata",
|
||||
"Unsaved changes" : "Modifiche non salvate",
|
||||
"Refresh" : "Aggiorna",
|
||||
"Loading …" : "Caricamento…",
|
||||
"Retry" : "Riprova",
|
||||
"In {category}" : "In {category}",
|
||||
"Error" : "Errore",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "下線を引きたい文字",
|
||||
"Forum" : "フォーラム",
|
||||
"Deleted user" : "ユーザーを削除",
|
||||
"Loading …" : "読み込み中…",
|
||||
"Search" : "検索",
|
||||
"Home" : "ホーム",
|
||||
"Bookmarks" : "ブックマーク",
|
||||
@@ -46,7 +47,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "未保存の変更点",
|
||||
"Back to home" : "ホーム画面に戻る",
|
||||
"Refresh" : "更新",
|
||||
"Loading …" : "読み込み中…",
|
||||
"Retry" : "リトライ",
|
||||
"Error" : "エラー",
|
||||
"Searching …" : "検索しています…",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Underlined text" : "下線を引きたい文字",
|
||||
"Forum" : "フォーラム",
|
||||
"Deleted user" : "ユーザーを削除",
|
||||
"Loading …" : "読み込み中…",
|
||||
"Search" : "検索",
|
||||
"Home" : "ホーム",
|
||||
"Bookmarks" : "ブックマーク",
|
||||
@@ -44,7 +45,6 @@
|
||||
"Unsaved changes" : "未保存の変更点",
|
||||
"Back to home" : "ホーム画面に戻る",
|
||||
"Refresh" : "更新",
|
||||
"Loading …" : "読み込み中…",
|
||||
"Retry" : "リトライ",
|
||||
"Error" : "エラー",
|
||||
"Searching …" : "検索しています…",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"General" : "General",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Loading …" : "Loading …",
|
||||
"Search" : "ძიება",
|
||||
"Home" : "მთავარი",
|
||||
"Dashboard" : "Dashboard",
|
||||
@@ -37,7 +38,6 @@ OC.L10N.register(
|
||||
"Saving draft …" : "Saving draft …",
|
||||
"Draft saved" : "Draft saved",
|
||||
"Refresh" : "Refresh",
|
||||
"Loading …" : "Loading …",
|
||||
"Retry" : "Retry",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Searching …",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"General" : "General",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Loading …" : "Loading …",
|
||||
"Search" : "ძიება",
|
||||
"Home" : "მთავარი",
|
||||
"Dashboard" : "Dashboard",
|
||||
@@ -35,7 +36,6 @@
|
||||
"Saving draft …" : "Saving draft …",
|
||||
"Draft saved" : "Draft saved",
|
||||
"Refresh" : "Refresh",
|
||||
"Loading …" : "Loading …",
|
||||
"Retry" : "Retry",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Searching …",
|
||||
|
||||
@@ -6,6 +6,7 @@ OC.L10N.register(
|
||||
"User" : "Aseqdac",
|
||||
"Guest" : "Inebgi",
|
||||
"General" : "Amatu",
|
||||
"Loading …" : "Asali ...",
|
||||
"Search" : "Nadi",
|
||||
"Home" : "Amager",
|
||||
"Dashboard" : "Tafelwit n usenqed",
|
||||
@@ -24,7 +25,6 @@ OC.L10N.register(
|
||||
"Save" : "Sekles",
|
||||
"Title" : "Azwel",
|
||||
"Refresh" : "Sismeḍ",
|
||||
"Loading …" : "Asali ...",
|
||||
"Retry" : "Ɛreḍ tikkelt-nniḍen",
|
||||
"Error" : "Tuccḍa",
|
||||
"Searching …" : "Anadi …",
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
"User" : "Aseqdac",
|
||||
"Guest" : "Inebgi",
|
||||
"General" : "Amatu",
|
||||
"Loading …" : "Asali ...",
|
||||
"Search" : "Nadi",
|
||||
"Home" : "Amager",
|
||||
"Dashboard" : "Tafelwit n usenqed",
|
||||
@@ -22,7 +23,6 @@
|
||||
"Save" : "Sekles",
|
||||
"Title" : "Azwel",
|
||||
"Refresh" : "Sismeḍ",
|
||||
"Loading …" : "Asali ...",
|
||||
"Retry" : "Ɛreḍ tikkelt-nniḍen",
|
||||
"Error" : "Tuccḍa",
|
||||
"Searching …" : "Anadi …",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "밑줄 쳐진 텍스트",
|
||||
"Forum" : "포럼",
|
||||
"Deleted user" : "삭제된 사용자",
|
||||
"Loading …" : "불러오는 중 ...",
|
||||
"Search" : "검색",
|
||||
"Home" : "집",
|
||||
"Bookmarks" : "북마크",
|
||||
@@ -41,7 +42,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "초안 저장됨",
|
||||
"Unsaved changes" : "저장하지 않은 변경 사항",
|
||||
"Refresh" : "새로 고침",
|
||||
"Loading …" : "불러오는 중 ...",
|
||||
"Retry" : "다시 시도",
|
||||
"Error" : "오류",
|
||||
"Searching …" : "검색 중...",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"Underlined text" : "밑줄 쳐진 텍스트",
|
||||
"Forum" : "포럼",
|
||||
"Deleted user" : "삭제된 사용자",
|
||||
"Loading …" : "불러오는 중 ...",
|
||||
"Search" : "검색",
|
||||
"Home" : "집",
|
||||
"Bookmarks" : "북마크",
|
||||
@@ -39,7 +40,6 @@
|
||||
"Draft saved" : "초안 저장됨",
|
||||
"Unsaved changes" : "저장하지 않은 변경 사항",
|
||||
"Refresh" : "새로 고침",
|
||||
"Loading …" : "불러오는 중 ...",
|
||||
"Retry" : "다시 시도",
|
||||
"Error" : "오류",
|
||||
"Searching …" : "검색 중...",
|
||||
|
||||
@@ -10,6 +10,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "ຂໍ້ຄວາມທີ່ຂີດກ້ອງ",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Loading …" : "ກຳລັງໂຫຼດ...",
|
||||
"Search" : "ຄົ້ນຫາ",
|
||||
"Home" : "ໜ້າຫຼັກ",
|
||||
"Bookmarks" : "Bookmarks",
|
||||
@@ -50,7 +51,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Draft saved",
|
||||
"Unsaved changes" : "ການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກ",
|
||||
"Refresh" : "ໂຫຼດໃໝ່",
|
||||
"Loading …" : "ກຳລັງໂຫຼດ...",
|
||||
"Retry" : "ລອງໃໝ່",
|
||||
"In {category}" : "In {category}",
|
||||
"Error" : "ຂໍ້ຜິດພາດ",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
"Underlined text" : "ຂໍ້ຄວາມທີ່ຂີດກ້ອງ",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Loading …" : "ກຳລັງໂຫຼດ...",
|
||||
"Search" : "ຄົ້ນຫາ",
|
||||
"Home" : "ໜ້າຫຼັກ",
|
||||
"Bookmarks" : "Bookmarks",
|
||||
@@ -48,7 +49,6 @@
|
||||
"Draft saved" : "Draft saved",
|
||||
"Unsaved changes" : "ການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກ",
|
||||
"Refresh" : "ໂຫຼດໃໝ່",
|
||||
"Loading …" : "ກຳລັງໂຫຼດ...",
|
||||
"Retry" : "ລອງໃໝ່",
|
||||
"In {category}" : "In {category}",
|
||||
"Error" : "ຂໍ້ຜິດພາດ",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Pabrauktas tekstas",
|
||||
"Forum" : "Forumas",
|
||||
"Deleted user" : "Ištrintas naudotojas",
|
||||
"Loading …" : "Įkeliama…",
|
||||
"Search" : "Paieška",
|
||||
"Home" : "Namai",
|
||||
"Bookmarks" : "Adresynas",
|
||||
@@ -42,7 +43,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Neįrašyti pakeitimai",
|
||||
"Back to home" : "Atgal į pradžią",
|
||||
"Refresh" : "Įkelti iš naujo",
|
||||
"Loading …" : "Įkeliama…",
|
||||
"Retry" : "Bandyti dar kartą",
|
||||
"Error" : "Klaida",
|
||||
"Searching …" : "Ieškoma…",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Underlined text" : "Pabrauktas tekstas",
|
||||
"Forum" : "Forumas",
|
||||
"Deleted user" : "Ištrintas naudotojas",
|
||||
"Loading …" : "Įkeliama…",
|
||||
"Search" : "Paieška",
|
||||
"Home" : "Namai",
|
||||
"Bookmarks" : "Adresynas",
|
||||
@@ -40,7 +41,6 @@
|
||||
"Unsaved changes" : "Neįrašyti pakeitimai",
|
||||
"Back to home" : "Atgal į pradžią",
|
||||
"Refresh" : "Įkelti iš naujo",
|
||||
"Loading …" : "Įkeliama…",
|
||||
"Retry" : "Bandyti dar kartą",
|
||||
"Error" : "Klaida",
|
||||
"Searching …" : "Ieškoma…",
|
||||
|
||||
@@ -17,6 +17,7 @@ OC.L10N.register(
|
||||
"Ask questions about the forum, provide feedback or report issues." : "Uzdod jautājumus par forumu, sniedz atgriezenisko saiti vai ziņo par nepilnībām!",
|
||||
"Forum" : "Forums",
|
||||
"Welcome to the forum!" : "Laipni lūdzam forumā!",
|
||||
"Loading …" : "Ielādē…",
|
||||
"Search" : "Meklēt",
|
||||
"Home" : "Sākums",
|
||||
"Bookmarks" : "Grāmatzīmes",
|
||||
@@ -42,7 +43,6 @@ OC.L10N.register(
|
||||
"Title" : "Virsraksts",
|
||||
"Unsaved changes" : "Nesaglabātas izmaiņas",
|
||||
"Refresh" : "Atsvaidzināt",
|
||||
"Loading …" : "Ielādē…",
|
||||
"Retry" : "Mēģināt vēlreiz",
|
||||
"Error" : "Kļūda",
|
||||
"Searching …" : "Meklē...",
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
"Ask questions about the forum, provide feedback or report issues." : "Uzdod jautājumus par forumu, sniedz atgriezenisko saiti vai ziņo par nepilnībām!",
|
||||
"Forum" : "Forums",
|
||||
"Welcome to the forum!" : "Laipni lūdzam forumā!",
|
||||
"Loading …" : "Ielādē…",
|
||||
"Search" : "Meklēt",
|
||||
"Home" : "Sākums",
|
||||
"Bookmarks" : "Grāmatzīmes",
|
||||
@@ -40,7 +41,6 @@
|
||||
"Title" : "Virsraksts",
|
||||
"Unsaved changes" : "Nesaglabātas izmaiņas",
|
||||
"Refresh" : "Atsvaidzināt",
|
||||
"Loading …" : "Ielādē…",
|
||||
"Retry" : "Mēģināt vēlreiz",
|
||||
"Error" : "Kļūda",
|
||||
"Searching …" : "Meklē...",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Подвлечен текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Избришан корисник",
|
||||
"Loading …" : "Се вчитува…",
|
||||
"Search" : "Барај",
|
||||
"Home" : "Дома",
|
||||
"Dashboard" : "Табла",
|
||||
@@ -37,7 +38,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Нацртот е зачуван",
|
||||
"Unsaved changes" : "Незачувани промени",
|
||||
"Refresh" : "Освежи",
|
||||
"Loading …" : "Се вчитува…",
|
||||
"Retry" : "Обидете се повторно",
|
||||
"Error" : "Грешка",
|
||||
"Searching …" : "Пребарување ...",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Underlined text" : "Подвлечен текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Избришан корисник",
|
||||
"Loading …" : "Се вчитува…",
|
||||
"Search" : "Барај",
|
||||
"Home" : "Дома",
|
||||
"Dashboard" : "Табла",
|
||||
@@ -35,7 +36,6 @@
|
||||
"Draft saved" : "Нацртот е зачуван",
|
||||
"Unsaved changes" : "Незачувани промени",
|
||||
"Refresh" : "Освежи",
|
||||
"Loading …" : "Се вчитува…",
|
||||
"Retry" : "Обидете се повторно",
|
||||
"Error" : "Грешка",
|
||||
"Searching …" : "Пребарување ...",
|
||||
|
||||
@@ -10,6 +10,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Understreket tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Slettet bruker",
|
||||
"Loading …" : "Laster ...",
|
||||
"Search" : "Søk",
|
||||
"Home" : "Hjem",
|
||||
"Bookmarks" : "Bokmerker",
|
||||
@@ -49,7 +50,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Kladd ble lagret",
|
||||
"Unsaved changes" : "Ulagrede endringer",
|
||||
"Refresh" : "Oppdater",
|
||||
"Loading …" : "Laster ...",
|
||||
"Retry" : "Prøv igjen",
|
||||
"Error" : "Feil",
|
||||
"Searching …" : "Søker ...",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
"Underlined text" : "Understreket tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Slettet bruker",
|
||||
"Loading …" : "Laster ...",
|
||||
"Search" : "Søk",
|
||||
"Home" : "Hjem",
|
||||
"Bookmarks" : "Bokmerker",
|
||||
@@ -47,7 +48,6 @@
|
||||
"Draft saved" : "Kladd ble lagret",
|
||||
"Unsaved changes" : "Ulagrede endringer",
|
||||
"Refresh" : "Oppdater",
|
||||
"Loading …" : "Laster ...",
|
||||
"Retry" : "Prøv igjen",
|
||||
"Error" : "Feil",
|
||||
"Searching …" : "Søker ...",
|
||||
|
||||
@@ -10,6 +10,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Onderstreepte tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Verwijderen gebruiker",
|
||||
"Loading …" : "Laden …",
|
||||
"Search" : "Zoeken",
|
||||
"Home" : "Startpagina",
|
||||
"Bookmarks" : "Bookmarks",
|
||||
@@ -50,7 +51,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Concept opgeslagen",
|
||||
"Unsaved changes" : "Niet opgeslagen veranderingen",
|
||||
"Refresh" : "Verversen",
|
||||
"Loading …" : "Laden …",
|
||||
"Retry" : "Opnieuw",
|
||||
"Error" : "Fout",
|
||||
"Searching …" : "Zoeken ...",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
"Underlined text" : "Onderstreepte tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Verwijderen gebruiker",
|
||||
"Loading …" : "Laden …",
|
||||
"Search" : "Zoeken",
|
||||
"Home" : "Startpagina",
|
||||
"Bookmarks" : "Bookmarks",
|
||||
@@ -48,7 +49,6 @@
|
||||
"Draft saved" : "Concept opgeslagen",
|
||||
"Unsaved changes" : "Niet opgeslagen veranderingen",
|
||||
"Refresh" : "Verversen",
|
||||
"Loading …" : "Laden …",
|
||||
"Retry" : "Opnieuw",
|
||||
"Error" : "Fout",
|
||||
"Searching …" : "Zoeken ...",
|
||||
|
||||
@@ -7,6 +7,7 @@ OC.L10N.register(
|
||||
"General" : "Generals",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilizaire suprimit",
|
||||
"Loading …" : "Cargament…",
|
||||
"Search" : "Recercar",
|
||||
"Bookmarks" : "Marcapaginas",
|
||||
"Dashboard" : "Tablèu de bòrd",
|
||||
@@ -34,7 +35,6 @@ OC.L10N.register(
|
||||
"Title" : "Títol",
|
||||
"Unsaved changes" : "Modificacions pas enregistradas",
|
||||
"Refresh" : "Refrescar",
|
||||
"Loading …" : "Cargament…",
|
||||
"Retry" : "Tornar ensajar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Recèrca…",
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
"General" : "Generals",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilizaire suprimit",
|
||||
"Loading …" : "Cargament…",
|
||||
"Search" : "Recercar",
|
||||
"Bookmarks" : "Marcapaginas",
|
||||
"Dashboard" : "Tablèu de bòrd",
|
||||
@@ -32,7 +33,6 @@
|
||||
"Title" : "Títol",
|
||||
"Unsaved changes" : "Modificacions pas enregistradas",
|
||||
"Refresh" : "Refrescar",
|
||||
"Loading …" : "Cargament…",
|
||||
"Retry" : "Tornar ensajar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Recèrca…",
|
||||
|
||||
@@ -10,6 +10,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Podkreślony tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Usunięty użytkownik",
|
||||
"Loading …" : "Wczytywanie…",
|
||||
"Search" : "Szukaj",
|
||||
"Home" : "Strona główna",
|
||||
"Bookmarks" : "Zakładki",
|
||||
@@ -52,7 +53,6 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Niezapisane zmiany",
|
||||
"Back to home" : "Powrót do strony głównej",
|
||||
"Refresh" : "Odśwież",
|
||||
"Loading …" : "Wczytywanie…",
|
||||
"Retry" : "Powtórz",
|
||||
"In {category}" : "w {category}",
|
||||
"Error" : "Błąd",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
"Underlined text" : "Podkreślony tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Usunięty użytkownik",
|
||||
"Loading …" : "Wczytywanie…",
|
||||
"Search" : "Szukaj",
|
||||
"Home" : "Strona główna",
|
||||
"Bookmarks" : "Zakładki",
|
||||
@@ -50,7 +51,6 @@
|
||||
"Unsaved changes" : "Niezapisane zmiany",
|
||||
"Back to home" : "Powrót do strony głównej",
|
||||
"Refresh" : "Odśwież",
|
||||
"Loading …" : "Wczytywanie…",
|
||||
"Retry" : "Powtórz",
|
||||
"In {category}" : "w {category}",
|
||||
"Error" : "Błąd",
|
||||
|
||||
@@ -38,10 +38,12 @@ OC.L10N.register(
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Sinta-se à vontade para iniciar uma nova discussão ou responder a fios existentes. Boas postagens!",
|
||||
"Forum" : "Fórum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta em {thread}","{count} de novas respostas em {thread}","{count} novas respostas em {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mencionou você em {thread}",
|
||||
"Welcome to the forum!" : "Bem-vindo ao fórum!",
|
||||
"Deleted user" : "Usuário excluído",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Um fórum comunitário integrado diretamente na sua instância 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." : "Crie discussões, compartilhe ideias e colabore com sua comunidade diretamente no Nextcloud.\n\n**⚠️ Aviso sobre desenvolvimento inicial:**\nEste aplicativo está em fase inicial de desenvolvimento. Embora funcional, você pode encontrar bugs ou recursos incompletos. Relate quaisquer problemas no GitHub e considere fazer backups regulares dos seus dados.\n\n**Principais recursos:**\n- **Discussões baseadas em tópicos** - Crie e responda a tópicos de discussão organizados\n- **Organização por categorias** - Estruture seu fórum com categorias e cabeçalhos personalizáveis\n- **Formatação de texto rico** - Use BBCode para formatar postagens com negrito, itálico, links, imagens, blocos de código e muito mais\n- **Anexos de arquivos** - Anexe arquivos do seu armazenamento Nextcloud às postagens\n- **Reações às postagens** - Reaja às postagens com reações em emoji\n- **Rastreamento de lido/não lido** - Acompanhe quais tópicos você já leu\n- **Pesquisa** - Encontre discussões rapidamente com a pesquisa integrada\n- **Perfis de usuário** - Veja o histórico e as estatísticas das postagens do usuário\n- **Permissões baseadas em funções** - Controle o acesso e a moderação com funções flexíveis\n- **Acesso de convidados**: acesso público opcional para usuários não autenticados com permissões configuráveis\n- **Ferramentas de administração** - Gerencie categorias, funções, BBCodes e configurações do fórum\n- **Ferramentas de moderação** - Fixe, bloqueie e gerencie tópicos e publicações\n\n**Perfeito para:**\n- Discussões e colaboração em equipe\n- Fóruns da comunidade\n- Canais de suporte\n- Bases de conhecimento\n- Discussões sobre projetos\n- Comunicação interna\n\nO fórum se integra perfeitamente à sua instância do Nextcloud, usando seus usuários e grupos existentes para autenticação e controle de acesso.",
|
||||
"Loading …" : "Carregando …",
|
||||
"Search" : "Pesquisar",
|
||||
"Home" : "Início",
|
||||
"Bookmarks" : "Favoritos",
|
||||
@@ -133,6 +135,7 @@ OC.L10N.register(
|
||||
"Delete" : "Excluir",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Tem certeza de que deseja excluir esta postagem? Esta ação não pode ser desfeita.",
|
||||
"Unread" : "Não lido",
|
||||
"Edit your reply …" : "Edite sua resposta …",
|
||||
"Save" : "Salvar",
|
||||
"Are you sure you want to discard your changes?" : "Tem certeza de que deseja descartar suas alterações?",
|
||||
"Add reaction" : "Adicionar reação",
|
||||
@@ -141,6 +144,7 @@ OC.L10N.register(
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Você e %n outro reagiram com {emoji}","Você e %n de outros reagiram com {emoji}","Você e %n outros reagiram com {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n pessoa reagiu com {emoji}","%n de pessoas reagiram com {emoji}","%n pessoas reagiram com {emoji}"],
|
||||
"Write your reply …" : "Escreva sua resposta …",
|
||||
"Submit reply" : "Enviar resposta",
|
||||
"Are you sure you want to discard your reply?" : "Tem certeza de que deseja descartar sua resposta?",
|
||||
"In thread" : "No fio",
|
||||
"Thread unavailable" : "Fio indisponível",
|
||||
@@ -152,6 +156,7 @@ OC.L10N.register(
|
||||
"Views" : "Visualizações",
|
||||
"Title" : "Título",
|
||||
"Enter thread title …" : "Insira o título do fio …",
|
||||
"Write your thread content …" : "Escreva seu conteúdo de fio …",
|
||||
"Create thread" : "Criar fio",
|
||||
"Are you sure you want to discard this thread?" : "Tem certeza de que deseja descartar este fio?",
|
||||
"Saving draft …" : "Salvando rascunho...",
|
||||
@@ -159,9 +164,13 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Alterações não salvas",
|
||||
"Back to home" : "Voltar",
|
||||
"Refresh" : "Atualizar",
|
||||
"Loading …" : "Carregando …",
|
||||
"Your bookmarked threads" : "Seus fios favoritados",
|
||||
"Error loading bookmarks" : "Erro ao carregar os favoritos",
|
||||
"No bookmarks yet" : "Ainda sem favoritos",
|
||||
"Bookmark threads to quickly find them later." : "Marque fios como favoritos para encontrá-los rapidamente mais tarde.",
|
||||
"Retry" : "Tentar novamente",
|
||||
"An unexpected error occurred" : "Ocorreu um erro inesperado",
|
||||
"Failed to load bookmarks" : "Falha ao carregar os favoritos",
|
||||
"No categories yet" : "Ainda sem categorias",
|
||||
"Categories will appear here once they are created." : "As categorias aparecerão aqui assim que forem criadas.",
|
||||
"No categories in this section" : "Nenhuma categoria nesta seção",
|
||||
@@ -181,14 +190,17 @@ OC.L10N.register(
|
||||
"Failed to create thread" : "Falha ao criar o fio",
|
||||
"No category specified" : "Nenhuma categoria fornecida",
|
||||
"Error" : "Erro",
|
||||
"First activity" : "Primeira atividade",
|
||||
"Threads ({count})" : "Fios ({count})",
|
||||
"Replies ({count})" : "Respostas ({count})",
|
||||
"No threads" : "Sem fios",
|
||||
"This user has not created any threads yet" : "Este usuário ainda não criou nenhum fio",
|
||||
"No replies" : "Sem respostas",
|
||||
"This user has not written any replies yet" : "Este usuário ainda não escreveu nenhuma resposta",
|
||||
"Failed to load user profile" : "Falha ao carregar o perfil do usuário",
|
||||
"Enter search query …" : "Insira a consulta de pesquisa …",
|
||||
"Search in threads" : "Pesquisar nos fios",
|
||||
"Search in replies" : "Pesquisar em respostas",
|
||||
"Syntax help" : "Ajuda de sintaxe",
|
||||
"Search syntax" : "Sintaxe de pesquisa",
|
||||
"Match exact phrase" : "Corresponder frase exata",
|
||||
@@ -199,9 +211,11 @@ OC.L10N.register(
|
||||
"Searching …" : "Pesquisando …",
|
||||
"Search Error" : "Erro na Pesquisa",
|
||||
"Enter a search query" : "Insira uma consulta de pesquisa",
|
||||
"Use the search box above to find threads and replies" : "Use a caixa de pesquisa acima para encontrar fios e respostas",
|
||||
"No results found" : "Nenhum resultado encontrado",
|
||||
"Try different keywords or check your syntax" : "Experimente palavras-chave diferentes ou verifique sua sintaxe.",
|
||||
"_%n thread found_::_%n threads found_" : ["%n fio encontrado","%n de fios encontrados","%n fios encontrados"],
|
||||
"_%n reply found_::_%n replies found_" : ["%n resposta encontrada","%n de respostas encontradas","%n respostas encontradas"],
|
||||
"Please enter a search query" : "Por favor, insira um termo de pesquisa.",
|
||||
"Please select at least one search scope" : "Selecione pelo menos um escopo de pesquisa.",
|
||||
"Failed to search" : "Falha na pesquisa",
|
||||
@@ -210,7 +224,10 @@ OC.L10N.register(
|
||||
"Back to {category}" : "Voltar para {category}",
|
||||
"Reply" : "Resposta",
|
||||
"Error loading thread" : "Erro ao carregar o fio",
|
||||
"No replies yet" : "Ainda sem respostas",
|
||||
"Be the first to reply in this thread." : "Seja o primeiro a responder neste fio.",
|
||||
"by" : "por",
|
||||
"This thread is locked. Only moderators can add replies." : "Este fio está trancado. Somente moderadores podem adicionar respostas.",
|
||||
"You must be signed in to reply to this thread." : "Você deve estar logado para responder a este fio.",
|
||||
"Sign in to reply" : "Faça login para responder",
|
||||
"Lock thread" : "Trancar fio",
|
||||
@@ -226,16 +243,25 @@ OC.L10N.register(
|
||||
"Subscribed to thread" : "Inscrito no tópico",
|
||||
"Unsubscribed from thread" : "Cancelei a inscrição na discussão.",
|
||||
"Bookmark" : "Favorito",
|
||||
"Remove bookmark" : "Remover favorito",
|
||||
"Thread bookmarked" : "Fio marcado como favorito",
|
||||
"Bookmark removed" : "Favorito removido",
|
||||
"Edit title" : "Editar título",
|
||||
"Save title" : "Salvar título",
|
||||
"Thread title updated" : "Título do fio atualizado",
|
||||
"Move thread" : "Mover fio",
|
||||
"Thread moved successfully" : "Fio movido com sucesso",
|
||||
"No thread ID or slug provided" : "Nenhuma identificação ou slug da thread foi fornecido.",
|
||||
"Failed to load replies" : "Falha ao carregar respostas",
|
||||
"Reply updated" : "Resposta atualizada",
|
||||
"Failed to update reply" : "Falha ao atualizar a resposta",
|
||||
"Thread deleted" : "Fio excluído",
|
||||
"Reply deleted" : "Resposta excluída",
|
||||
"Failed to delete reply" : "Falha ao excluir a resposta",
|
||||
"Failed to update thread lock status" : "Falha ao atualizar o status de trancamento do fio",
|
||||
"Failed to update thread pin status" : "Falha ao atualizar o status da fixação do fio",
|
||||
"Failed to update subscription" : "Falha ao atualizar a assinatura",
|
||||
"Failed to update bookmark" : "Falha ao atualizar o favorito",
|
||||
"Failed to update thread title" : "Falha ao atualizar o título do fio",
|
||||
"Failed to move thread" : "Falha ao mover o fio",
|
||||
"Preferences" : "Preferências",
|
||||
@@ -249,14 +275,17 @@ OC.L10N.register(
|
||||
"Files" : "Arquivos",
|
||||
"Configure file upload settings" : "Configure as definições de envio de arquivos..",
|
||||
"Upload directory" : "Diretório de upload",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Os arquivos anexados aos fios ou respostas serão enviados para este diretório nos seus arquivos Nextcloud",
|
||||
"Browse" : "Navegar",
|
||||
"Preferences saved" : "Preferências salvas",
|
||||
"Signature" : "Assinatura",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Sua assinatura aparece na parte inferior de seus fios ou respostas",
|
||||
"You can use BBCode formatting in your signature" : "Você pode usar a formatação BBCode em sua assinatura",
|
||||
"Enter your signature …" : "Insira sua assinatura …",
|
||||
"Failed to save preferences" : "Falha ao salvar preferências",
|
||||
"Select upload directory" : "Selecione o diretório de upload",
|
||||
"BBCode management" : "Gerenciamento do BBCode",
|
||||
"Manage custom BBCode tags for formatting" : "Gerencie etiquetas BBCode personalizadas para formatação",
|
||||
"Error loading BBCodes" : "Erro ao carregar BBCodes",
|
||||
"Create BBCode" : "Criar BBCode",
|
||||
"Enable" : "Ativar",
|
||||
|
||||
@@ -36,10 +36,12 @@
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Sinta-se à vontade para iniciar uma nova discussão ou responder a fios existentes. Boas postagens!",
|
||||
"Forum" : "Fórum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta em {thread}","{count} de novas respostas em {thread}","{count} novas respostas em {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mencionou você em {thread}",
|
||||
"Welcome to the forum!" : "Bem-vindo ao fórum!",
|
||||
"Deleted user" : "Usuário excluído",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Um fórum comunitário integrado diretamente na sua instância 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." : "Crie discussões, compartilhe ideias e colabore com sua comunidade diretamente no Nextcloud.\n\n**⚠️ Aviso sobre desenvolvimento inicial:**\nEste aplicativo está em fase inicial de desenvolvimento. Embora funcional, você pode encontrar bugs ou recursos incompletos. Relate quaisquer problemas no GitHub e considere fazer backups regulares dos seus dados.\n\n**Principais recursos:**\n- **Discussões baseadas em tópicos** - Crie e responda a tópicos de discussão organizados\n- **Organização por categorias** - Estruture seu fórum com categorias e cabeçalhos personalizáveis\n- **Formatação de texto rico** - Use BBCode para formatar postagens com negrito, itálico, links, imagens, blocos de código e muito mais\n- **Anexos de arquivos** - Anexe arquivos do seu armazenamento Nextcloud às postagens\n- **Reações às postagens** - Reaja às postagens com reações em emoji\n- **Rastreamento de lido/não lido** - Acompanhe quais tópicos você já leu\n- **Pesquisa** - Encontre discussões rapidamente com a pesquisa integrada\n- **Perfis de usuário** - Veja o histórico e as estatísticas das postagens do usuário\n- **Permissões baseadas em funções** - Controle o acesso e a moderação com funções flexíveis\n- **Acesso de convidados**: acesso público opcional para usuários não autenticados com permissões configuráveis\n- **Ferramentas de administração** - Gerencie categorias, funções, BBCodes e configurações do fórum\n- **Ferramentas de moderação** - Fixe, bloqueie e gerencie tópicos e publicações\n\n**Perfeito para:**\n- Discussões e colaboração em equipe\n- Fóruns da comunidade\n- Canais de suporte\n- Bases de conhecimento\n- Discussões sobre projetos\n- Comunicação interna\n\nO fórum se integra perfeitamente à sua instância do Nextcloud, usando seus usuários e grupos existentes para autenticação e controle de acesso.",
|
||||
"Loading …" : "Carregando …",
|
||||
"Search" : "Pesquisar",
|
||||
"Home" : "Início",
|
||||
"Bookmarks" : "Favoritos",
|
||||
@@ -131,6 +133,7 @@
|
||||
"Delete" : "Excluir",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Tem certeza de que deseja excluir esta postagem? Esta ação não pode ser desfeita.",
|
||||
"Unread" : "Não lido",
|
||||
"Edit your reply …" : "Edite sua resposta …",
|
||||
"Save" : "Salvar",
|
||||
"Are you sure you want to discard your changes?" : "Tem certeza de que deseja descartar suas alterações?",
|
||||
"Add reaction" : "Adicionar reação",
|
||||
@@ -139,6 +142,7 @@
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Você e %n outro reagiram com {emoji}","Você e %n de outros reagiram com {emoji}","Você e %n outros reagiram com {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n pessoa reagiu com {emoji}","%n de pessoas reagiram com {emoji}","%n pessoas reagiram com {emoji}"],
|
||||
"Write your reply …" : "Escreva sua resposta …",
|
||||
"Submit reply" : "Enviar resposta",
|
||||
"Are you sure you want to discard your reply?" : "Tem certeza de que deseja descartar sua resposta?",
|
||||
"In thread" : "No fio",
|
||||
"Thread unavailable" : "Fio indisponível",
|
||||
@@ -150,6 +154,7 @@
|
||||
"Views" : "Visualizações",
|
||||
"Title" : "Título",
|
||||
"Enter thread title …" : "Insira o título do fio …",
|
||||
"Write your thread content …" : "Escreva seu conteúdo de fio …",
|
||||
"Create thread" : "Criar fio",
|
||||
"Are you sure you want to discard this thread?" : "Tem certeza de que deseja descartar este fio?",
|
||||
"Saving draft …" : "Salvando rascunho...",
|
||||
@@ -157,9 +162,13 @@
|
||||
"Unsaved changes" : "Alterações não salvas",
|
||||
"Back to home" : "Voltar",
|
||||
"Refresh" : "Atualizar",
|
||||
"Loading …" : "Carregando …",
|
||||
"Your bookmarked threads" : "Seus fios favoritados",
|
||||
"Error loading bookmarks" : "Erro ao carregar os favoritos",
|
||||
"No bookmarks yet" : "Ainda sem favoritos",
|
||||
"Bookmark threads to quickly find them later." : "Marque fios como favoritos para encontrá-los rapidamente mais tarde.",
|
||||
"Retry" : "Tentar novamente",
|
||||
"An unexpected error occurred" : "Ocorreu um erro inesperado",
|
||||
"Failed to load bookmarks" : "Falha ao carregar os favoritos",
|
||||
"No categories yet" : "Ainda sem categorias",
|
||||
"Categories will appear here once they are created." : "As categorias aparecerão aqui assim que forem criadas.",
|
||||
"No categories in this section" : "Nenhuma categoria nesta seção",
|
||||
@@ -179,14 +188,17 @@
|
||||
"Failed to create thread" : "Falha ao criar o fio",
|
||||
"No category specified" : "Nenhuma categoria fornecida",
|
||||
"Error" : "Erro",
|
||||
"First activity" : "Primeira atividade",
|
||||
"Threads ({count})" : "Fios ({count})",
|
||||
"Replies ({count})" : "Respostas ({count})",
|
||||
"No threads" : "Sem fios",
|
||||
"This user has not created any threads yet" : "Este usuário ainda não criou nenhum fio",
|
||||
"No replies" : "Sem respostas",
|
||||
"This user has not written any replies yet" : "Este usuário ainda não escreveu nenhuma resposta",
|
||||
"Failed to load user profile" : "Falha ao carregar o perfil do usuário",
|
||||
"Enter search query …" : "Insira a consulta de pesquisa …",
|
||||
"Search in threads" : "Pesquisar nos fios",
|
||||
"Search in replies" : "Pesquisar em respostas",
|
||||
"Syntax help" : "Ajuda de sintaxe",
|
||||
"Search syntax" : "Sintaxe de pesquisa",
|
||||
"Match exact phrase" : "Corresponder frase exata",
|
||||
@@ -197,9 +209,11 @@
|
||||
"Searching …" : "Pesquisando …",
|
||||
"Search Error" : "Erro na Pesquisa",
|
||||
"Enter a search query" : "Insira uma consulta de pesquisa",
|
||||
"Use the search box above to find threads and replies" : "Use a caixa de pesquisa acima para encontrar fios e respostas",
|
||||
"No results found" : "Nenhum resultado encontrado",
|
||||
"Try different keywords or check your syntax" : "Experimente palavras-chave diferentes ou verifique sua sintaxe.",
|
||||
"_%n thread found_::_%n threads found_" : ["%n fio encontrado","%n de fios encontrados","%n fios encontrados"],
|
||||
"_%n reply found_::_%n replies found_" : ["%n resposta encontrada","%n de respostas encontradas","%n respostas encontradas"],
|
||||
"Please enter a search query" : "Por favor, insira um termo de pesquisa.",
|
||||
"Please select at least one search scope" : "Selecione pelo menos um escopo de pesquisa.",
|
||||
"Failed to search" : "Falha na pesquisa",
|
||||
@@ -208,7 +222,10 @@
|
||||
"Back to {category}" : "Voltar para {category}",
|
||||
"Reply" : "Resposta",
|
||||
"Error loading thread" : "Erro ao carregar o fio",
|
||||
"No replies yet" : "Ainda sem respostas",
|
||||
"Be the first to reply in this thread." : "Seja o primeiro a responder neste fio.",
|
||||
"by" : "por",
|
||||
"This thread is locked. Only moderators can add replies." : "Este fio está trancado. Somente moderadores podem adicionar respostas.",
|
||||
"You must be signed in to reply to this thread." : "Você deve estar logado para responder a este fio.",
|
||||
"Sign in to reply" : "Faça login para responder",
|
||||
"Lock thread" : "Trancar fio",
|
||||
@@ -224,16 +241,25 @@
|
||||
"Subscribed to thread" : "Inscrito no tópico",
|
||||
"Unsubscribed from thread" : "Cancelei a inscrição na discussão.",
|
||||
"Bookmark" : "Favorito",
|
||||
"Remove bookmark" : "Remover favorito",
|
||||
"Thread bookmarked" : "Fio marcado como favorito",
|
||||
"Bookmark removed" : "Favorito removido",
|
||||
"Edit title" : "Editar título",
|
||||
"Save title" : "Salvar título",
|
||||
"Thread title updated" : "Título do fio atualizado",
|
||||
"Move thread" : "Mover fio",
|
||||
"Thread moved successfully" : "Fio movido com sucesso",
|
||||
"No thread ID or slug provided" : "Nenhuma identificação ou slug da thread foi fornecido.",
|
||||
"Failed to load replies" : "Falha ao carregar respostas",
|
||||
"Reply updated" : "Resposta atualizada",
|
||||
"Failed to update reply" : "Falha ao atualizar a resposta",
|
||||
"Thread deleted" : "Fio excluído",
|
||||
"Reply deleted" : "Resposta excluída",
|
||||
"Failed to delete reply" : "Falha ao excluir a resposta",
|
||||
"Failed to update thread lock status" : "Falha ao atualizar o status de trancamento do fio",
|
||||
"Failed to update thread pin status" : "Falha ao atualizar o status da fixação do fio",
|
||||
"Failed to update subscription" : "Falha ao atualizar a assinatura",
|
||||
"Failed to update bookmark" : "Falha ao atualizar o favorito",
|
||||
"Failed to update thread title" : "Falha ao atualizar o título do fio",
|
||||
"Failed to move thread" : "Falha ao mover o fio",
|
||||
"Preferences" : "Preferências",
|
||||
@@ -247,14 +273,17 @@
|
||||
"Files" : "Arquivos",
|
||||
"Configure file upload settings" : "Configure as definições de envio de arquivos..",
|
||||
"Upload directory" : "Diretório de upload",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Os arquivos anexados aos fios ou respostas serão enviados para este diretório nos seus arquivos Nextcloud",
|
||||
"Browse" : "Navegar",
|
||||
"Preferences saved" : "Preferências salvas",
|
||||
"Signature" : "Assinatura",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Sua assinatura aparece na parte inferior de seus fios ou respostas",
|
||||
"You can use BBCode formatting in your signature" : "Você pode usar a formatação BBCode em sua assinatura",
|
||||
"Enter your signature …" : "Insira sua assinatura …",
|
||||
"Failed to save preferences" : "Falha ao salvar preferências",
|
||||
"Select upload directory" : "Selecione o diretório de upload",
|
||||
"BBCode management" : "Gerenciamento do BBCode",
|
||||
"Manage custom BBCode tags for formatting" : "Gerencie etiquetas BBCode personalizadas para formatação",
|
||||
"Error loading BBCodes" : "Erro ao carregar BBCodes",
|
||||
"Create BBCode" : "Criar BBCode",
|
||||
"Enable" : "Ativar",
|
||||
|
||||
@@ -42,6 +42,7 @@ OC.L10N.register(
|
||||
"Deleted user" : "Удалённый пользователь",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Форум сообщества, встроенный прямо в ваш экземпляр 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." : "Создавайте обсуждения, делитесь идеями и сотрудничайте с вашим сообществом прямо в Nextcloud.\n\n**⚠️ Предварительное уведомление о разработке:**\nЭто приложение находится на ранней стадии разработки. Несмотря на свою функциональность, вы можете столкнуться с ошибками или неполными функциями. Пожалуйста, сообщайте о любых проблемах на GitHub и регулярно создавайте резервные копии своих данных.\n\n**Ключевые функции:**\n- **Обсуждения по темам** - Создание и ответ в организованных темах обсуждений\n- **Организация по категориям** - Структурирование форума с помощью настраиваемых категорий и заголовков\n- **Форматирование текста** - Использование BBCode для выделения сообщений жирным шрифтом, курсивом, ссылками, изображениями, блоками кода и другими элементами\n- **Прикрепление файлов** - Прикрепление файлов из вашего хранилища Nextcloud к сообщениям\n- **Реакции на сообщения** - Реагирование на сообщения с помощью эмодзи\n- **Отслеживание прочитанных/непрочитанных сообщений** - Отслеживание прочитанных сообщений\n- **Поиск** - Быстрый поиск обсуждений с помощью встроенного поиска\n- **Профили пользователей** - Просмотр истории и статистики сообщений пользователей\n- **Разрешения на основе ролей** - Управление доступом и модерирование с помощью гибких ролей\n- **Гостевой доступ**: Дополнительный публичный доступ для неавторизованных пользователей с настраиваемыми правами\n- **Инструменты администратора** - Управление категориями, ролями, BBCodes и настройками форума\n- **Инструменты модерации** - Закрепление, блокировка и управление темами и сообщениями\n\n**Идеально подходит для:**\n- Обсуждений в команде и совместной работы\n- Форумов сообщества\n- Каналов поддержки\n- Баз знаний\n- Обсуждений проектов\n- Внутреннего общения\n\nФорум легко интегрируется с вашим экземпляром Nextcloud, используя существующих пользователей и группы для аутентификации и управления доступом.",
|
||||
"Loading …" : "Загрузка…",
|
||||
"Search" : "Поиск",
|
||||
"Home" : "Домашняя страница",
|
||||
"Bookmarks" : "Закладки",
|
||||
@@ -158,7 +159,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Черновик сохранён",
|
||||
"Unsaved changes" : "Несохранённые изменения",
|
||||
"Refresh" : "Обновить",
|
||||
"Loading …" : "Загрузка…",
|
||||
"Retry" : "Попробовать снова",
|
||||
"An unexpected error occurred" : "Произошла непредвиденная ошибка",
|
||||
"No categories yet" : "Категорий пока нет",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"Deleted user" : "Удалённый пользователь",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Форум сообщества, встроенный прямо в ваш экземпляр 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." : "Создавайте обсуждения, делитесь идеями и сотрудничайте с вашим сообществом прямо в Nextcloud.\n\n**⚠️ Предварительное уведомление о разработке:**\nЭто приложение находится на ранней стадии разработки. Несмотря на свою функциональность, вы можете столкнуться с ошибками или неполными функциями. Пожалуйста, сообщайте о любых проблемах на GitHub и регулярно создавайте резервные копии своих данных.\n\n**Ключевые функции:**\n- **Обсуждения по темам** - Создание и ответ в организованных темах обсуждений\n- **Организация по категориям** - Структурирование форума с помощью настраиваемых категорий и заголовков\n- **Форматирование текста** - Использование BBCode для выделения сообщений жирным шрифтом, курсивом, ссылками, изображениями, блоками кода и другими элементами\n- **Прикрепление файлов** - Прикрепление файлов из вашего хранилища Nextcloud к сообщениям\n- **Реакции на сообщения** - Реагирование на сообщения с помощью эмодзи\n- **Отслеживание прочитанных/непрочитанных сообщений** - Отслеживание прочитанных сообщений\n- **Поиск** - Быстрый поиск обсуждений с помощью встроенного поиска\n- **Профили пользователей** - Просмотр истории и статистики сообщений пользователей\n- **Разрешения на основе ролей** - Управление доступом и модерирование с помощью гибких ролей\n- **Гостевой доступ**: Дополнительный публичный доступ для неавторизованных пользователей с настраиваемыми правами\n- **Инструменты администратора** - Управление категориями, ролями, BBCodes и настройками форума\n- **Инструменты модерации** - Закрепление, блокировка и управление темами и сообщениями\n\n**Идеально подходит для:**\n- Обсуждений в команде и совместной работы\n- Форумов сообщества\n- Каналов поддержки\n- Баз знаний\n- Обсуждений проектов\n- Внутреннего общения\n\nФорум легко интегрируется с вашим экземпляром Nextcloud, используя существующих пользователей и группы для аутентификации и управления доступом.",
|
||||
"Loading …" : "Загрузка…",
|
||||
"Search" : "Поиск",
|
||||
"Home" : "Домашняя страница",
|
||||
"Bookmarks" : "Закладки",
|
||||
@@ -156,7 +157,6 @@
|
||||
"Draft saved" : "Черновик сохранён",
|
||||
"Unsaved changes" : "Несохранённые изменения",
|
||||
"Refresh" : "Обновить",
|
||||
"Loading …" : "Загрузка…",
|
||||
"Retry" : "Попробовать снова",
|
||||
"An unexpected error occurred" : "Произошла непредвиденная ошибка",
|
||||
"No categories yet" : "Категорий пока нет",
|
||||
|
||||
@@ -6,6 +6,7 @@ OC.L10N.register(
|
||||
"Guest" : "Persone invitada",
|
||||
"Support" : "Suportu",
|
||||
"Forum" : "Forum",
|
||||
"Loading …" : "Carrigamentu …",
|
||||
"Search" : "Chirca",
|
||||
"Home" : "Pàgina printzipale",
|
||||
"Bookmarks" : "Signalibros",
|
||||
@@ -37,7 +38,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Brutacòpia sarvada",
|
||||
"Unsaved changes" : "Mudas non sarvadas",
|
||||
"Refresh" : "Agiorna",
|
||||
"Loading …" : "Carrigamentu …",
|
||||
"Error" : "Errore",
|
||||
"Searching …" : "Chirchende …",
|
||||
"No results found" : "Perunu resurtadu agatadu",
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
"Guest" : "Persone invitada",
|
||||
"Support" : "Suportu",
|
||||
"Forum" : "Forum",
|
||||
"Loading …" : "Carrigamentu …",
|
||||
"Search" : "Chirca",
|
||||
"Home" : "Pàgina printzipale",
|
||||
"Bookmarks" : "Signalibros",
|
||||
@@ -35,7 +36,6 @@
|
||||
"Draft saved" : "Brutacòpia sarvada",
|
||||
"Unsaved changes" : "Mudas non sarvadas",
|
||||
"Refresh" : "Agiorna",
|
||||
"Loading …" : "Carrigamentu …",
|
||||
"Error" : "Errore",
|
||||
"Searching …" : "Chirchende …",
|
||||
"No results found" : "Perunu resurtadu agatadu",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Podčiarknutý text",
|
||||
"Forum" : "Fórum",
|
||||
"Deleted user" : "Zmazaný užívateľ",
|
||||
"Loading …" : "Načítavam …",
|
||||
"Search" : "Hľadať",
|
||||
"Home" : "Domov",
|
||||
"Bookmarks" : "Záložky",
|
||||
@@ -50,7 +51,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Koncept bol uložený",
|
||||
"Unsaved changes" : "Neuložené zmeny",
|
||||
"Refresh" : "Obnoviť",
|
||||
"Loading …" : "Načítavam …",
|
||||
"Retry" : "Zopakovať",
|
||||
"In {category}" : "V {category}",
|
||||
"Error" : "Chyba",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Underlined text" : "Podčiarknutý text",
|
||||
"Forum" : "Fórum",
|
||||
"Deleted user" : "Zmazaný užívateľ",
|
||||
"Loading …" : "Načítavam …",
|
||||
"Search" : "Hľadať",
|
||||
"Home" : "Domov",
|
||||
"Bookmarks" : "Záložky",
|
||||
@@ -48,7 +49,6 @@
|
||||
"Draft saved" : "Koncept bol uložený",
|
||||
"Unsaved changes" : "Neuložené zmeny",
|
||||
"Refresh" : "Obnoviť",
|
||||
"Loading …" : "Načítavam …",
|
||||
"Retry" : "Zopakovať",
|
||||
"In {category}" : "V {category}",
|
||||
"Error" : "Chyba",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Podpisano besedilo",
|
||||
"Forum" : "Spletni forum",
|
||||
"Deleted user" : "Izbrisan uporabnik",
|
||||
"Loading …" : "Poteka nalaganje …",
|
||||
"Search" : "Poišči",
|
||||
"Home" : "Začetna stran",
|
||||
"Bookmarks" : "Zaznamki",
|
||||
@@ -47,7 +48,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Osnutek je shranjen",
|
||||
"Unsaved changes" : "Neshranjene spremembe",
|
||||
"Refresh" : "Osveži",
|
||||
"Loading …" : "Poteka nalaganje …",
|
||||
"Retry" : "Poskusi znova ",
|
||||
"Error" : "Napaka",
|
||||
"Searching …" : "Poteka iskanje ...",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Underlined text" : "Podpisano besedilo",
|
||||
"Forum" : "Spletni forum",
|
||||
"Deleted user" : "Izbrisan uporabnik",
|
||||
"Loading …" : "Poteka nalaganje …",
|
||||
"Search" : "Poišči",
|
||||
"Home" : "Začetna stran",
|
||||
"Bookmarks" : "Zaznamki",
|
||||
@@ -45,7 +46,6 @@
|
||||
"Draft saved" : "Osnutek je shranjen",
|
||||
"Unsaved changes" : "Neshranjene spremembe",
|
||||
"Refresh" : "Osveži",
|
||||
"Loading …" : "Poteka nalaganje …",
|
||||
"Retry" : "Poskusi znova ",
|
||||
"Error" : "Napaka",
|
||||
"Searching …" : "Poteka iskanje ...",
|
||||
|
||||
@@ -11,6 +11,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Подвучени текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Обрисани корисник",
|
||||
"Loading …" : "Учитавање…",
|
||||
"Search" : "Претрага",
|
||||
"Home" : "Почетна",
|
||||
"Bookmarks" : "Обележивач",
|
||||
@@ -49,7 +50,6 @@ OC.L10N.register(
|
||||
"Draft saved" : "Нацрт сачуван",
|
||||
"Unsaved changes" : "Несачуване измене",
|
||||
"Refresh" : "Освежи",
|
||||
"Loading …" : "Учитавање…",
|
||||
"Retry" : "Покушај поново",
|
||||
"In {category}" : "У {category}",
|
||||
"Error" : "Грешка",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"Underlined text" : "Подвучени текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Обрисани корисник",
|
||||
"Loading …" : "Учитавање…",
|
||||
"Search" : "Претрага",
|
||||
"Home" : "Почетна",
|
||||
"Bookmarks" : "Обележивач",
|
||||
@@ -47,7 +48,6 @@
|
||||
"Draft saved" : "Нацрт сачуван",
|
||||
"Unsaved changes" : "Несачуване измене",
|
||||
"Refresh" : "Освежи",
|
||||
"Loading …" : "Учитавање…",
|
||||
"Retry" : "Покушај поново",
|
||||
"In {category}" : "У {category}",
|
||||
"Error" : "Грешка",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user