mirror of
https://github.com/chenasraf/nextcloud-forum.git
synced 2026-05-18 01:28:58 +00:00
Compare commits
74 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 975744ec6f | |||
| cb7a03c1d5 | |||
| 00e5d6d3b2 | |||
| 8b489b9cc3 | |||
| 9f904a7e48 | |||
| 886c51fdca | |||
| 919a13fdd3 | |||
| 370eed1286 | |||
| 1ff6349337 | |||
| 7732f22f4e | |||
| a07c8e452f | |||
| 57642efc7b | |||
| 18a2918446 | |||
| 3e7cebc8c3 | |||
| eb1b2f86df | |||
| c72c8b3eed | |||
| ec49855173 | |||
| cdca135f7d | |||
| 145e6d8f81 | |||
| 01639c7545 | |||
| 8848ba0304 | |||
| 64a618f54a | |||
| e4281e2128 | |||
| b84d96488c | |||
| b6e40f9976 | |||
| 9e0bdecc80 | |||
| 8277ccb87f | |||
| 55f1dbd258 | |||
|
|
81e35c114b | ||
|
|
d28b8c0f88 | ||
|
|
4d7efe9d32 | ||
|
|
7ae4d8f369 | ||
|
|
1dad565072 | ||
| 370c00664a | |||
|
|
02e9b093e8 | ||
| 16c44344d1 | |||
|
|
fce363355e | ||
|
|
2cd21b0792 | ||
| 12459e5fca | |||
|
|
b235d4a739 | ||
| 9965f58dc3 | |||
|
|
6a920d3ebf | ||
| d8a8e96922 | |||
| 1793a169c4 | |||
| a3f5360ff5 | |||
| d4e9ffd467 | |||
| 90446e4cd7 | |||
| 4b08dad606 | |||
|
|
a7c10f2e0c | ||
|
|
33e714cab2 | ||
| 988becb384 | |||
|
|
3876513119 | ||
|
|
db03c5fc50 | ||
| 391818f4bd | |||
| d62696e00e | |||
| 0a0e64dae5 | |||
| a481a93782 | |||
| 2ae6131f5a | |||
| a5fec5b38f | |||
| b5df3a66be | |||
|
|
5fec0577ee | ||
| 4c6d668b7f | |||
|
|
c65d9a592a | ||
| 9e00c931d1 | |||
| af507dda88 | |||
| 59c5f91fb0 | |||
|
|
d1d1c2ec51 | ||
| 2d643583af | |||
| c84a4b356b | |||
| 80c85a2cab | |||
| 9762443685 | |||
| db5374de2e | |||
|
|
4fd4e5046b | ||
|
|
59765960e6 |
45
.github/workflows/lint-eslint.yml
vendored
45
.github/workflows/lint-eslint.yml
vendored
@@ -1,10 +1,5 @@
|
||||
# This workflow is provided via the organization template repository
|
||||
#
|
||||
# https://github.com/nextcloud/.github
|
||||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
|
||||
#
|
||||
# Use lint-eslint together with lint-eslint-when-unrelated to make eslint a required check for GitHub actions
|
||||
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
|
||||
# SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
name: Lint eslint
|
||||
|
||||
@@ -20,40 +15,9 @@ concurrency:
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
changes:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
outputs:
|
||||
src: ${{ steps.changes.outputs.src}}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- uses: dorny/paths-filter@v3
|
||||
id: changes
|
||||
continue-on-error: true
|
||||
with:
|
||||
filters: |
|
||||
src:
|
||||
- '.github/workflows/**'
|
||||
- 'src/**'
|
||||
- 'appinfo/info.xml'
|
||||
- 'package.json'
|
||||
- 'package-lock.json'
|
||||
- 'tsconfig.json'
|
||||
- '.eslintrc.*'
|
||||
- '.eslintignore'
|
||||
- '**.js'
|
||||
- '**.ts'
|
||||
- '**.vue'
|
||||
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs: changes
|
||||
if: needs.changes.outputs.src != 'false'
|
||||
|
||||
name: NPM lint
|
||||
|
||||
steps:
|
||||
@@ -75,13 +39,12 @@ jobs:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest
|
||||
needs: [changes, lint]
|
||||
needs: lint
|
||||
|
||||
if: always()
|
||||
|
||||
# This is the summary, we just avoid to rename it so that branch protection rules still match
|
||||
name: eslint
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.changes.outputs.src != 'false' && needs.lint.result != 'success' }}; then exit 1; fi
|
||||
run: if ${{ needs.lint.result != 'success' }}; then exit 1; fi
|
||||
|
||||
68
.github/workflows/vitest.yml
vendored
Normal file
68
.github/workflows/vitest.yml
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
# SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
name: Vitest
|
||||
|
||||
on: pull_request
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: vitest-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
vitest:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
name: Vitest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
|
||||
with:
|
||||
node-version: 22
|
||||
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
|
||||
with:
|
||||
run_install: false
|
||||
|
||||
- name: Get pnpm store directory
|
||||
shell: bash
|
||||
run: |
|
||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
||||
|
||||
- name: Setup pnpm cache
|
||||
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: ${{ env.STORE_PATH }}
|
||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pnpm-store-
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile
|
||||
|
||||
- name: Run tests
|
||||
run: pnpm test:run
|
||||
|
||||
summary:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest
|
||||
needs: vitest
|
||||
|
||||
if: always()
|
||||
|
||||
name: vitest-summary
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.vitest.result != 'success' }}; then exit 1; fi
|
||||
@@ -1,2 +1,2 @@
|
||||
templates/
|
||||
scaffolds/
|
||||
gen/
|
||||
|
||||
@@ -1 +1 @@
|
||||
{".":"0.16.0"}
|
||||
{".":"0.20.0"}
|
||||
|
||||
140
CHANGELOG.md
140
CHANGELOG.md
@@ -1,5 +1,145 @@
|
||||
# Changelog
|
||||
|
||||
## [0.20.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.7...v0.20.0) (2026-01-07)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add max-width to post/signature images ([00e5d6d](https://github.com/chenasraf/nextcloud-forum/commit/00e5d6d3b2e14939b233a80050f645ebd7b8503a))
|
||||
* add preference to auto subscribe to replied threads ([cb7a03c](https://github.com/chenasraf/nextcloud-forum/commit/cb7a03c1d51f2dc5642a47ab222b07cec6e01731))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* forum users tables migrations ([8b489b9](https://github.com/chenasraf/nextcloud-forum/commit/8b489b9cc3919dedf1463c7c7dd54e7a8009fc6f))
|
||||
|
||||
## [0.19.7](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.6...v0.19.7) (2026-01-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* aggressive scroll-behavior interferes with mobile apps popover menu ([eb1b2f8](https://github.com/chenasraf/nextcloud-forum/commit/eb1b2f86df7e7bf75bdbd9ba8260471ec91110fb))
|
||||
* bbcode text insertion/selection logic ([919a13f](https://github.com/chenasraf/nextcloud-forum/commit/919a13fdd3da0579c7d9ebdd032e3108e9da7047))
|
||||
* main content size on mobile ([3e7cebc](https://github.com/chenasraf/nextcloud-forum/commit/3e7cebc8c3316dada42cf1ba81acb062d5b1d41a))
|
||||
|
||||
## [0.19.6](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.5...v0.19.6) (2026-01-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bbcode editor ([ec49855](https://github.com/chenasraf/nextcloud-forum/commit/ec49855173e026b683a6dd0cc29e46a72f62e98e))
|
||||
* bbcode text wrapping ([145e6d8](https://github.com/chenasraf/nextcloud-forum/commit/145e6d8f814d3899ef6327eaff5637a296b6582d))
|
||||
|
||||
## [0.19.5](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.4...v0.19.5) (2026-01-03)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* roles seed ([8848ba0](https://github.com/chenasraf/nextcloud-forum/commit/8848ba03045f69cba40dd9094ade214f1c1b56cc))
|
||||
|
||||
## [0.19.4](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.3...v0.19.4) (2026-01-01)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* seed migration ([e4281e2](https://github.com/chenasraf/nextcloud-forum/commit/e4281e2128a86fa39b8f4a8deec21b82c901b935))
|
||||
|
||||
## [0.19.3](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.2...v0.19.3) (2025-12-31)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add seed migration ([b6e40f9](https://github.com/chenasraf/nextcloud-forum/commit/b6e40f9976d1b9a6d5a1a378d1ff43b72feace06))
|
||||
|
||||
## [0.19.2](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.1...v0.19.2) (2025-12-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* db seeds ([55f1dbd](https://github.com/chenasraf/nextcloud-forum/commit/55f1dbd25867488f7a3cf93726fb444976341e5d))
|
||||
* **l10n:** Update translations from Transifex ([81e35c1](https://github.com/chenasraf/nextcloud-forum/commit/81e35c114b84d77bee5f471c6d1f27154a7730d8))
|
||||
* **l10n:** Update translations from Transifex ([d28b8c0](https://github.com/chenasraf/nextcloud-forum/commit/d28b8c0f88255fad38bff24dd6747ce420f08919))
|
||||
* **l10n:** Update translations from Transifex ([4d7efe9](https://github.com/chenasraf/nextcloud-forum/commit/4d7efe9d32084e8accd857e68bd4434d415ff784))
|
||||
* **l10n:** Update translations from Transifex ([7ae4d8f](https://github.com/chenasraf/nextcloud-forum/commit/7ae4d8f369c87fb5a65a7dbc60980e4760fb4f7b))
|
||||
* **l10n:** Update translations from Transifex ([1dad565](https://github.com/chenasraf/nextcloud-forum/commit/1dad565072ced353a47e2f7ece865a81757ff81a))
|
||||
|
||||
## [0.19.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.0...v0.19.1) (2025-12-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **l10n:** Update translations from Transifex ([02e9b09](https://github.com/chenasraf/nextcloud-forum/commit/02e9b093e842f5b1016a1d2277b630ef67085d86))
|
||||
* **l10n:** Update translations from Transifex ([fce3633](https://github.com/chenasraf/nextcloud-forum/commit/fce363355e1e442069d7e883d08bb6f43014b9b7))
|
||||
* **l10n:** Update translations from Transifex ([2cd21b0](https://github.com/chenasraf/nextcloud-forum/commit/2cd21b0792bfdcc4f3d64285cd81f280db6a8b7b))
|
||||
* **l10n:** Update translations from Transifex ([b235d4a](https://github.com/chenasraf/nextcloud-forum/commit/b235d4a7391bb8b4c26fe0de8c1d37fac874c454))
|
||||
* **l10n:** update version text ([12459e5](https://github.com/chenasraf/nextcloud-forum/commit/12459e5fca252e48ae2259ca9dbf1b6f367aad99))
|
||||
|
||||
## [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)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* thread drafts ([0a0e64d](https://github.com/chenasraf/nextcloud-forum/commit/0a0e64dae553d6369c64698f82d7df86eaa1e7ca))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **l10n:** Update translations from Transifex ([3876513](https://github.com/chenasraf/nextcloud-forum/commit/38765131190c1718f51088b05f1374b0ab456d69))
|
||||
* **l10n:** Update translations from Transifex ([db03c5f](https://github.com/chenasraf/nextcloud-forum/commit/db03c5fc50aa84142befb197e0fad768f2572a71))
|
||||
|
||||
## [0.17.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.17.0...v0.17.1) (2025-12-13)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **l10n:** Update translations from Transifex ([5fec057](https://github.com/chenasraf/nextcloud-forum/commit/5fec0577eee3ffa1efcf39208b5090c6285f63cd))
|
||||
* migration/seed users table mismatches ([b5df3a6](https://github.com/chenasraf/nextcloud-forum/commit/b5df3a66be83873523eddf02889857ca9cf75b94))
|
||||
|
||||
## [0.17.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.16.0...v0.17.0) (2025-12-12)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* deep-link into specific post/page on thread ([2d64358](https://github.com/chenasraf/nextcloud-forum/commit/2d643583afd5d1fce31d93e36c3204b6014235a6))
|
||||
* notify users on mention ([c84a4b3](https://github.com/chenasraf/nextcloud-forum/commit/c84a4b356ba7d1fa06055ce25c9ce0694bc232bf))
|
||||
* update navigation sidebar items behavior ([9762443](https://github.com/chenasraf/nextcloud-forum/commit/9762443685529abe2506f70b18ef271c79439c45))
|
||||
* user mentions ([80c85a2](https://github.com/chenasraf/nextcloud-forum/commit/80c85a2cabe0ee9bcdf933561acb1fa9224a5546))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* dark avatars in mentions in profile view ([af507dd](https://github.com/chenasraf/nextcloud-forum/commit/af507dda88c08a8ebc33d6df90499e33dade4176))
|
||||
* exclude own user from autocomplete ([59c5f91](https://github.com/chenasraf/nextcloud-forum/commit/59c5f91fb09f070fd798e562f7ec32af372e61c3))
|
||||
* globally add theme data to app ([9e00c93](https://github.com/chenasraf/nextcloud-forum/commit/9e00c931d19e3660c54f179a908050f6c59358d5))
|
||||
* improve user id fetching ([db5374d](https://github.com/chenasraf/nextcloud-forum/commit/db5374de2e9624df4547ea632e9d36f70166acca))
|
||||
* **l10n:** Update translations from Transifex ([c65d9a5](https://github.com/chenasraf/nextcloud-forum/commit/c65d9a592a51212a671dafe7b46840bfbf6b8347))
|
||||
* **l10n:** Update translations from Transifex ([d1d1c2e](https://github.com/chenasraf/nextcloud-forum/commit/d1d1c2ec51e1b5c496e560aab4b25bdf1b937df9))
|
||||
* **l10n:** Update translations from Transifex ([4fd4e50](https://github.com/chenasraf/nextcloud-forum/commit/4fd4e5046b16571e228ea04ea38e1e8a07b8a563))
|
||||
* **l10n:** Update translations from Transifex ([5976596](https://github.com/chenasraf/nextcloud-forum/commit/59765960e6b72ca4463a1986d32eb5fce0b8c534))
|
||||
|
||||
## [0.16.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.15.0...v0.16.0) (2025-12-08)
|
||||
|
||||
|
||||
|
||||
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.16.0</version>
|
||||
<version>0.20.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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
198
composer.lock
generated
198
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": "116121f02bbca0fec8f26c658e17f3f6e90010ff"
|
||||
"reference": "5ba14c800ff89c74333c22d56ca1c1f35c424805"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/116121f02bbca0fec8f26c658e17f3f6e90010ff",
|
||||
"reference": "116121f02bbca0fec8f26c658e17f3f6e90010ff",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/5ba14c800ff89c74333c22d56ca1c1f35c424805",
|
||||
"reference": "5ba14c800ff89c74333c22d56ca1c1f35c424805",
|
||||
"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,22 +1086,22 @@
|
||||
"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",
|
||||
"aws/aws-sdk-php": "<3.288.1",
|
||||
"azuracast/azuracast": "<0.18.3",
|
||||
"aws/aws-sdk-php": "<3.368",
|
||||
"azuracast/azuracast": "<=0.23.1",
|
||||
"b13/seo_basics": "<0.8.2",
|
||||
"backdrop/backdrop": "<=1.32",
|
||||
"backpack/crud": "<3.4.9",
|
||||
"backpack/filemanager": "<2.0.2|>=3,<3.0.9",
|
||||
"bacula-web/bacula-web": "<9.7.1",
|
||||
"badaso/core": "<=2.9.11",
|
||||
"bagisto/bagisto": "<=2.3.7",
|
||||
"bagisto/bagisto": "<2.3.10",
|
||||
"barrelstrength/sprout-base-email": "<1.2.7",
|
||||
"barrelstrength/sprout-forms": "<3.9",
|
||||
"barryvdh/laravel-translation-manager": "<0.6.8",
|
||||
@@ -1128,6 +1133,7 @@
|
||||
"bvbmedia/multishop": "<2.0.39",
|
||||
"bytefury/crater": "<6.0.2",
|
||||
"cachethq/cachet": "<2.5.1",
|
||||
"cadmium-org/cadmium-cms": "<=0.4.9",
|
||||
"cakephp/cakephp": "<3.10.3|>=4,<4.0.10|>=4.1,<4.1.4|>=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
|
||||
"cakephp/database": ">=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
|
||||
"cardgate/magento2": "<2.0.33",
|
||||
@@ -1157,7 +1163,7 @@
|
||||
"codingms/modules": "<4.3.11|>=5,<5.7.4|>=6,<6.4.2|>=7,<7.5.5",
|
||||
"commerceteam/commerce": ">=0.9.6,<0.9.9",
|
||||
"components/jquery": ">=1.0.3,<3.5",
|
||||
"composer/composer": "<1.10.27|>=2,<2.2.24|>=2.3,<2.7.7",
|
||||
"composer/composer": "<1.10.27|>=2,<2.2.26|>=2.3,<2.9.3",
|
||||
"concrete5/concrete5": "<9.4.3",
|
||||
"concrete5/core": "<8.5.8|>=9,<9.1",
|
||||
"contao-components/mediaelement": ">=2.14.2,<2.21.1",
|
||||
@@ -1171,7 +1177,7 @@
|
||||
"cosenary/instagram": "<=2.3",
|
||||
"couleurcitron/tarteaucitron-wp": "<0.3",
|
||||
"craftcms/cms": "<=4.16.5|>=5,<=5.8.6",
|
||||
"croogo/croogo": "<4",
|
||||
"croogo/croogo": "<=4.0.7",
|
||||
"cuyz/valinor": "<0.12",
|
||||
"czim/file-handling": "<1.5|>=2,<2.3",
|
||||
"czproject/git-php": "<4.0.3",
|
||||
@@ -1282,12 +1288,13 @@
|
||||
"ezsystems/repository-forms": ">=2.3,<2.3.2.1-dev|>=2.5,<2.5.15",
|
||||
"ezyang/htmlpurifier": "<=4.2",
|
||||
"facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2",
|
||||
"facturascripts/facturascripts": "<=2022.08",
|
||||
"facturascripts/facturascripts": "<=2025.4|==2025.11|==2025.41|==2025.43",
|
||||
"fastly/magento2": "<1.2.26",
|
||||
"feehi/cms": "<=2.1.1",
|
||||
"feehi/feehicms": "<=2.1.1",
|
||||
"fenom/fenom": "<=2.12.1",
|
||||
"filament/actions": ">=3.2,<3.2.123",
|
||||
"filament/filament": ">=4,<4.3.1",
|
||||
"filament/infolists": ">=3,<3.2.115",
|
||||
"filament/tables": ">=3,<3.2.115",
|
||||
"filegator/filegator": "<7.8",
|
||||
@@ -1306,6 +1313,7 @@
|
||||
"floriangaerber/magnesium": "<0.3.1",
|
||||
"fluidtypo3/vhs": "<5.1.1",
|
||||
"fof/byobu": ">=0.3.0.0-beta2,<1.1.7",
|
||||
"fof/pretty-mail": "<=1.1.2",
|
||||
"fof/upload": "<1.2.3",
|
||||
"foodcoopshop/foodcoopshop": ">=3.2,<3.6.1",
|
||||
"fooman/tcpdf": "<6.2.22",
|
||||
@@ -1369,7 +1377,7 @@
|
||||
"ibexa/http-cache": ">=4.6,<4.6.14",
|
||||
"ibexa/post-install": "<1.0.16|>=4.6,<4.6.14",
|
||||
"ibexa/solr": ">=4.5,<4.5.4",
|
||||
"ibexa/user": ">=4,<4.4.3|>=5,<5.0.3",
|
||||
"ibexa/user": ">=4,<4.4.3|>=5,<5.0.4",
|
||||
"icecoder/icecoder": "<=8.1",
|
||||
"idno/known": "<=1.3.1",
|
||||
"ilicmiljan/secure-props": ">=1.2,<1.2.2",
|
||||
@@ -1452,7 +1460,7 @@
|
||||
"leantime/leantime": "<3.3",
|
||||
"lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3",
|
||||
"libreform/libreform": ">=2,<=2.0.8",
|
||||
"librenms/librenms": "<25.11",
|
||||
"librenms/librenms": "<25.12",
|
||||
"liftkit/database": "<2.13.2",
|
||||
"lightsaml/lightsaml": "<1.3.5",
|
||||
"limesurvey/limesurvey": "<6.5.12",
|
||||
@@ -1506,6 +1514,7 @@
|
||||
"microsoft/microsoft-graph-core": "<2.0.2",
|
||||
"microweber/microweber": "<=2.0.19",
|
||||
"mikehaertl/php-shellcommand": "<1.6.1",
|
||||
"mineadmin/mineadmin": "<=3.0.9",
|
||||
"miniorange/miniorange-saml": "<1.4.3",
|
||||
"mittwald/typo3_forum": "<1.2.1",
|
||||
"mobiledetect/mobiledetectlib": "<2.8.32",
|
||||
@@ -1542,6 +1551,7 @@
|
||||
"netgen/tagsbundle": ">=3.4,<3.4.11|>=4,<4.0.15",
|
||||
"nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6",
|
||||
"nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",
|
||||
"neuron-core/neuron-ai": "<=2.8.11",
|
||||
"nilsteampassnet/teampass": "<3.1.3.1-dev",
|
||||
"nitsan/ns-backup": "<13.0.1",
|
||||
"nonfiction/nterchange": "<4.1.1",
|
||||
@@ -1561,7 +1571,7 @@
|
||||
"october/system": "<3.7.5",
|
||||
"oliverklee/phpunit": "<3.5.15",
|
||||
"omeka/omeka-s": "<4.0.3",
|
||||
"onelogin/php-saml": "<2.10.4",
|
||||
"onelogin/php-saml": "<2.21.1|>=3,<3.8.1|>=4,<4.3.1",
|
||||
"oneup/uploader-bundle": ">=1,<1.9.3|>=2,<2.1.5",
|
||||
"open-web-analytics/open-web-analytics": "<1.8.1",
|
||||
"opencart/opencart": ">=0",
|
||||
@@ -1585,6 +1595,7 @@
|
||||
"pagekit/pagekit": "<=1.0.18",
|
||||
"paragonie/ecc": "<2.0.1",
|
||||
"paragonie/random_compat": "<2",
|
||||
"paragonie/sodium_compat": "<1.24|>=2,<2.5",
|
||||
"passbolt/passbolt_api": "<4.6.2",
|
||||
"paypal/adaptivepayments-sdk-php": "<=3.9.2",
|
||||
"paypal/invoice-sdk-php": "<=3.9",
|
||||
@@ -1652,7 +1663,7 @@
|
||||
"processwire/processwire": "<=3.0.246",
|
||||
"propel/propel": ">=2.0.0.0-alpha1,<=2.0.0.0-alpha7",
|
||||
"propel/propel1": ">=1,<=1.7.1",
|
||||
"pterodactyl/panel": "<=1.11.10",
|
||||
"pterodactyl/panel": "<1.12",
|
||||
"ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2",
|
||||
"ptrofimov/beanstalk_console": "<1.7.14",
|
||||
"pubnub/pubnub": "<6.1",
|
||||
@@ -1695,8 +1706,8 @@
|
||||
"shopware/core": "<6.6.10.9-dev|>=6.7,<6.7.4.1-dev",
|
||||
"shopware/platform": "<6.6.10.7-dev|>=6.7,<6.7.3.1-dev",
|
||||
"shopware/production": "<=6.3.5.2",
|
||||
"shopware/shopware": "<=5.7.17|>=6.7,<6.7.2.1-dev",
|
||||
"shopware/storefront": "<=6.4.8.1|>=6.5.8,<6.5.8.7-dev",
|
||||
"shopware/shopware": "<=5.7.17|>=6.4.6,<6.6.10.10-dev|>=6.7,<6.7.5.1-dev",
|
||||
"shopware/storefront": "<6.6.10.10-dev|>=6.7,<6.7.5.1-dev",
|
||||
"shopxo/shopxo": "<=6.4",
|
||||
"showdoc/showdoc": "<2.10.4",
|
||||
"shuchkin/simplexlsx": ">=1.0.12,<1.1.13",
|
||||
@@ -1829,7 +1840,7 @@
|
||||
"thelia/thelia": ">=2.1,<2.1.3",
|
||||
"theonedemon/phpwhois": "<=4.2.5",
|
||||
"thinkcmf/thinkcmf": "<6.0.8",
|
||||
"thorsten/phpmyfaq": "<=4.0.13",
|
||||
"thorsten/phpmyfaq": "<4.0.16|>=4.1.0.0-alpha,<=4.1.0.0-beta2",
|
||||
"tikiwiki/tiki-manager": "<=17.1",
|
||||
"timber/timber": ">=0.16.6,<1.23.1|>=1.24,<1.24.1|>=2,<2.1",
|
||||
"tinymce/tinymce": "<7.2",
|
||||
@@ -1945,8 +1956,9 @@
|
||||
"yiisoft/yii2-redis": "<2.0.20",
|
||||
"yikesinc/yikes-inc-easy-mailchimp-extender": "<6.8.6",
|
||||
"yoast-seo-for-typo3/yoast_seo": "<7.2.3",
|
||||
"yourls/yourls": "<=1.8.2",
|
||||
"yourls/yourls": "<=1.10.2",
|
||||
"yuan1994/tpadmin": "<=1.3.12",
|
||||
"yungifez/skuul": "<=2.6.5",
|
||||
"z-push/z-push-dev": "<2.7.6",
|
||||
"zencart/zencart": "<=1.5.7.0-beta",
|
||||
"zendesk/zendesk_api_client_php": "<2.2.11",
|
||||
@@ -2022,7 +2034,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2025-12-08T18:07:51+00:00"
|
||||
"time": "2026-01-02T22:05:49+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/cli-parser",
|
||||
|
||||
85
gen/component/{{pascalCase name}}.test.ts
Normal file
85
gen/component/{{pascalCase name}}.test.ts
Normal file
@@ -0,0 +1,85 @@
|
||||
// SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
|
||||
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
/**
|
||||
* Unit tests for {{pascalCase name}} component.
|
||||
*
|
||||
* See src/components/StatusBadge.test.ts for a complete example.
|
||||
*/
|
||||
import { mount } from '@vue/test-utils'
|
||||
import { describe, expect, it, vi } from 'vitest'
|
||||
|
||||
import { createIconMock, nextcloudL10nMock } from '@/test-utils'
|
||||
import {{ pascalCase name }} from './{{pascalCase name}}.vue'
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Mocks - uncomment as needed
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
// Mock @nextcloud/l10n (if your component uses t() or n())
|
||||
// vi.mock('@nextcloud/l10n', () => nextcloudL10nMock)
|
||||
|
||||
// Mock icon components (adjust path and name as needed)
|
||||
// vi.mock('@icons/Check.vue', () => createIconMock('CheckIcon'))
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Tests
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
describe('{{pascalCase name}}', () => {
|
||||
// Example: Basic rendering
|
||||
// it('renders correctly', () => {
|
||||
// const wrapper = mount({{pascalCase name}})
|
||||
// expect(wrapper.exists()).toBe(true)
|
||||
// })
|
||||
|
||||
// Example: Testing with props
|
||||
// it('renders with props', () => {
|
||||
// const wrapper = mount({{pascalCase name}}, {
|
||||
// props: { title: 'Hello' },
|
||||
// })
|
||||
// expect(wrapper.text()).toContain('Hello')
|
||||
// })
|
||||
|
||||
// Example: Testing CSS classes
|
||||
// it('applies correct CSS class', () => {
|
||||
// const wrapper = mount({{pascalCase name}}, {
|
||||
// props: { variant: 'primary' },
|
||||
// })
|
||||
// expect(wrapper.classes()).toContain('is-primary')
|
||||
// })
|
||||
|
||||
// Example: Testing emitted events
|
||||
// it('emits click event', async () => {
|
||||
// const wrapper = mount({{pascalCase name}})
|
||||
// await wrapper.trigger('click')
|
||||
// expect(wrapper.emitted('click')).toBeTruthy()
|
||||
// })
|
||||
|
||||
// Example: Testing computed properties
|
||||
// it('computes derived value', () => {
|
||||
// const wrapper = mount({{pascalCase name}}, {
|
||||
// props: { count: 5 },
|
||||
// })
|
||||
// const vm = wrapper.vm as InstanceType<typeof {{pascalCase name}}>
|
||||
// expect(vm.doubleCount).toBe(10)
|
||||
// })
|
||||
|
||||
// Example: Testing conditional rendering
|
||||
// it('shows content when condition is met', () => {
|
||||
// const wrapper = mount({{pascalCase name}}, {
|
||||
// props: { showDetails: true },
|
||||
// })
|
||||
// expect(wrapper.find('.details').exists()).toBe(true)
|
||||
// })
|
||||
|
||||
// Example: Testing slots
|
||||
// it('renders slot content', () => {
|
||||
// const wrapper = mount({{pascalCase name}}, {
|
||||
// slots: { default: 'Slot content' },
|
||||
// })
|
||||
// expect(wrapper.text()).toContain('Slot content')
|
||||
// })
|
||||
|
||||
it.todo('add your tests here')
|
||||
})
|
||||
@@ -40,7 +40,7 @@ class {{pascalCase name}}Mapper extends QBMapper {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $projectId
|
||||
* @param string $id
|
||||
* @return array<{{pascalCase name}}>
|
||||
*/
|
||||
public function findAll(): array {
|
||||
|
||||
@@ -6,6 +6,7 @@ OC.L10N.register(
|
||||
"Forum" : "Forum",
|
||||
"Search" : "Soek",
|
||||
"Home" : "Tuis",
|
||||
"Bookmarks" : "Boekmerke",
|
||||
"Users" : "Gebruikers",
|
||||
"Collapse" : "Vou In",
|
||||
"Hello world!" : "Hallo wêreld!",
|
||||
@@ -15,11 +16,13 @@ OC.L10N.register(
|
||||
"Page not found" : "Blad nie gevind nie",
|
||||
"Delete" : "Skrap",
|
||||
"Save" : "Stoor",
|
||||
"Unsaved changes" : "Onbewaarde veranderinge",
|
||||
"Retry" : "Herprobeer",
|
||||
"Back to {category}" : "Terug na {category}",
|
||||
"by" : "deur",
|
||||
"Subscribe" : "Teken in",
|
||||
"Files" : "Lêer ",
|
||||
"Signature" : "Handtekening",
|
||||
"Disable" : "Deaktiveer",
|
||||
"Description" : "Beskrywing",
|
||||
"New" : "Nuut",
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
"Forum" : "Forum",
|
||||
"Search" : "Soek",
|
||||
"Home" : "Tuis",
|
||||
"Bookmarks" : "Boekmerke",
|
||||
"Users" : "Gebruikers",
|
||||
"Collapse" : "Vou In",
|
||||
"Hello world!" : "Hallo wêreld!",
|
||||
@@ -13,11 +14,13 @@
|
||||
"Page not found" : "Blad nie gevind nie",
|
||||
"Delete" : "Skrap",
|
||||
"Save" : "Stoor",
|
||||
"Unsaved changes" : "Onbewaarde veranderinge",
|
||||
"Retry" : "Herprobeer",
|
||||
"Back to {category}" : "Terug na {category}",
|
||||
"by" : "deur",
|
||||
"Subscribe" : "Teken in",
|
||||
"Files" : "Lêer ",
|
||||
"Signature" : "Handtekening",
|
||||
"Disable" : "Deaktiveer",
|
||||
"Description" : "Beskrywing",
|
||||
"New" : "Nuut",
|
||||
|
||||
@@ -10,8 +10,10 @@ OC.L10N.register(
|
||||
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
|
||||
"Forum" : "المنتدى",
|
||||
"Deleted user" : "مستخدم محذوف",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Search" : "بحث",
|
||||
"Home" : "الرئيسية",
|
||||
"Bookmarks" : "الإشارات المرجعية Bookmarks",
|
||||
"Dashboard" : "الرئيسية",
|
||||
"Users" : "المستخدمين",
|
||||
"Categories" : "التصنيفات",
|
||||
@@ -36,12 +38,15 @@ OC.L10N.register(
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "غير مقروء",
|
||||
"Save" : "حفظ",
|
||||
"Current version" : "النسخة الحالية",
|
||||
"React with {emoji}" : "تفاعل باستخدام {emoji}",
|
||||
"Uncategorized" : "غير مُصنّفة",
|
||||
"Views" : "مشاهدات",
|
||||
"Title" : "العنوان",
|
||||
"Saving draft …" : "حفظ المسوّدة جارٍ...",
|
||||
"Draft saved" : "تمّ حفظ المُسوَّدة",
|
||||
"Unsaved changes" : "تغييرات لم يتم حفظها",
|
||||
"Refresh" : "إنعاش",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Retry" : "أعِدِ المحاولة",
|
||||
"Error" : "خطأ",
|
||||
"Searching …" : "يتم الآن البحث…",
|
||||
@@ -51,12 +56,14 @@ OC.L10N.register(
|
||||
"by" : "من قِبَل",
|
||||
"Subscribe" : "إشترك",
|
||||
"Subscribed" : "مشترك",
|
||||
"Bookmark" : "إشارة مرجعية bookmark",
|
||||
"Edit title" : "تحرير عنوان",
|
||||
"Move thread" : "أنقُل النَّظْمَة thread",
|
||||
"Preferences" : "التفضيلات",
|
||||
"Notifications" : "الإشعارات",
|
||||
"Files" : "الملفّات",
|
||||
"Browse" : "تصفُّح",
|
||||
"Signature" : "التوقيع",
|
||||
"Enable" : "تمكين",
|
||||
"Disable" : "تعطيل",
|
||||
"Description" : "الوصف",
|
||||
|
||||
@@ -8,8 +8,10 @@
|
||||
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
|
||||
"Forum" : "المنتدى",
|
||||
"Deleted user" : "مستخدم محذوف",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Search" : "بحث",
|
||||
"Home" : "الرئيسية",
|
||||
"Bookmarks" : "الإشارات المرجعية Bookmarks",
|
||||
"Dashboard" : "الرئيسية",
|
||||
"Users" : "المستخدمين",
|
||||
"Categories" : "التصنيفات",
|
||||
@@ -34,12 +36,15 @@
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "غير مقروء",
|
||||
"Save" : "حفظ",
|
||||
"Current version" : "النسخة الحالية",
|
||||
"React with {emoji}" : "تفاعل باستخدام {emoji}",
|
||||
"Uncategorized" : "غير مُصنّفة",
|
||||
"Views" : "مشاهدات",
|
||||
"Title" : "العنوان",
|
||||
"Saving draft …" : "حفظ المسوّدة جارٍ...",
|
||||
"Draft saved" : "تمّ حفظ المُسوَّدة",
|
||||
"Unsaved changes" : "تغييرات لم يتم حفظها",
|
||||
"Refresh" : "إنعاش",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Retry" : "أعِدِ المحاولة",
|
||||
"Error" : "خطأ",
|
||||
"Searching …" : "يتم الآن البحث…",
|
||||
@@ -49,12 +54,14 @@
|
||||
"by" : "من قِبَل",
|
||||
"Subscribe" : "إشترك",
|
||||
"Subscribed" : "مشترك",
|
||||
"Bookmark" : "إشارة مرجعية bookmark",
|
||||
"Edit title" : "تحرير عنوان",
|
||||
"Move thread" : "أنقُل النَّظْمَة thread",
|
||||
"Preferences" : "التفضيلات",
|
||||
"Notifications" : "الإشعارات",
|
||||
"Files" : "الملفّات",
|
||||
"Browse" : "تصفُّح",
|
||||
"Signature" : "التوقيع",
|
||||
"Enable" : "تمكين",
|
||||
"Disable" : "تعطيل",
|
||||
"Description" : "الوصف",
|
||||
|
||||
@@ -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",
|
||||
@@ -33,11 +34,13 @@ OC.L10N.register(
|
||||
"Delete" : "Desaniciar",
|
||||
"Unread" : "Ensin lleer",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"Uncategorized" : "Ensin categoría",
|
||||
"Views" : "Vistes",
|
||||
"Title" : "Títulu",
|
||||
"Draft saved" : "Guardóse'l borrador",
|
||||
"Unsaved changes" : "Cambeos ensin guardar",
|
||||
"Refresh" : "Anovar",
|
||||
"Loading …" : "Cargando…",
|
||||
"Retry" : "Retentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando…",
|
||||
@@ -51,6 +54,7 @@ OC.L10N.register(
|
||||
"Preferences" : "Preferencies",
|
||||
"Notifications" : "Avisos",
|
||||
"Files" : "Ficheros",
|
||||
"Signature" : "Firma",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Desactivar",
|
||||
"Description" : "Descripción",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"Underlined text" : "Testu solliniáu",
|
||||
"Forum" : "Foru",
|
||||
"Deleted user" : "Usuariu desaniciáu",
|
||||
"Loading …" : "Cargando…",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Aniciu",
|
||||
"Dashboard" : "Panel",
|
||||
@@ -31,11 +32,13 @@
|
||||
"Delete" : "Desaniciar",
|
||||
"Unread" : "Ensin lleer",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"Uncategorized" : "Ensin categoría",
|
||||
"Views" : "Vistes",
|
||||
"Title" : "Títulu",
|
||||
"Draft saved" : "Guardóse'l borrador",
|
||||
"Unsaved changes" : "Cambeos ensin guardar",
|
||||
"Refresh" : "Anovar",
|
||||
"Loading …" : "Cargando…",
|
||||
"Retry" : "Retentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando…",
|
||||
@@ -49,6 +52,7 @@
|
||||
"Preferences" : "Preferencies",
|
||||
"Notifications" : "Avisos",
|
||||
"Files" : "Ficheros",
|
||||
"Signature" : "Firma",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Desactivar",
|
||||
"Description" : "Descripción",
|
||||
|
||||
@@ -23,6 +23,7 @@ OC.L10N.register(
|
||||
"Error" : "Səhv",
|
||||
"by" : "onunla",
|
||||
"Subscribe" : "Abunə",
|
||||
"Signature" : "İmza",
|
||||
"Disable" : "Dayandır",
|
||||
"Description" : "Açıqlanma",
|
||||
"Enabled" : "İşə salınıb",
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
"Error" : "Səhv",
|
||||
"by" : "onunla",
|
||||
"Subscribe" : "Abunə",
|
||||
"Signature" : "İmza",
|
||||
"Disable" : "Dayandır",
|
||||
"Description" : "Açıqlanma",
|
||||
"Enabled" : "İşə salınıb",
|
||||
|
||||
10
l10n/be.js
10
l10n/be.js
@@ -16,6 +16,7 @@ OC.L10N.register(
|
||||
"Forum" : "Форум",
|
||||
"Welcome to the forum!" : "Вітаем на форуме!",
|
||||
"Deleted user" : "Выдалены карыстальнік",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Search" : "Пошук",
|
||||
"Home" : "Дадому",
|
||||
"Dashboard" : "Панэль кіравання",
|
||||
@@ -55,16 +56,19 @@ OC.L10N.register(
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Вы ўпэўнены, што хочаце выдаліць гэты допіс? Гэта дзеянне нельга адрабіць.",
|
||||
"Unread" : "Непрачытанае",
|
||||
"Save" : "Захаваць",
|
||||
"Current version" : "Бягучая версія",
|
||||
"Version {index}" : "Версія {index}",
|
||||
"Add reaction" : "Дадаць рэакцыю",
|
||||
"React with {emoji}" : "Адрэагаваць з {emoji}",
|
||||
"_%n post_::_%n posts_" : ["%n допіс","%n допісы","%n допісаў","%n допісаў"],
|
||||
"_%n reply_::_%n replies_" : ["%n адказ","%n адказы","%n адказаў","%n адказаў"],
|
||||
"Title" : "Загаловак",
|
||||
"Saving draft …" : "Захаванне чарнавіка …",
|
||||
"Draft saved" : "Чарнавік захаваны",
|
||||
"Unsaved changes" : "Незахаваныя змены",
|
||||
"Refresh" : "Абнавіць",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Retry" : "Паўтарыць спробу",
|
||||
"In {category}" : "У {category}",
|
||||
"Error" : "Памылка",
|
||||
"First post" : "Першы допіс",
|
||||
"Searching …" : "Пошук …",
|
||||
"No results found" : "Вынікаў не знойдзена",
|
||||
"Back to {category}" : "Назад да {category}",
|
||||
|
||||
10
l10n/be.json
10
l10n/be.json
@@ -14,6 +14,7 @@
|
||||
"Forum" : "Форум",
|
||||
"Welcome to the forum!" : "Вітаем на форуме!",
|
||||
"Deleted user" : "Выдалены карыстальнік",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Search" : "Пошук",
|
||||
"Home" : "Дадому",
|
||||
"Dashboard" : "Панэль кіравання",
|
||||
@@ -53,16 +54,19 @@
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Вы ўпэўнены, што хочаце выдаліць гэты допіс? Гэта дзеянне нельга адрабіць.",
|
||||
"Unread" : "Непрачытанае",
|
||||
"Save" : "Захаваць",
|
||||
"Current version" : "Бягучая версія",
|
||||
"Version {index}" : "Версія {index}",
|
||||
"Add reaction" : "Дадаць рэакцыю",
|
||||
"React with {emoji}" : "Адрэагаваць з {emoji}",
|
||||
"_%n post_::_%n posts_" : ["%n допіс","%n допісы","%n допісаў","%n допісаў"],
|
||||
"_%n reply_::_%n replies_" : ["%n адказ","%n адказы","%n адказаў","%n адказаў"],
|
||||
"Title" : "Загаловак",
|
||||
"Saving draft …" : "Захаванне чарнавіка …",
|
||||
"Draft saved" : "Чарнавік захаваны",
|
||||
"Unsaved changes" : "Незахаваныя змены",
|
||||
"Refresh" : "Абнавіць",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Retry" : "Паўтарыць спробу",
|
||||
"In {category}" : "У {category}",
|
||||
"Error" : "Памылка",
|
||||
"First post" : "Першы допіс",
|
||||
"Searching …" : "Пошук …",
|
||||
"No results found" : "Вынікаў не знойдзена",
|
||||
"Back to {category}" : "Назад да {category}",
|
||||
|
||||
@@ -9,8 +9,10 @@ OC.L10N.register(
|
||||
"Underlined text" : "Подчертан текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Изтрит потребител",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Search" : "Търсене",
|
||||
"Home" : "Начало",
|
||||
"Bookmarks" : "Отметки",
|
||||
"Dashboard" : "Табло",
|
||||
"Categories" : "Категории",
|
||||
"Expand" : "Разгъване",
|
||||
@@ -38,12 +40,15 @@ OC.L10N.register(
|
||||
"Delete" : "Изтриване",
|
||||
"Unread" : "Непрочетено",
|
||||
"Save" : "Запиши",
|
||||
"Current version" : "Текуща версия",
|
||||
"React with {emoji}" : "Реагирайте с {emoji}",
|
||||
"Uncategorized" : "Некатегоризирани",
|
||||
"Views" : "Изгледи",
|
||||
"Title" : "Заглавие",
|
||||
"Saving draft …" : "Записване на чернова …",
|
||||
"Draft saved" : "Черновата е записана",
|
||||
"Unsaved changes" : "Незаписани промени",
|
||||
"Refresh" : "Опресняване",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Retry" : "Опитай отново",
|
||||
"Error" : "Грешка",
|
||||
"Searching …" : "Търсене ...",
|
||||
@@ -52,11 +57,13 @@ OC.L10N.register(
|
||||
"by" : "от",
|
||||
"Subscribe" : "Абониране",
|
||||
"Subscribed" : "Абониран",
|
||||
"Bookmark" : "Отметка",
|
||||
"Edit title" : "Редактиране на заглавието",
|
||||
"Move thread" : "Преместване на нишката",
|
||||
"Preferences" : "Предпочитания",
|
||||
"Notifications" : "Известия",
|
||||
"Files" : "Файлове",
|
||||
"Signature" : "Подпис",
|
||||
"Enable" : "Включена",
|
||||
"Disable" : "Изключване",
|
||||
"Tag" : "Етикет",
|
||||
|
||||
@@ -7,8 +7,10 @@
|
||||
"Underlined text" : "Подчертан текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Изтрит потребител",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Search" : "Търсене",
|
||||
"Home" : "Начало",
|
||||
"Bookmarks" : "Отметки",
|
||||
"Dashboard" : "Табло",
|
||||
"Categories" : "Категории",
|
||||
"Expand" : "Разгъване",
|
||||
@@ -36,12 +38,15 @@
|
||||
"Delete" : "Изтриване",
|
||||
"Unread" : "Непрочетено",
|
||||
"Save" : "Запиши",
|
||||
"Current version" : "Текуща версия",
|
||||
"React with {emoji}" : "Реагирайте с {emoji}",
|
||||
"Uncategorized" : "Некатегоризирани",
|
||||
"Views" : "Изгледи",
|
||||
"Title" : "Заглавие",
|
||||
"Saving draft …" : "Записване на чернова …",
|
||||
"Draft saved" : "Черновата е записана",
|
||||
"Unsaved changes" : "Незаписани промени",
|
||||
"Refresh" : "Опресняване",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Retry" : "Опитай отново",
|
||||
"Error" : "Грешка",
|
||||
"Searching …" : "Търсене ...",
|
||||
@@ -50,11 +55,13 @@
|
||||
"by" : "от",
|
||||
"Subscribe" : "Абониране",
|
||||
"Subscribed" : "Абониран",
|
||||
"Bookmark" : "Отметка",
|
||||
"Edit title" : "Редактиране на заглавието",
|
||||
"Move thread" : "Преместване на нишката",
|
||||
"Preferences" : "Предпочитания",
|
||||
"Notifications" : "Известия",
|
||||
"Files" : "Файлове",
|
||||
"Signature" : "Подпис",
|
||||
"Enable" : "Включена",
|
||||
"Disable" : "Изключване",
|
||||
"Tag" : "Етикет",
|
||||
|
||||
@@ -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,8 +11,10 @@ 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",
|
||||
"Dashboard" : "Tauler",
|
||||
"Categories" : "Categories",
|
||||
"Expand" : "Expandeix",
|
||||
@@ -41,12 +43,16 @@ OC.L10N.register(
|
||||
"Delete" : "Suprimir",
|
||||
"Unread" : "Per llegir",
|
||||
"Save" : "Desar",
|
||||
"Current version" : "Versió actual",
|
||||
"React with {emoji}" : "Reacciona amb {emoji}",
|
||||
"Uncategorized" : "Sense categoria",
|
||||
"Views" : "Vistes",
|
||||
"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…",
|
||||
@@ -56,6 +62,7 @@ OC.L10N.register(
|
||||
"by" : "per",
|
||||
"Subscribe" : "Subscriu-m'hi",
|
||||
"Subscribed" : "Subscrit",
|
||||
"Bookmark" : "Adreça d'interès",
|
||||
"Edit title" : "Edició del títol",
|
||||
"Move thread" : "Mou el fil",
|
||||
"Preferences" : "Preferències",
|
||||
|
||||
@@ -9,8 +9,10 @@
|
||||
"Underlined text" : "Text subratllat",
|
||||
"Forum" : "Fòrum",
|
||||
"Deleted user" : "Usuari suprimit",
|
||||
"Loading …" : "S'està carregant…",
|
||||
"Search" : "Cercar",
|
||||
"Home" : "Casa",
|
||||
"Bookmarks" : "Adreces d'interès",
|
||||
"Dashboard" : "Tauler",
|
||||
"Categories" : "Categories",
|
||||
"Expand" : "Expandeix",
|
||||
@@ -39,12 +41,16 @@
|
||||
"Delete" : "Suprimir",
|
||||
"Unread" : "Per llegir",
|
||||
"Save" : "Desar",
|
||||
"Current version" : "Versió actual",
|
||||
"React with {emoji}" : "Reacciona amb {emoji}",
|
||||
"Uncategorized" : "Sense categoria",
|
||||
"Views" : "Vistes",
|
||||
"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…",
|
||||
@@ -54,6 +60,7 @@
|
||||
"by" : "per",
|
||||
"Subscribe" : "Subscriu-m'hi",
|
||||
"Subscribed" : "Subscrit",
|
||||
"Bookmark" : "Adreça d'interès",
|
||||
"Edit title" : "Edició del títol",
|
||||
"Move thread" : "Mou el fil",
|
||||
"Preferences" : "Preferències",
|
||||
|
||||
76
l10n/cs.js
76
l10n/cs.js
@@ -38,11 +38,14 @@ OC.L10N.register(
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Neváhejte zahájit novou diskuzi nebo odpovězte na existující vlákna. Vesele pište příspěvky!.",
|
||||
"Forum" : "Diskuzní fórum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nová odpověď v {thread} ","{count} nové odpovědi v {thread} ","{count} nových odpovědí v {thread} ","{count} nové odpovědi v {thread} "],
|
||||
"{user} mentioned you in {thread}" : "{user} vás zmínil(a) v {thread}",
|
||||
"Welcome to the forum!" : "Vítejte ve fóru!",
|
||||
"Deleted user" : "Smazaný uživatel",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud",
|
||||
"Loading …" : "Načítání …",
|
||||
"Search" : "Hledat",
|
||||
"Home" : "Domů",
|
||||
"Bookmarks" : "Záložky",
|
||||
"User preferences" : "Předvolby uživatele",
|
||||
"Dashboard" : "Nástěnka",
|
||||
"Forum settings" : "Nastavení fóra",
|
||||
@@ -119,42 +122,62 @@ OC.L10N.register(
|
||||
"The page you are looking for could not be found." : "Stránka kterou hledáte nebylo možné nalézt.",
|
||||
"Back" : "Zpět",
|
||||
"Go to home" : "Přejít na úvodní stránku",
|
||||
"Pagination" : "Stránkování",
|
||||
"First page" : "První stránka",
|
||||
"Previous page" : "Předchozí stránka",
|
||||
"Next page" : "Následující stránka",
|
||||
"Last page" : "Poslední stránka",
|
||||
"Go to page {page}" : "Přejít na stránku {page}",
|
||||
"Edited" : "Upraveno",
|
||||
"Quote reply" : "Odpovědět s citací",
|
||||
"Edit" : "Upravit",
|
||||
"Delete" : "Smazat",
|
||||
"View edit history" : "Zobrazit historii úprav",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Opravdu chcete tento příspěvek smazat? Tuto akci nepůjde vzít zpět.",
|
||||
"Unread" : "Nastavit jako nepřečtené",
|
||||
"Edit your post …" : "Upravit váš příspěvek …",
|
||||
"Edit your reply …" : "Upravit vaši odpověď …",
|
||||
"Save" : "Uložit",
|
||||
"Are you sure you want to discard your changes?" : "Opravdu chcete vámi provedené změny zahodit?",
|
||||
"Edit history" : "Upravit historii",
|
||||
"Loading history …" : "Načítání historie …",
|
||||
"This post has no edit history." : "Tento příspěvek nemá žádnou historii úprav.",
|
||||
"Current version" : "Stávající verze",
|
||||
"Edited by" : "Upravil/a",
|
||||
"Failed to load edit history" : "Nepodařilo se načíst historii úprav",
|
||||
"Version {index}" : "Verze {index}",
|
||||
"Add reaction" : "Přidat reakci",
|
||||
"React with {emoji}" : "Zareagovat {emoji}",
|
||||
"You reacted with {emoji}" : "Zareagovali jste s použitím {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n dalších jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n osoba zareagovala s použitím {emoji}","%n lidé zareagovali s použitím {emoji}","%n lidí zareagovalo s použitím {emoji}","%n lidé zareagovali s použitím {emoji}"],
|
||||
"Write your reply …" : "Napište svou odpověď …",
|
||||
"Post reply" : "Odeslat odpověď",
|
||||
"Submit reply" : "Odeslat odpověď",
|
||||
"Are you sure you want to discard your reply?" : "Opravdu chcete svou odpověď zahodit?",
|
||||
"In thread" : "Ve vláknu",
|
||||
"Thread unavailable" : "Vlákno není k dispozici",
|
||||
"Pinned thread" : "Připnuté vlákno",
|
||||
"Locked thread" : "Uzamčené vlákno",
|
||||
"Uncategorized" : "Nezařazeno",
|
||||
"_%n post_::_%n posts_" : ["%n příspěvek","%n příspěvky","%n příspěvků","%n příspěvky"],
|
||||
"_%n reply_::_%n replies_" : ["%n odpověď","%n odpovědi","%n odpovědí","%n odpovědi"],
|
||||
"_%n view_::_%n views_" : ["%n zobrazení","%n zobrazení","%n zobrazení","%n zobrazení"],
|
||||
"Views" : "Zobrazení",
|
||||
"Title" : "Titul",
|
||||
"Enter thread title …" : "Zadejte titulek vlákna …",
|
||||
"Write your first post …" : "Napište svůj první příspěvek …",
|
||||
"Write your thread content …" : "Napište obsah vašeho vlákna …",
|
||||
"Create thread" : "Vytvořit vlákno",
|
||||
"Are you sure you want to discard this thread?" : "Opravdu chcete toto vlákno zahodit?",
|
||||
"Saving draft …" : "Ukládání konceptu…",
|
||||
"Draft saved" : "Koncept uložen",
|
||||
"Unsaved changes" : "Neuložené změny",
|
||||
"Back to home" : "Zpět na začátek",
|
||||
"Refresh" : "Znovu načíst",
|
||||
"Loading …" : "Načítání …",
|
||||
"Your bookmarked threads" : "Vaše záložky na vlákna",
|
||||
"Error loading bookmarks" : "Chyba při načítání záložek",
|
||||
"No bookmarks yet" : "Zatím ještě žádné záložky",
|
||||
"Bookmark threads to quickly find them later." : "Ukládejte si vlákna do záložek, abyste je později rychle našli.",
|
||||
"Retry" : "Zkusit znovu",
|
||||
"An unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||
"Failed to load bookmarks" : "Nepodařilo se načíst záložky",
|
||||
"No categories yet" : "Zatím ještě žádné kategorie",
|
||||
"Categories will appear here once they are created." : "Kategorie se objeví, jakmile budou vytvořeny.",
|
||||
"No categories in this section" : "Žádné kategorie v této sekci",
|
||||
@@ -165,8 +188,6 @@ OC.L10N.register(
|
||||
"Error loading category" : "Chyba při načítání kategorie",
|
||||
"No threads yet" : "Zatím žádná vlákna",
|
||||
"Be the first to start a discussion in this category." : "Buďte první kdo začne diskutovat v této kategorii.",
|
||||
"Retry" : "Zkusit znovu",
|
||||
"An unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||
"No category ID or slug provided" : "Nezadán žádný identifikátor kategorie nebo slug",
|
||||
"Failed to load threads" : "Nepodařilo se načíst vlákna",
|
||||
"Create New Thread" : "Vytvořit nové vlákno",
|
||||
@@ -176,17 +197,17 @@ OC.L10N.register(
|
||||
"Failed to create thread" : "Vlákno se nepodařilo vytvořit",
|
||||
"No category specified" : "Neurčena žádná kategorie",
|
||||
"Error" : "Error",
|
||||
"First post" : "První příspěvek",
|
||||
"First activity" : "První aktivita",
|
||||
"Threads ({count})" : "Vlákna ({count})",
|
||||
"Replies ({count})" : "Odpovědi ({count})",
|
||||
"No threads" : "Žádná vlákna",
|
||||
"This user has not created any threads yet" : "Tento uživatel zatím nevytvořil žádná vlákna",
|
||||
"No replies" : "Žádné odpovědi",
|
||||
"This user has not posted any replies yet" : "Tento uživatel zatím neposlal žádné odpovědi",
|
||||
"This user has not written any replies yet" : "Tento uživatel zatím nenapsal žádné odpovědi",
|
||||
"Failed to load user profile" : "Nepodařilo se načíst uživatelský profil",
|
||||
"Enter search query …" : "Zadejte vyhledávací dotaz …",
|
||||
"Search in threads" : "Hledat ve vláknech",
|
||||
"Search in posts" : "Hledat v příspěvcích",
|
||||
"Search in replies" : "Hledat v odpovědích",
|
||||
"Syntax help" : "Nápověda k syntaxi",
|
||||
"Search syntax" : "Syntaxe vyhledávání",
|
||||
"Match exact phrase" : "Hledat shodu v přesné frázi",
|
||||
@@ -197,11 +218,11 @@ OC.L10N.register(
|
||||
"Searching …" : "Hledání …",
|
||||
"Search Error" : "Chyba hledání",
|
||||
"Enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Use the search box above to find threads and posts" : "Ve vláknech a příspěvcích je možné vyhledávat pomocí kolonky výše",
|
||||
"Use the search box above to find threads and replies" : "Ve vláknech a odpovědích je možné vyhledávat pomocí kolonky výše",
|
||||
"No results found" : "Nic nenalezeno",
|
||||
"Try different keywords or check your syntax" : "Zkuste jiná klíčová slova nebo zkontrolujte syntaxi",
|
||||
"_%n thread found_::_%n threads found_" : ["Nalezeno %n vlákno","Nalezena %n vlákna","Nalezeno %n vláken","Nalezena %n vlákna"],
|
||||
"_%n post found_::_%n posts found_" : ["Nalezen %n příspěvek","Nalezeny %n příspěvky","Nalezeno %n příspěvků","Nalezeny %n příspěvky"],
|
||||
"_%n reply found_::_%n replies found_" : ["Nalezena %n odpověď","Nalezeny %n odpovědi","Nalezeno %n odpovědí","Nalezeny %n odpovědi"],
|
||||
"Please enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Please select at least one search scope" : "Vyberte alespoň jednu oblast vyhledávání",
|
||||
"Failed to search" : "Nepodařilo se hledat",
|
||||
@@ -210,10 +231,10 @@ OC.L10N.register(
|
||||
"Back to {category}" : "Zpět na {category}",
|
||||
"Reply" : "Odpověď",
|
||||
"Error loading thread" : "Chyba při načítání vlákna",
|
||||
"No posts yet" : "Zatím žádné příspěvky",
|
||||
"Be the first to post in this thread." : "Buďte první kdo začne zasílat příspěvky do tohoto vlákna.",
|
||||
"No replies yet" : "Zatím žádné odpovědi",
|
||||
"Be the first to reply in this thread." : "Buďte první kdo odpoví v tomto vlákně.",
|
||||
"by" : "od",
|
||||
"This thread is locked. Only moderators can post replies." : "Toto vlákno je uzamčeno. Odpovědi mohou zasíat pouze moderátoři.",
|
||||
"This thread is locked. Only moderators can add replies." : "Toto vlákno je uzamčené. Odpovědi mohou přidávat pouze moderátoři.",
|
||||
"You must be signed in to reply to this thread." : "Pokud chcete v tomto vlákně odpovědět, je třeba, abyste byli přihlášení.",
|
||||
"Sign in to reply" : "Pokud chcete odpovědět, přihlaste se ke svému účtu",
|
||||
"Lock thread" : "Uzamknout vlákno",
|
||||
@@ -228,21 +249,28 @@ OC.L10N.register(
|
||||
"Subscribed" : "Přihlášeno se k odběru",
|
||||
"Subscribed to thread" : "Přihlášeno se k odběru vlákna",
|
||||
"Unsubscribed from thread" : "Zrušeno odebírání vlákna",
|
||||
"Bookmark" : "Záložka",
|
||||
"Remove bookmark" : "Odebrat záložku",
|
||||
"Thread bookmarked" : "Vlákno uloženo do záložek",
|
||||
"Bookmark removed" : "Záložka odebrána",
|
||||
"Edit title" : "Upravit nadpis",
|
||||
"Save title" : "Uložit nadpis",
|
||||
"Thread title updated" : "Nadpis vlákna zaktualizován",
|
||||
"Move thread" : "Přesunout vlákno",
|
||||
"Thread moved successfully" : "Vlákno úspěšně přesunuto",
|
||||
"No thread ID or slug provided" : "Nezadán žádný identifikátor vlákna nebo slug",
|
||||
"Failed to load posts" : "Nepodařilo se načíst příspěvky",
|
||||
"Post updated" : "Příspěvek aktualizován",
|
||||
"Failed to update post" : "Nepodařilo se zaktualizovat příspěvek",
|
||||
"Failed to load replies" : "Nepodařilo se načíst odpovědi",
|
||||
"Thread updated" : "Vlákno zaktualizováno",
|
||||
"Reply updated" : "Odpověď zaktualizována",
|
||||
"Failed to update thread" : "Nepodařilo se zaktualizovat vlákno",
|
||||
"Failed to update reply" : "Nepodařilo se zaktualizovat odpověď",
|
||||
"Thread deleted" : "Vlákno smazáno",
|
||||
"Post deleted" : "Příspěvek smazán",
|
||||
"Failed to delete post" : "Příspěvek se nepodařilo smazat",
|
||||
"Reply deleted" : "Odpověď smazána",
|
||||
"Failed to delete reply" : "Nepodařilo se smazat odpověď",
|
||||
"Failed to update thread lock status" : "Nepodařilo se zaktualizovat stav zámku vlákna",
|
||||
"Failed to update thread pin status" : "Nepodařilo se zaktualizovat stav připnutí vlákna",
|
||||
"Failed to update subscription" : "Nepodařilo se zaktualizovat přihlášení se k odběru",
|
||||
"Failed to update bookmark" : "Nepodařilo se zaktualizovat záložku",
|
||||
"Failed to update thread title" : "Nepodařilo se zaktualizovat nadpis vlákna",
|
||||
"Failed to move thread" : "Nepodařilo se přesunout vlákno",
|
||||
"Preferences" : "Předvolby",
|
||||
@@ -256,14 +284,17 @@ OC.L10N.register(
|
||||
"Files" : "Soubory",
|
||||
"Configure file upload settings" : "Nastavit nahrávání souborů",
|
||||
"Upload directory" : "Složka pro nahrání",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Soubory připojené k tomuto příspěvku budou nahrány do této složky v Nextcloud Soubory",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Soubory připojené k vláknům nebo odpovědím budou nahrány do této složky v Nextcloud Soubory",
|
||||
"Browse" : "Procházet",
|
||||
"Preferences saved" : "Předvolby uloženy",
|
||||
"Signature" : "Podpis",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Váš podpis se objevuje ve spodní části vašich vláken nebo odpovědí",
|
||||
"You can use BBCode formatting in your signature" : "Svůj podpis můžete formátovat pomocí BBCode",
|
||||
"Enter your signature …" : "Zadejte svůj podpis …",
|
||||
"Failed to save preferences" : "Nepodařilo se uložit vaše předvolby",
|
||||
"Select upload directory" : "Vyberte složku pro nahrávání",
|
||||
"BBCode management" : "Správa BBCode",
|
||||
"Manage custom BBCode tags for post formatting" : "Spravovat uživatelsky určené BBCode značky pro formátování příspěvků",
|
||||
"Manage custom BBCode tags for formatting" : "Spravovat uživatelsky určené BBCode značky pro formátování",
|
||||
"Error loading BBCodes" : "Chyba při načítání BBCode kódů",
|
||||
"Create BBCode" : "Vytvořit BBCode",
|
||||
"Enable" : "Povolit",
|
||||
@@ -345,6 +376,7 @@ OC.L10N.register(
|
||||
"Recent activity (last 7 days)" : "Nedávná aktivita (uplynulých 7 dnů)",
|
||||
"New users" : "Nový uživatelé",
|
||||
"New threads" : "Nová vlákna",
|
||||
"New replies" : "Nové odpovědi",
|
||||
"Top contributors" : "Nejaktivnější přispěvatelé",
|
||||
"No contributors yet" : "Zatím žádní přispěvatelé",
|
||||
"Last 7 days" : "Uplynulých 7 dnů",
|
||||
|
||||
76
l10n/cs.json
76
l10n/cs.json
@@ -36,11 +36,14 @@
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Neváhejte zahájit novou diskuzi nebo odpovězte na existující vlákna. Vesele pište příspěvky!.",
|
||||
"Forum" : "Diskuzní fórum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nová odpověď v {thread} ","{count} nové odpovědi v {thread} ","{count} nových odpovědí v {thread} ","{count} nové odpovědi v {thread} "],
|
||||
"{user} mentioned you in {thread}" : "{user} vás zmínil(a) v {thread}",
|
||||
"Welcome to the forum!" : "Vítejte ve fóru!",
|
||||
"Deleted user" : "Smazaný uživatel",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud",
|
||||
"Loading …" : "Načítání …",
|
||||
"Search" : "Hledat",
|
||||
"Home" : "Domů",
|
||||
"Bookmarks" : "Záložky",
|
||||
"User preferences" : "Předvolby uživatele",
|
||||
"Dashboard" : "Nástěnka",
|
||||
"Forum settings" : "Nastavení fóra",
|
||||
@@ -117,42 +120,62 @@
|
||||
"The page you are looking for could not be found." : "Stránka kterou hledáte nebylo možné nalézt.",
|
||||
"Back" : "Zpět",
|
||||
"Go to home" : "Přejít na úvodní stránku",
|
||||
"Pagination" : "Stránkování",
|
||||
"First page" : "První stránka",
|
||||
"Previous page" : "Předchozí stránka",
|
||||
"Next page" : "Následující stránka",
|
||||
"Last page" : "Poslední stránka",
|
||||
"Go to page {page}" : "Přejít na stránku {page}",
|
||||
"Edited" : "Upraveno",
|
||||
"Quote reply" : "Odpovědět s citací",
|
||||
"Edit" : "Upravit",
|
||||
"Delete" : "Smazat",
|
||||
"View edit history" : "Zobrazit historii úprav",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Opravdu chcete tento příspěvek smazat? Tuto akci nepůjde vzít zpět.",
|
||||
"Unread" : "Nastavit jako nepřečtené",
|
||||
"Edit your post …" : "Upravit váš příspěvek …",
|
||||
"Edit your reply …" : "Upravit vaši odpověď …",
|
||||
"Save" : "Uložit",
|
||||
"Are you sure you want to discard your changes?" : "Opravdu chcete vámi provedené změny zahodit?",
|
||||
"Edit history" : "Upravit historii",
|
||||
"Loading history …" : "Načítání historie …",
|
||||
"This post has no edit history." : "Tento příspěvek nemá žádnou historii úprav.",
|
||||
"Current version" : "Stávající verze",
|
||||
"Edited by" : "Upravil/a",
|
||||
"Failed to load edit history" : "Nepodařilo se načíst historii úprav",
|
||||
"Version {index}" : "Verze {index}",
|
||||
"Add reaction" : "Přidat reakci",
|
||||
"React with {emoji}" : "Zareagovat {emoji}",
|
||||
"You reacted with {emoji}" : "Zareagovali jste s použitím {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n dalších jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n osoba zareagovala s použitím {emoji}","%n lidé zareagovali s použitím {emoji}","%n lidí zareagovalo s použitím {emoji}","%n lidé zareagovali s použitím {emoji}"],
|
||||
"Write your reply …" : "Napište svou odpověď …",
|
||||
"Post reply" : "Odeslat odpověď",
|
||||
"Submit reply" : "Odeslat odpověď",
|
||||
"Are you sure you want to discard your reply?" : "Opravdu chcete svou odpověď zahodit?",
|
||||
"In thread" : "Ve vláknu",
|
||||
"Thread unavailable" : "Vlákno není k dispozici",
|
||||
"Pinned thread" : "Připnuté vlákno",
|
||||
"Locked thread" : "Uzamčené vlákno",
|
||||
"Uncategorized" : "Nezařazeno",
|
||||
"_%n post_::_%n posts_" : ["%n příspěvek","%n příspěvky","%n příspěvků","%n příspěvky"],
|
||||
"_%n reply_::_%n replies_" : ["%n odpověď","%n odpovědi","%n odpovědí","%n odpovědi"],
|
||||
"_%n view_::_%n views_" : ["%n zobrazení","%n zobrazení","%n zobrazení","%n zobrazení"],
|
||||
"Views" : "Zobrazení",
|
||||
"Title" : "Titul",
|
||||
"Enter thread title …" : "Zadejte titulek vlákna …",
|
||||
"Write your first post …" : "Napište svůj první příspěvek …",
|
||||
"Write your thread content …" : "Napište obsah vašeho vlákna …",
|
||||
"Create thread" : "Vytvořit vlákno",
|
||||
"Are you sure you want to discard this thread?" : "Opravdu chcete toto vlákno zahodit?",
|
||||
"Saving draft …" : "Ukládání konceptu…",
|
||||
"Draft saved" : "Koncept uložen",
|
||||
"Unsaved changes" : "Neuložené změny",
|
||||
"Back to home" : "Zpět na začátek",
|
||||
"Refresh" : "Znovu načíst",
|
||||
"Loading …" : "Načítání …",
|
||||
"Your bookmarked threads" : "Vaše záložky na vlákna",
|
||||
"Error loading bookmarks" : "Chyba při načítání záložek",
|
||||
"No bookmarks yet" : "Zatím ještě žádné záložky",
|
||||
"Bookmark threads to quickly find them later." : "Ukládejte si vlákna do záložek, abyste je později rychle našli.",
|
||||
"Retry" : "Zkusit znovu",
|
||||
"An unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||
"Failed to load bookmarks" : "Nepodařilo se načíst záložky",
|
||||
"No categories yet" : "Zatím ještě žádné kategorie",
|
||||
"Categories will appear here once they are created." : "Kategorie se objeví, jakmile budou vytvořeny.",
|
||||
"No categories in this section" : "Žádné kategorie v této sekci",
|
||||
@@ -163,8 +186,6 @@
|
||||
"Error loading category" : "Chyba při načítání kategorie",
|
||||
"No threads yet" : "Zatím žádná vlákna",
|
||||
"Be the first to start a discussion in this category." : "Buďte první kdo začne diskutovat v této kategorii.",
|
||||
"Retry" : "Zkusit znovu",
|
||||
"An unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||
"No category ID or slug provided" : "Nezadán žádný identifikátor kategorie nebo slug",
|
||||
"Failed to load threads" : "Nepodařilo se načíst vlákna",
|
||||
"Create New Thread" : "Vytvořit nové vlákno",
|
||||
@@ -174,17 +195,17 @@
|
||||
"Failed to create thread" : "Vlákno se nepodařilo vytvořit",
|
||||
"No category specified" : "Neurčena žádná kategorie",
|
||||
"Error" : "Error",
|
||||
"First post" : "První příspěvek",
|
||||
"First activity" : "První aktivita",
|
||||
"Threads ({count})" : "Vlákna ({count})",
|
||||
"Replies ({count})" : "Odpovědi ({count})",
|
||||
"No threads" : "Žádná vlákna",
|
||||
"This user has not created any threads yet" : "Tento uživatel zatím nevytvořil žádná vlákna",
|
||||
"No replies" : "Žádné odpovědi",
|
||||
"This user has not posted any replies yet" : "Tento uživatel zatím neposlal žádné odpovědi",
|
||||
"This user has not written any replies yet" : "Tento uživatel zatím nenapsal žádné odpovědi",
|
||||
"Failed to load user profile" : "Nepodařilo se načíst uživatelský profil",
|
||||
"Enter search query …" : "Zadejte vyhledávací dotaz …",
|
||||
"Search in threads" : "Hledat ve vláknech",
|
||||
"Search in posts" : "Hledat v příspěvcích",
|
||||
"Search in replies" : "Hledat v odpovědích",
|
||||
"Syntax help" : "Nápověda k syntaxi",
|
||||
"Search syntax" : "Syntaxe vyhledávání",
|
||||
"Match exact phrase" : "Hledat shodu v přesné frázi",
|
||||
@@ -195,11 +216,11 @@
|
||||
"Searching …" : "Hledání …",
|
||||
"Search Error" : "Chyba hledání",
|
||||
"Enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Use the search box above to find threads and posts" : "Ve vláknech a příspěvcích je možné vyhledávat pomocí kolonky výše",
|
||||
"Use the search box above to find threads and replies" : "Ve vláknech a odpovědích je možné vyhledávat pomocí kolonky výše",
|
||||
"No results found" : "Nic nenalezeno",
|
||||
"Try different keywords or check your syntax" : "Zkuste jiná klíčová slova nebo zkontrolujte syntaxi",
|
||||
"_%n thread found_::_%n threads found_" : ["Nalezeno %n vlákno","Nalezena %n vlákna","Nalezeno %n vláken","Nalezena %n vlákna"],
|
||||
"_%n post found_::_%n posts found_" : ["Nalezen %n příspěvek","Nalezeny %n příspěvky","Nalezeno %n příspěvků","Nalezeny %n příspěvky"],
|
||||
"_%n reply found_::_%n replies found_" : ["Nalezena %n odpověď","Nalezeny %n odpovědi","Nalezeno %n odpovědí","Nalezeny %n odpovědi"],
|
||||
"Please enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Please select at least one search scope" : "Vyberte alespoň jednu oblast vyhledávání",
|
||||
"Failed to search" : "Nepodařilo se hledat",
|
||||
@@ -208,10 +229,10 @@
|
||||
"Back to {category}" : "Zpět na {category}",
|
||||
"Reply" : "Odpověď",
|
||||
"Error loading thread" : "Chyba při načítání vlákna",
|
||||
"No posts yet" : "Zatím žádné příspěvky",
|
||||
"Be the first to post in this thread." : "Buďte první kdo začne zasílat příspěvky do tohoto vlákna.",
|
||||
"No replies yet" : "Zatím žádné odpovědi",
|
||||
"Be the first to reply in this thread." : "Buďte první kdo odpoví v tomto vlákně.",
|
||||
"by" : "od",
|
||||
"This thread is locked. Only moderators can post replies." : "Toto vlákno je uzamčeno. Odpovědi mohou zasíat pouze moderátoři.",
|
||||
"This thread is locked. Only moderators can add replies." : "Toto vlákno je uzamčené. Odpovědi mohou přidávat pouze moderátoři.",
|
||||
"You must be signed in to reply to this thread." : "Pokud chcete v tomto vlákně odpovědět, je třeba, abyste byli přihlášení.",
|
||||
"Sign in to reply" : "Pokud chcete odpovědět, přihlaste se ke svému účtu",
|
||||
"Lock thread" : "Uzamknout vlákno",
|
||||
@@ -226,21 +247,28 @@
|
||||
"Subscribed" : "Přihlášeno se k odběru",
|
||||
"Subscribed to thread" : "Přihlášeno se k odběru vlákna",
|
||||
"Unsubscribed from thread" : "Zrušeno odebírání vlákna",
|
||||
"Bookmark" : "Záložka",
|
||||
"Remove bookmark" : "Odebrat záložku",
|
||||
"Thread bookmarked" : "Vlákno uloženo do záložek",
|
||||
"Bookmark removed" : "Záložka odebrána",
|
||||
"Edit title" : "Upravit nadpis",
|
||||
"Save title" : "Uložit nadpis",
|
||||
"Thread title updated" : "Nadpis vlákna zaktualizován",
|
||||
"Move thread" : "Přesunout vlákno",
|
||||
"Thread moved successfully" : "Vlákno úspěšně přesunuto",
|
||||
"No thread ID or slug provided" : "Nezadán žádný identifikátor vlákna nebo slug",
|
||||
"Failed to load posts" : "Nepodařilo se načíst příspěvky",
|
||||
"Post updated" : "Příspěvek aktualizován",
|
||||
"Failed to update post" : "Nepodařilo se zaktualizovat příspěvek",
|
||||
"Failed to load replies" : "Nepodařilo se načíst odpovědi",
|
||||
"Thread updated" : "Vlákno zaktualizováno",
|
||||
"Reply updated" : "Odpověď zaktualizována",
|
||||
"Failed to update thread" : "Nepodařilo se zaktualizovat vlákno",
|
||||
"Failed to update reply" : "Nepodařilo se zaktualizovat odpověď",
|
||||
"Thread deleted" : "Vlákno smazáno",
|
||||
"Post deleted" : "Příspěvek smazán",
|
||||
"Failed to delete post" : "Příspěvek se nepodařilo smazat",
|
||||
"Reply deleted" : "Odpověď smazána",
|
||||
"Failed to delete reply" : "Nepodařilo se smazat odpověď",
|
||||
"Failed to update thread lock status" : "Nepodařilo se zaktualizovat stav zámku vlákna",
|
||||
"Failed to update thread pin status" : "Nepodařilo se zaktualizovat stav připnutí vlákna",
|
||||
"Failed to update subscription" : "Nepodařilo se zaktualizovat přihlášení se k odběru",
|
||||
"Failed to update bookmark" : "Nepodařilo se zaktualizovat záložku",
|
||||
"Failed to update thread title" : "Nepodařilo se zaktualizovat nadpis vlákna",
|
||||
"Failed to move thread" : "Nepodařilo se přesunout vlákno",
|
||||
"Preferences" : "Předvolby",
|
||||
@@ -254,14 +282,17 @@
|
||||
"Files" : "Soubory",
|
||||
"Configure file upload settings" : "Nastavit nahrávání souborů",
|
||||
"Upload directory" : "Složka pro nahrání",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Soubory připojené k tomuto příspěvku budou nahrány do této složky v Nextcloud Soubory",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Soubory připojené k vláknům nebo odpovědím budou nahrány do této složky v Nextcloud Soubory",
|
||||
"Browse" : "Procházet",
|
||||
"Preferences saved" : "Předvolby uloženy",
|
||||
"Signature" : "Podpis",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Váš podpis se objevuje ve spodní části vašich vláken nebo odpovědí",
|
||||
"You can use BBCode formatting in your signature" : "Svůj podpis můžete formátovat pomocí BBCode",
|
||||
"Enter your signature …" : "Zadejte svůj podpis …",
|
||||
"Failed to save preferences" : "Nepodařilo se uložit vaše předvolby",
|
||||
"Select upload directory" : "Vyberte složku pro nahrávání",
|
||||
"BBCode management" : "Správa BBCode",
|
||||
"Manage custom BBCode tags for post formatting" : "Spravovat uživatelsky určené BBCode značky pro formátování příspěvků",
|
||||
"Manage custom BBCode tags for formatting" : "Spravovat uživatelsky určené BBCode značky pro formátování",
|
||||
"Error loading BBCodes" : "Chyba při načítání BBCode kódů",
|
||||
"Create BBCode" : "Vytvořit BBCode",
|
||||
"Enable" : "Povolit",
|
||||
@@ -343,6 +374,7 @@
|
||||
"Recent activity (last 7 days)" : "Nedávná aktivita (uplynulých 7 dnů)",
|
||||
"New users" : "Nový uživatelé",
|
||||
"New threads" : "Nová vlákna",
|
||||
"New replies" : "Nové odpovědi",
|
||||
"Top contributors" : "Nejaktivnější přispěvatelé",
|
||||
"No contributors yet" : "Zatím žádní přispěvatelé",
|
||||
"Last 7 days" : "Uplynulých 7 dnů",
|
||||
|
||||
@@ -23,6 +23,8 @@ OC.L10N.register(
|
||||
"Save" : "Cadw",
|
||||
"Uncategorized" : "Dim categori",
|
||||
"Views" : "Dangosiadau",
|
||||
"Saving draft …" : "Yn cadw drafft …",
|
||||
"Draft saved" : "Cadwyd y drafft",
|
||||
"Refresh" : "Ail-lwytho",
|
||||
"Retry" : "Ceisio eto",
|
||||
"Error" : "Gwall",
|
||||
|
||||
@@ -21,6 +21,8 @@
|
||||
"Save" : "Cadw",
|
||||
"Uncategorized" : "Dim categori",
|
||||
"Views" : "Dangosiadau",
|
||||
"Saving draft …" : "Yn cadw drafft …",
|
||||
"Draft saved" : "Cadwyd y drafft",
|
||||
"Refresh" : "Ail-lwytho",
|
||||
"Retry" : "Ceisio eto",
|
||||
"Error" : "Gwall",
|
||||
|
||||
10
l10n/da.js
10
l10n/da.js
@@ -9,8 +9,10 @@ OC.L10N.register(
|
||||
"Bold text" : "Fed tekst",
|
||||
"Underlined text" : "Understreget tekst",
|
||||
"Forum" : "Forum",
|
||||
"Loading …" : "Indlæser ...",
|
||||
"Search" : "Søg",
|
||||
"Home" : "Hjem",
|
||||
"Bookmarks" : "Bogmærker",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Brugere",
|
||||
"Categories" : "Kategorier",
|
||||
@@ -37,11 +39,16 @@ OC.L10N.register(
|
||||
"Delete" : "Slet",
|
||||
"Unread" : "Ulæst",
|
||||
"Save" : "Gem",
|
||||
"Current version" : "Nuværende version",
|
||||
"Uncategorized" : "Udenfor kategori",
|
||||
"_%n reply_::_%n replies_" : ["%n svar","%n svar"],
|
||||
"Views" : "Visninger",
|
||||
"Title" : "Titel",
|
||||
"Saving draft …" : "Gemmer kladde…",
|
||||
"Draft saved" : "Kladde gemt",
|
||||
"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 …",
|
||||
@@ -51,6 +58,7 @@ OC.L10N.register(
|
||||
"by" : "af",
|
||||
"Subscribe" : "Tilmeld",
|
||||
"Subscribed" : "Abonneret",
|
||||
"Bookmark" : "Bogmærke",
|
||||
"Edit title" : "Redigér titel",
|
||||
"Move thread" : "Flyt tråden",
|
||||
"Preferences" : "Indstillinger",
|
||||
|
||||
10
l10n/da.json
10
l10n/da.json
@@ -7,8 +7,10 @@
|
||||
"Bold text" : "Fed tekst",
|
||||
"Underlined text" : "Understreget tekst",
|
||||
"Forum" : "Forum",
|
||||
"Loading …" : "Indlæser ...",
|
||||
"Search" : "Søg",
|
||||
"Home" : "Hjem",
|
||||
"Bookmarks" : "Bogmærker",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Brugere",
|
||||
"Categories" : "Kategorier",
|
||||
@@ -35,11 +37,16 @@
|
||||
"Delete" : "Slet",
|
||||
"Unread" : "Ulæst",
|
||||
"Save" : "Gem",
|
||||
"Current version" : "Nuværende version",
|
||||
"Uncategorized" : "Udenfor kategori",
|
||||
"_%n reply_::_%n replies_" : ["%n svar","%n svar"],
|
||||
"Views" : "Visninger",
|
||||
"Title" : "Titel",
|
||||
"Saving draft …" : "Gemmer kladde…",
|
||||
"Draft saved" : "Kladde gemt",
|
||||
"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 …",
|
||||
@@ -49,6 +56,7 @@
|
||||
"by" : "af",
|
||||
"Subscribe" : "Tilmeld",
|
||||
"Subscribed" : "Abonneret",
|
||||
"Bookmark" : "Bogmærke",
|
||||
"Edit title" : "Redigér titel",
|
||||
"Move thread" : "Flyt tråden",
|
||||
"Preferences" : "Indstillinger",
|
||||
|
||||
82
l10n/de.js
82
l10n/de.js
File diff suppressed because one or more lines are too long
82
l10n/de.json
82
l10n/de.json
File diff suppressed because one or more lines are too long
@@ -24,12 +24,12 @@ OC.L10N.register(
|
||||
"Welcome to the Nextcloud Forums!" : "Willkommen in den Nextcloud Foren!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Dies ist ein Community-Forum, das direkt in Ihre Nextcloud-Instanz integriert ist. Hier können Sie Themen diskutieren, Ideen austauschen und mit anderen Nutzern zusammenarbeiten.",
|
||||
"Features:" : "Funktionen:",
|
||||
"Create and reply to threads" : "Threads erstellen und beantworten",
|
||||
"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",
|
||||
"React to posts" : "Auf Beiträge reagieren",
|
||||
"Track read/unread threads" : "Gelesene/ungelesene Threads verfolgen",
|
||||
"Track read/unread threads" : "Gelesene/ungelesene Themen verfolgen",
|
||||
"BBCode examples:" : "BBCode-Beispiele:",
|
||||
"Bold text" : "Fetter Text",
|
||||
"Use %1$stext%2$s" : "%1$sText%2$s verwenden",
|
||||
@@ -38,12 +38,15 @@ OC.L10N.register(
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Gerne eine neue Diskussion starten oder auf bestehende Beiträge antworten. Viel Spaß beim Posten!",
|
||||
"Forum" : "Forum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} neue Antwort in {thread}","{count} neue Antworten in {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} hat Sie in {thread} erwähnt",
|
||||
"Welcome to the forum!" : "Willkommen in den Nextcloud Foren!",
|
||||
"Deleted user" : "Gelöschter Benutzer",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Ein Community-basiertes Forum, das direkt in Ihre Nextcloud-Instanz integriert ist.",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Diskussionen starten, Ideen austauschen und direkt in Nextcloud mit der Community zusammenarbeiten.\n\n**⚠️ Hinweis zur frühen Entwicklungsphase:** \nDiese App befindet sich in einer frühen Entwicklungsphase. Sie ist zwar funktionsfähig, es können jedoch Fehler oder unvollständige Funktionen auftreten. Bitte melden Sie alle Probleme auf GitHub und erstellen Sie regelmäßig Backups Ihrer Daten.\n\n**Hauptfunktionen:**\n- **Themenbasierte Diskussionen** – Organisierte Diskussionsthemen erstellen und beantworten\n- **Kategorieorganisation** – Das Forum mit anpassbaren Kategorien und Überschriften strukturieren.\n- **Rich-Text-Formatierung** – BBCode verwenden, um Beiträge mit Fettdruck, Kursivschrift, Links, Bildern, Codeblöcken und mehr zu formatieren.\n- **Dateianhänge** – Dateien aus dem Nextcloud-Speicher an Beiträge anhängen.\n- **Reaktionen auf Beiträge** – Mit Emojis auf Beiträge reagieren.\n- **Lese-/Ungelesen-Status** – Den Überblick darüber behalten, welche Threads bereits gelesen wurden.\n- **Suche** – Diskussionen schnell mit der integrierten Suche finden.\n- **Benutzerprofile** – Den Beitragsverlauf und die Statistiken der Benutzer ansehen.\n- **Rollenbasierte Berechtigungen** – Den Zugriff und die Moderation mit flexiblen Rollen steuern.\n- **Gastzugriff**: Optionaler öffentlicher Zugriff für nicht authentifizierte Benutzer mit konfigurierbaren Berechtigungen.\n- **Admin-Tools** – Kategorien, Rollen, BBCodes und Forumseinstellungen verwalten.\n- **Moderations-Tools** – Themen und Beiträge anheften, sperren und verwalten.\n\n**Perfekt für:**\n- Teamdiskussionen und Zusammenarbeit\n- Community-Foren\n- Supportkanäle\n- Wissensdatenbanken\n- Projektdiskussionen\n- Interne Kommunikation\n\nDas Forum integriert sich nahtlos in die Nextcloud-Instanz und nutzt die bestehenden Benutzer und Gruppen für die Anmeldung und die Zugriffskontrolle.",
|
||||
"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",
|
||||
"User preferences" : "Benutzereinstellungen",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Forum settings" : "Forumeinstellungen",
|
||||
@@ -130,34 +133,52 @@ OC.L10N.register(
|
||||
"Quote reply" : "Antwort zitieren",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Delete" : "Löschen",
|
||||
"View edit history" : "Bearbeitungsverlauf anzeigen",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Soll dieser Beitrag wirklich gelöscht werden? Diese Aktion kann nicht rückgängig gemacht werden.",
|
||||
"Unread" : "Ungelesen",
|
||||
"Edit your post …" : "Ihren Beitrag bearbeiten …",
|
||||
"Edit your reply …" : "Ihre Antwort bearbeiten …",
|
||||
"Save" : "Speichern",
|
||||
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
|
||||
"Edit history" : "Verlauf bearbeiten",
|
||||
"Loading history …" : "Lade Verlauf …",
|
||||
"This post has no edit history." : "Diese Nachricht hat keinen Bearbeitungsverlauf.",
|
||||
"Current version" : "Aktuelle Version",
|
||||
"Edited by" : "Bearbeitet von",
|
||||
"Failed to load edit history" : "Bearbeitungsverlauf konnte nicht geladen werden",
|
||||
"Version {index}" : "Version {index}",
|
||||
"Add reaction" : "Reaktion hinzufügen",
|
||||
"React with {emoji}" : "Mit {emoji} reagieren",
|
||||
"You reacted with {emoji}" : "Sie haben mit {emoji} reagiert",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Sie und %n Anderer haben mit {emoji} reagiert","Sie und %n Andere haben mit {emoji} reagiert"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n Person hat mit {emoji} reagiert","%n Personen haben mit {emoji} reagiert"],
|
||||
"Write your reply …" : "Schreibe deine Antwort ...",
|
||||
"Post reply" : "Antwort senden",
|
||||
"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",
|
||||
"Thread unavailable" : "Thema nicht verfügbar",
|
||||
"Pinned thread" : "Angeheftetes Thema",
|
||||
"Locked thread" : "Gesperrtes Thema",
|
||||
"Uncategorized" : "Ohne Kategorie",
|
||||
"_%n post_::_%n posts_" : ["%n Beitrag","%n Beiträge"],
|
||||
"_%n reply_::_%n replies_" : ["%n Antwort","%n Antworten"],
|
||||
"_%n view_::_%n views_" : ["%n Ansicht","%n Ansichten"],
|
||||
"Views" : "Ansichten",
|
||||
"Title" : "Titel",
|
||||
"Enter thread title …" : "Titel des Themas eingeben …",
|
||||
"Write your first post …" : "Ihren ersten Beitrag schreiben …",
|
||||
"Write your thread content …" : "Ihren Themeninhalt schreiben …",
|
||||
"Create thread" : "Thema erstellen",
|
||||
"Are you sure you want to discard this thread?" : "Soll dieses Thema verworfen werden?",
|
||||
"Saving draft …" : "Speichere Entwurf …",
|
||||
"Draft saved" : "Entwurf gespeichert",
|
||||
"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",
|
||||
"Bookmark threads to quickly find them later." : "Themen als Lesezeichen speichern, um diese später schnell wiederzufinden.",
|
||||
"Retry" : "Wiederholen",
|
||||
"An unexpected error occurred" : "Ein unerwarteter Fehler ist eingetreten",
|
||||
"Failed to load bookmarks" : "Lesezeichen konnten nicht geladen werden",
|
||||
"No categories yet" : "Bislang keine Kategorien",
|
||||
"Categories will appear here once they are created." : "Kategorien tauchen hier auf, sobald sie angelegt wurden.",
|
||||
"No categories in this section" : "Keine Kategorien in diesem Abschnitt",
|
||||
@@ -168,8 +189,6 @@ OC.L10N.register(
|
||||
"Error loading category" : "Fehler beim Laden der Kategorie",
|
||||
"No threads yet" : "Bislang keine Themen",
|
||||
"Be the first to start a discussion in this category." : "Seien Sie der Erste, der eine Diskussion in dieser Kategorie beginnt.",
|
||||
"Retry" : "Wiederholen",
|
||||
"An unexpected error occurred" : "Ein unerwarteter Fehler ist eingetreten",
|
||||
"No category ID or slug provided" : "Keine Kategorie-ID oder Slug angegeben",
|
||||
"Failed to load threads" : "Themen konnten nicht geladen werden",
|
||||
"Create New Thread" : "Ein neues Thema erstellen",
|
||||
@@ -179,17 +198,17 @@ OC.L10N.register(
|
||||
"Failed to create thread" : "Fehler beim Erstellen des Themas",
|
||||
"No category specified" : "Keine Kategorie angegeben",
|
||||
"Error" : "Fehler",
|
||||
"First post" : "Erster Beitrag",
|
||||
"First activity" : "Erste Aktivität",
|
||||
"Threads ({count})" : "Themen ({count})",
|
||||
"Replies ({count})" : "Antworten ({count})",
|
||||
"No threads" : "Keine Themen",
|
||||
"This user has not created any threads yet" : "Dieser Benutzer hat bislang noch keine Themen erstellt",
|
||||
"No replies" : "Keine Antworten",
|
||||
"This user has not posted any replies yet" : "Dieser Benutzer hat bislang noch keine Antwort gepostet",
|
||||
"This user has not written any replies yet" : "Dieser Benutzer hat noch keine Antworten verfasst",
|
||||
"Failed to load user profile" : "Benutzerprofil konnte nicht geladen werden",
|
||||
"Enter search query …" : "Suchanfrage eingeben ...",
|
||||
"Search in threads" : "In Themen suchen",
|
||||
"Search in posts" : "Suche in Beiträgen",
|
||||
"Search in replies" : "In den Antworten suchen",
|
||||
"Syntax help" : "Syntaxhilfe",
|
||||
"Search syntax" : "Suchsyntax",
|
||||
"Match exact phrase" : "Exakte Phrase suchen",
|
||||
@@ -200,11 +219,11 @@ OC.L10N.register(
|
||||
"Searching …" : "Suche …",
|
||||
"Search Error" : "Suchfehler",
|
||||
"Enter a search query" : "Eine Suchabfrage eingeben",
|
||||
"Use the search box above to find threads and posts" : "Um Themen und Beiträge zu finden, die Box oben verwenden",
|
||||
"Use the search box above to find threads and replies" : "Das Suchfeld oben nutzen, um Beiträge und Antworten zu finden",
|
||||
"No results found" : "Keine Ergebnisse gefunden",
|
||||
"Try different keywords or check your syntax" : "Probieren Sie verschiedene Schlüsselwörter aus oder überprüfen Sie Ihre Syntax.",
|
||||
"_%n thread found_::_%n threads found_" : ["%n Thema gefunden","%n Themen gefunden"],
|
||||
"_%n post found_::_%n posts found_" : ["%n Beitrag gefunden","%n Beiträge gefunden"],
|
||||
"_%n reply found_::_%n replies found_" : ["%n Antwort gefunden","%n Antworten gefunden"],
|
||||
"Please enter a search query" : "Bitte gib eine Suchanfrage ein",
|
||||
"Please select at least one search scope" : "Es muss mindestens ein Suchbereich ausgewählt werden",
|
||||
"Failed to search" : "Suche fehlgeschlagen",
|
||||
@@ -213,10 +232,10 @@ OC.L10N.register(
|
||||
"Back to {category}" : "Zurück zu {category}",
|
||||
"Reply" : "Antwort",
|
||||
"Error loading thread" : "Fehler beim Laden des Themas",
|
||||
"No posts yet" : "Bislang keine Beträge",
|
||||
"Be the first to post in this thread." : "Seien Sie der Erste, der in diesem Thema einen Beitrag erstellt.",
|
||||
"No replies yet" : "Bislang keine Antworten",
|
||||
"Be the first to reply in this thread." : "Seien Sie der Erste, der auf dieses Thema antwortet.",
|
||||
"by" : "von",
|
||||
"This thread is locked. Only moderators can post replies." : "Dieses Thema ist gesperrt. Nur Moderatoren können Antworten posten.",
|
||||
"This thread is locked. Only moderators can add replies." : "Dieses Thema ist gesperrt. Nur die Moderation kann Antworten hinzufügen.",
|
||||
"You must be signed in to reply to this thread." : "Sie müssen angemeldet sein, um auf dieses Thema zu antworten.",
|
||||
"Sign in to reply" : "Anmelden um zu antworten",
|
||||
"Lock thread" : "Thema sperren",
|
||||
@@ -231,21 +250,28 @@ OC.L10N.register(
|
||||
"Subscribed" : "Abonniert",
|
||||
"Subscribed to thread" : "Thema abonniert",
|
||||
"Unsubscribed from thread" : "Thema abbestellt",
|
||||
"Bookmark" : "Lesezeichen",
|
||||
"Remove bookmark" : "Lesezeichen entfernen",
|
||||
"Thread bookmarked" : "Thema mit Lesezeichen versehen",
|
||||
"Bookmark removed" : "Lesezeichen entfernt",
|
||||
"Edit title" : "Titel bearbeiten",
|
||||
"Save title" : "Titel speichern",
|
||||
"Thread title updated" : "Titel des Themas aktualisiert",
|
||||
"Move thread" : "Unterhaltung verschieben",
|
||||
"Thread moved successfully" : "Thema verschoben",
|
||||
"No thread ID or slug provided" : "Keine Themen-ID oder Slug angegeben",
|
||||
"Failed to load posts" : "Beiträge konnten nicht geladen werden",
|
||||
"Post updated" : "Beitrag aktualisiert",
|
||||
"Failed to update post" : "Beitrag konnte nicht aktualisiert werden",
|
||||
"Failed to load replies" : "Antworten konnten nicht geladen werden",
|
||||
"Thread updated" : "Thema aktualisiert",
|
||||
"Reply updated" : "Antwort aktualisiert",
|
||||
"Failed to update thread" : "Thema konnte nicht aktualisiert werden",
|
||||
"Failed to update reply" : "Antwort konnte nicht aktualisiert werden",
|
||||
"Thread deleted" : "Thema gelöscht",
|
||||
"Post deleted" : "Beitrag gelöscht",
|
||||
"Failed to delete post" : "Beitrag konnte nicht gelöscht werden",
|
||||
"Reply deleted" : "Antwort gelöscht",
|
||||
"Failed to delete reply" : "Antwort konnte nicht gelöscht werden",
|
||||
"Failed to update thread lock status" : "Themen-Sperrstatus konnte nicht aktualisiert werden",
|
||||
"Failed to update thread pin status" : "Themen-Anheftestatus konnte nicht aktualisiert werden",
|
||||
"Failed to update subscription" : "Das Abonnement konnte nicht aktualisiert werden",
|
||||
"Failed to update bookmark" : "Lesezeichen konnte nicht aktualisiert werden",
|
||||
"Failed to update thread title" : "Thementitel konnte nicht aktualisiert werden",
|
||||
"Failed to move thread" : "Thema konnte nicht verschoben werden",
|
||||
"Preferences" : "Einstellungen",
|
||||
@@ -259,17 +285,17 @@ OC.L10N.register(
|
||||
"Files" : "Dateien",
|
||||
"Configure file upload settings" : "Einstellungen für das Hochladen von Dateien",
|
||||
"Upload directory" : "Hochladeverzeichnis",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "An Beiträge angehängte Dateien werden in dieses Verzeichnis in Ihre Nextcloud-Dateien hochgeladen",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "An Themen angehängte Dateien werden in diesen Ordner in Ihre Nextcloud-Dateien hochgeladen",
|
||||
"Browse" : "Durchsuchen",
|
||||
"Preferences saved" : "Einstellungen gespeichert",
|
||||
"Signature" : "Signatur",
|
||||
"Your signature appears at the bottom of your posts" : "Ihre Signatur erscheint am Ende Ihrer Beiträge",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Ihre Signatur erscheint am Ende Ihrer 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 …",
|
||||
"Failed to save preferences" : "Sichern der Einstellungen fehlgeschlagen",
|
||||
"Select upload directory" : "Hochladeverzeichnis auswählen",
|
||||
"BBCode management" : "BBCode-Verwaltung",
|
||||
"Manage custom BBCode tags for post formatting" : "Benutzerdefinierte BBCode-Schnipsel für die Formatierung von Beiträgen verwalten",
|
||||
"Manage custom BBCode tags for formatting" : "Benutzerdefinierte BBCode-Schnipsel für die Formatierung verwalten",
|
||||
"Error loading BBCodes" : "Fehler beim Laden der BBCodes",
|
||||
"Create BBCode" : "BBCode erstellen",
|
||||
"Enable" : "Aktivieren",
|
||||
|
||||
@@ -22,12 +22,12 @@
|
||||
"Welcome to the Nextcloud Forums!" : "Willkommen in den Nextcloud Foren!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Dies ist ein Community-Forum, das direkt in Ihre Nextcloud-Instanz integriert ist. Hier können Sie Themen diskutieren, Ideen austauschen und mit anderen Nutzern zusammenarbeiten.",
|
||||
"Features:" : "Funktionen:",
|
||||
"Create and reply to threads" : "Threads erstellen und beantworten",
|
||||
"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",
|
||||
"React to posts" : "Auf Beiträge reagieren",
|
||||
"Track read/unread threads" : "Gelesene/ungelesene Threads verfolgen",
|
||||
"Track read/unread threads" : "Gelesene/ungelesene Themen verfolgen",
|
||||
"BBCode examples:" : "BBCode-Beispiele:",
|
||||
"Bold text" : "Fetter Text",
|
||||
"Use %1$stext%2$s" : "%1$sText%2$s verwenden",
|
||||
@@ -36,12 +36,15 @@
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Gerne eine neue Diskussion starten oder auf bestehende Beiträge antworten. Viel Spaß beim Posten!",
|
||||
"Forum" : "Forum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} neue Antwort in {thread}","{count} neue Antworten in {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} hat Sie in {thread} erwähnt",
|
||||
"Welcome to the forum!" : "Willkommen in den Nextcloud Foren!",
|
||||
"Deleted user" : "Gelöschter Benutzer",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Ein Community-basiertes Forum, das direkt in Ihre Nextcloud-Instanz integriert ist.",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Diskussionen starten, Ideen austauschen und direkt in Nextcloud mit der Community zusammenarbeiten.\n\n**⚠️ Hinweis zur frühen Entwicklungsphase:** \nDiese App befindet sich in einer frühen Entwicklungsphase. Sie ist zwar funktionsfähig, es können jedoch Fehler oder unvollständige Funktionen auftreten. Bitte melden Sie alle Probleme auf GitHub und erstellen Sie regelmäßig Backups Ihrer Daten.\n\n**Hauptfunktionen:**\n- **Themenbasierte Diskussionen** – Organisierte Diskussionsthemen erstellen und beantworten\n- **Kategorieorganisation** – Das Forum mit anpassbaren Kategorien und Überschriften strukturieren.\n- **Rich-Text-Formatierung** – BBCode verwenden, um Beiträge mit Fettdruck, Kursivschrift, Links, Bildern, Codeblöcken und mehr zu formatieren.\n- **Dateianhänge** – Dateien aus dem Nextcloud-Speicher an Beiträge anhängen.\n- **Reaktionen auf Beiträge** – Mit Emojis auf Beiträge reagieren.\n- **Lese-/Ungelesen-Status** – Den Überblick darüber behalten, welche Threads bereits gelesen wurden.\n- **Suche** – Diskussionen schnell mit der integrierten Suche finden.\n- **Benutzerprofile** – Den Beitragsverlauf und die Statistiken der Benutzer ansehen.\n- **Rollenbasierte Berechtigungen** – Den Zugriff und die Moderation mit flexiblen Rollen steuern.\n- **Gastzugriff**: Optionaler öffentlicher Zugriff für nicht authentifizierte Benutzer mit konfigurierbaren Berechtigungen.\n- **Admin-Tools** – Kategorien, Rollen, BBCodes und Forumseinstellungen verwalten.\n- **Moderations-Tools** – Themen und Beiträge anheften, sperren und verwalten.\n\n**Perfekt für:**\n- Teamdiskussionen und Zusammenarbeit\n- Community-Foren\n- Supportkanäle\n- Wissensdatenbanken\n- Projektdiskussionen\n- Interne Kommunikation\n\nDas Forum integriert sich nahtlos in die Nextcloud-Instanz und nutzt die bestehenden Benutzer und Gruppen für die Anmeldung und die Zugriffskontrolle.",
|
||||
"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",
|
||||
"User preferences" : "Benutzereinstellungen",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Forum settings" : "Forumeinstellungen",
|
||||
@@ -128,34 +131,52 @@
|
||||
"Quote reply" : "Antwort zitieren",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Delete" : "Löschen",
|
||||
"View edit history" : "Bearbeitungsverlauf anzeigen",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Soll dieser Beitrag wirklich gelöscht werden? Diese Aktion kann nicht rückgängig gemacht werden.",
|
||||
"Unread" : "Ungelesen",
|
||||
"Edit your post …" : "Ihren Beitrag bearbeiten …",
|
||||
"Edit your reply …" : "Ihre Antwort bearbeiten …",
|
||||
"Save" : "Speichern",
|
||||
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
|
||||
"Edit history" : "Verlauf bearbeiten",
|
||||
"Loading history …" : "Lade Verlauf …",
|
||||
"This post has no edit history." : "Diese Nachricht hat keinen Bearbeitungsverlauf.",
|
||||
"Current version" : "Aktuelle Version",
|
||||
"Edited by" : "Bearbeitet von",
|
||||
"Failed to load edit history" : "Bearbeitungsverlauf konnte nicht geladen werden",
|
||||
"Version {index}" : "Version {index}",
|
||||
"Add reaction" : "Reaktion hinzufügen",
|
||||
"React with {emoji}" : "Mit {emoji} reagieren",
|
||||
"You reacted with {emoji}" : "Sie haben mit {emoji} reagiert",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Sie und %n Anderer haben mit {emoji} reagiert","Sie und %n Andere haben mit {emoji} reagiert"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n Person hat mit {emoji} reagiert","%n Personen haben mit {emoji} reagiert"],
|
||||
"Write your reply …" : "Schreibe deine Antwort ...",
|
||||
"Post reply" : "Antwort senden",
|
||||
"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",
|
||||
"Thread unavailable" : "Thema nicht verfügbar",
|
||||
"Pinned thread" : "Angeheftetes Thema",
|
||||
"Locked thread" : "Gesperrtes Thema",
|
||||
"Uncategorized" : "Ohne Kategorie",
|
||||
"_%n post_::_%n posts_" : ["%n Beitrag","%n Beiträge"],
|
||||
"_%n reply_::_%n replies_" : ["%n Antwort","%n Antworten"],
|
||||
"_%n view_::_%n views_" : ["%n Ansicht","%n Ansichten"],
|
||||
"Views" : "Ansichten",
|
||||
"Title" : "Titel",
|
||||
"Enter thread title …" : "Titel des Themas eingeben …",
|
||||
"Write your first post …" : "Ihren ersten Beitrag schreiben …",
|
||||
"Write your thread content …" : "Ihren Themeninhalt schreiben …",
|
||||
"Create thread" : "Thema erstellen",
|
||||
"Are you sure you want to discard this thread?" : "Soll dieses Thema verworfen werden?",
|
||||
"Saving draft …" : "Speichere Entwurf …",
|
||||
"Draft saved" : "Entwurf gespeichert",
|
||||
"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",
|
||||
"Bookmark threads to quickly find them later." : "Themen als Lesezeichen speichern, um diese später schnell wiederzufinden.",
|
||||
"Retry" : "Wiederholen",
|
||||
"An unexpected error occurred" : "Ein unerwarteter Fehler ist eingetreten",
|
||||
"Failed to load bookmarks" : "Lesezeichen konnten nicht geladen werden",
|
||||
"No categories yet" : "Bislang keine Kategorien",
|
||||
"Categories will appear here once they are created." : "Kategorien tauchen hier auf, sobald sie angelegt wurden.",
|
||||
"No categories in this section" : "Keine Kategorien in diesem Abschnitt",
|
||||
@@ -166,8 +187,6 @@
|
||||
"Error loading category" : "Fehler beim Laden der Kategorie",
|
||||
"No threads yet" : "Bislang keine Themen",
|
||||
"Be the first to start a discussion in this category." : "Seien Sie der Erste, der eine Diskussion in dieser Kategorie beginnt.",
|
||||
"Retry" : "Wiederholen",
|
||||
"An unexpected error occurred" : "Ein unerwarteter Fehler ist eingetreten",
|
||||
"No category ID or slug provided" : "Keine Kategorie-ID oder Slug angegeben",
|
||||
"Failed to load threads" : "Themen konnten nicht geladen werden",
|
||||
"Create New Thread" : "Ein neues Thema erstellen",
|
||||
@@ -177,17 +196,17 @@
|
||||
"Failed to create thread" : "Fehler beim Erstellen des Themas",
|
||||
"No category specified" : "Keine Kategorie angegeben",
|
||||
"Error" : "Fehler",
|
||||
"First post" : "Erster Beitrag",
|
||||
"First activity" : "Erste Aktivität",
|
||||
"Threads ({count})" : "Themen ({count})",
|
||||
"Replies ({count})" : "Antworten ({count})",
|
||||
"No threads" : "Keine Themen",
|
||||
"This user has not created any threads yet" : "Dieser Benutzer hat bislang noch keine Themen erstellt",
|
||||
"No replies" : "Keine Antworten",
|
||||
"This user has not posted any replies yet" : "Dieser Benutzer hat bislang noch keine Antwort gepostet",
|
||||
"This user has not written any replies yet" : "Dieser Benutzer hat noch keine Antworten verfasst",
|
||||
"Failed to load user profile" : "Benutzerprofil konnte nicht geladen werden",
|
||||
"Enter search query …" : "Suchanfrage eingeben ...",
|
||||
"Search in threads" : "In Themen suchen",
|
||||
"Search in posts" : "Suche in Beiträgen",
|
||||
"Search in replies" : "In den Antworten suchen",
|
||||
"Syntax help" : "Syntaxhilfe",
|
||||
"Search syntax" : "Suchsyntax",
|
||||
"Match exact phrase" : "Exakte Phrase suchen",
|
||||
@@ -198,11 +217,11 @@
|
||||
"Searching …" : "Suche …",
|
||||
"Search Error" : "Suchfehler",
|
||||
"Enter a search query" : "Eine Suchabfrage eingeben",
|
||||
"Use the search box above to find threads and posts" : "Um Themen und Beiträge zu finden, die Box oben verwenden",
|
||||
"Use the search box above to find threads and replies" : "Das Suchfeld oben nutzen, um Beiträge und Antworten zu finden",
|
||||
"No results found" : "Keine Ergebnisse gefunden",
|
||||
"Try different keywords or check your syntax" : "Probieren Sie verschiedene Schlüsselwörter aus oder überprüfen Sie Ihre Syntax.",
|
||||
"_%n thread found_::_%n threads found_" : ["%n Thema gefunden","%n Themen gefunden"],
|
||||
"_%n post found_::_%n posts found_" : ["%n Beitrag gefunden","%n Beiträge gefunden"],
|
||||
"_%n reply found_::_%n replies found_" : ["%n Antwort gefunden","%n Antworten gefunden"],
|
||||
"Please enter a search query" : "Bitte gib eine Suchanfrage ein",
|
||||
"Please select at least one search scope" : "Es muss mindestens ein Suchbereich ausgewählt werden",
|
||||
"Failed to search" : "Suche fehlgeschlagen",
|
||||
@@ -211,10 +230,10 @@
|
||||
"Back to {category}" : "Zurück zu {category}",
|
||||
"Reply" : "Antwort",
|
||||
"Error loading thread" : "Fehler beim Laden des Themas",
|
||||
"No posts yet" : "Bislang keine Beträge",
|
||||
"Be the first to post in this thread." : "Seien Sie der Erste, der in diesem Thema einen Beitrag erstellt.",
|
||||
"No replies yet" : "Bislang keine Antworten",
|
||||
"Be the first to reply in this thread." : "Seien Sie der Erste, der auf dieses Thema antwortet.",
|
||||
"by" : "von",
|
||||
"This thread is locked. Only moderators can post replies." : "Dieses Thema ist gesperrt. Nur Moderatoren können Antworten posten.",
|
||||
"This thread is locked. Only moderators can add replies." : "Dieses Thema ist gesperrt. Nur die Moderation kann Antworten hinzufügen.",
|
||||
"You must be signed in to reply to this thread." : "Sie müssen angemeldet sein, um auf dieses Thema zu antworten.",
|
||||
"Sign in to reply" : "Anmelden um zu antworten",
|
||||
"Lock thread" : "Thema sperren",
|
||||
@@ -229,21 +248,28 @@
|
||||
"Subscribed" : "Abonniert",
|
||||
"Subscribed to thread" : "Thema abonniert",
|
||||
"Unsubscribed from thread" : "Thema abbestellt",
|
||||
"Bookmark" : "Lesezeichen",
|
||||
"Remove bookmark" : "Lesezeichen entfernen",
|
||||
"Thread bookmarked" : "Thema mit Lesezeichen versehen",
|
||||
"Bookmark removed" : "Lesezeichen entfernt",
|
||||
"Edit title" : "Titel bearbeiten",
|
||||
"Save title" : "Titel speichern",
|
||||
"Thread title updated" : "Titel des Themas aktualisiert",
|
||||
"Move thread" : "Unterhaltung verschieben",
|
||||
"Thread moved successfully" : "Thema verschoben",
|
||||
"No thread ID or slug provided" : "Keine Themen-ID oder Slug angegeben",
|
||||
"Failed to load posts" : "Beiträge konnten nicht geladen werden",
|
||||
"Post updated" : "Beitrag aktualisiert",
|
||||
"Failed to update post" : "Beitrag konnte nicht aktualisiert werden",
|
||||
"Failed to load replies" : "Antworten konnten nicht geladen werden",
|
||||
"Thread updated" : "Thema aktualisiert",
|
||||
"Reply updated" : "Antwort aktualisiert",
|
||||
"Failed to update thread" : "Thema konnte nicht aktualisiert werden",
|
||||
"Failed to update reply" : "Antwort konnte nicht aktualisiert werden",
|
||||
"Thread deleted" : "Thema gelöscht",
|
||||
"Post deleted" : "Beitrag gelöscht",
|
||||
"Failed to delete post" : "Beitrag konnte nicht gelöscht werden",
|
||||
"Reply deleted" : "Antwort gelöscht",
|
||||
"Failed to delete reply" : "Antwort konnte nicht gelöscht werden",
|
||||
"Failed to update thread lock status" : "Themen-Sperrstatus konnte nicht aktualisiert werden",
|
||||
"Failed to update thread pin status" : "Themen-Anheftestatus konnte nicht aktualisiert werden",
|
||||
"Failed to update subscription" : "Das Abonnement konnte nicht aktualisiert werden",
|
||||
"Failed to update bookmark" : "Lesezeichen konnte nicht aktualisiert werden",
|
||||
"Failed to update thread title" : "Thementitel konnte nicht aktualisiert werden",
|
||||
"Failed to move thread" : "Thema konnte nicht verschoben werden",
|
||||
"Preferences" : "Einstellungen",
|
||||
@@ -257,17 +283,17 @@
|
||||
"Files" : "Dateien",
|
||||
"Configure file upload settings" : "Einstellungen für das Hochladen von Dateien",
|
||||
"Upload directory" : "Hochladeverzeichnis",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "An Beiträge angehängte Dateien werden in dieses Verzeichnis in Ihre Nextcloud-Dateien hochgeladen",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "An Themen angehängte Dateien werden in diesen Ordner in Ihre Nextcloud-Dateien hochgeladen",
|
||||
"Browse" : "Durchsuchen",
|
||||
"Preferences saved" : "Einstellungen gespeichert",
|
||||
"Signature" : "Signatur",
|
||||
"Your signature appears at the bottom of your posts" : "Ihre Signatur erscheint am Ende Ihrer Beiträge",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Ihre Signatur erscheint am Ende Ihrer 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 …",
|
||||
"Failed to save preferences" : "Sichern der Einstellungen fehlgeschlagen",
|
||||
"Select upload directory" : "Hochladeverzeichnis auswählen",
|
||||
"BBCode management" : "BBCode-Verwaltung",
|
||||
"Manage custom BBCode tags for post formatting" : "Benutzerdefinierte BBCode-Schnipsel für die Formatierung von Beiträgen verwalten",
|
||||
"Manage custom BBCode tags for formatting" : "Benutzerdefinierte BBCode-Schnipsel für die Formatierung verwalten",
|
||||
"Error loading BBCodes" : "Fehler beim Laden der BBCodes",
|
||||
"Create BBCode" : "BBCode erstellen",
|
||||
"Enable" : "Aktivieren",
|
||||
|
||||
@@ -11,8 +11,10 @@ OC.L10N.register(
|
||||
"Underlined text" : "Υπογραμμισμένο κείμενο",
|
||||
"Forum" : "Φόρουμ",
|
||||
"Deleted user" : "Διαγραμμένος χρήστης",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Search" : "Αναζήτηση",
|
||||
"Home" : "Αρχική",
|
||||
"Bookmarks" : "Σελιδοδείκτες",
|
||||
"Dashboard" : "Πίνακας ελέγχου",
|
||||
"Users" : "Χρήστες",
|
||||
"Categories" : "Κατηγορίες",
|
||||
@@ -45,12 +47,16 @@ OC.L10N.register(
|
||||
"Delete" : "Διαγραφή",
|
||||
"Unread" : "Μη αναγνωσμένο",
|
||||
"Save" : "Αποθήκευση",
|
||||
"Current version" : "Τρέχουσα έκδοση",
|
||||
"React with {emoji}" : "Αντίδραση με {emoji}",
|
||||
"Uncategorized" : "Μή-κατηγοριοποιημένα",
|
||||
"_%n reply_::_%n replies_" : ["%n απάντηση","%n απαντήσεις"],
|
||||
"Views" : "Προβολές",
|
||||
"Title" : "Τίτλος",
|
||||
"Saving draft …" : "Αποθήκευση προχείρου ...",
|
||||
"Draft saved" : "Το πρόχειρο αποθηκεύτηκε",
|
||||
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
|
||||
"Refresh" : "Ανανέωση",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Retry" : "Δοκιμή ξανά",
|
||||
"In {category}" : "Στη συνομιλία {category}",
|
||||
"Error" : "Σφάλμα",
|
||||
@@ -60,6 +66,7 @@ OC.L10N.register(
|
||||
"by" : "από",
|
||||
"Subscribe" : "Εγγραφή",
|
||||
"Subscribed" : "Εγγεγραμμένο",
|
||||
"Bookmark" : "Σελιδοδείκτης",
|
||||
"Edit title" : "Επεξεργασία τίτλου",
|
||||
"Move thread" : "Μετακίνηση νήματος",
|
||||
"Preferences" : "Προτιμήσεις",
|
||||
|
||||
@@ -9,8 +9,10 @@
|
||||
"Underlined text" : "Υπογραμμισμένο κείμενο",
|
||||
"Forum" : "Φόρουμ",
|
||||
"Deleted user" : "Διαγραμμένος χρήστης",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Search" : "Αναζήτηση",
|
||||
"Home" : "Αρχική",
|
||||
"Bookmarks" : "Σελιδοδείκτες",
|
||||
"Dashboard" : "Πίνακας ελέγχου",
|
||||
"Users" : "Χρήστες",
|
||||
"Categories" : "Κατηγορίες",
|
||||
@@ -43,12 +45,16 @@
|
||||
"Delete" : "Διαγραφή",
|
||||
"Unread" : "Μη αναγνωσμένο",
|
||||
"Save" : "Αποθήκευση",
|
||||
"Current version" : "Τρέχουσα έκδοση",
|
||||
"React with {emoji}" : "Αντίδραση με {emoji}",
|
||||
"Uncategorized" : "Μή-κατηγοριοποιημένα",
|
||||
"_%n reply_::_%n replies_" : ["%n απάντηση","%n απαντήσεις"],
|
||||
"Views" : "Προβολές",
|
||||
"Title" : "Τίτλος",
|
||||
"Saving draft …" : "Αποθήκευση προχείρου ...",
|
||||
"Draft saved" : "Το πρόχειρο αποθηκεύτηκε",
|
||||
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
|
||||
"Refresh" : "Ανανέωση",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Retry" : "Δοκιμή ξανά",
|
||||
"In {category}" : "Στη συνομιλία {category}",
|
||||
"Error" : "Σφάλμα",
|
||||
@@ -58,6 +64,7 @@
|
||||
"by" : "από",
|
||||
"Subscribe" : "Εγγραφή",
|
||||
"Subscribed" : "Εγγεγραμμένο",
|
||||
"Bookmark" : "Σελιδοδείκτης",
|
||||
"Edit title" : "Επεξεργασία τίτλου",
|
||||
"Move thread" : "Μετακίνηση νήματος",
|
||||
"Preferences" : "Προτιμήσεις",
|
||||
|
||||
@@ -38,12 +38,15 @@ OC.L10N.register(
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Feel free to start a new discussion or reply to existing threads. Happy posting!",
|
||||
"Forum" : "Forum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} new reply in {thread}","{count} new replies in {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mentioned you in {thread}",
|
||||
"Welcome to the forum!" : "Welcome to the forum!",
|
||||
"Deleted user" : "Deleted user",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "A community-driven forum built right into your Nextcloud instance",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control.",
|
||||
"Loading …" : "Loading …",
|
||||
"Search" : "Search",
|
||||
"Home" : "Home",
|
||||
"Bookmarks" : "Bookmarks",
|
||||
"User preferences" : "User preferences",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Forum settings" : "Forum settings",
|
||||
@@ -130,34 +133,52 @@ OC.L10N.register(
|
||||
"Quote reply" : "Quote reply",
|
||||
"Edit" : "Edit",
|
||||
"Delete" : "Delete",
|
||||
"View edit history" : "View edit history",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Are you sure you want to delete this post? This action cannot be undone.",
|
||||
"Unread" : "Unread",
|
||||
"Edit your post …" : "Edit your post …",
|
||||
"Edit your reply …" : "Edit your reply …",
|
||||
"Save" : "Save",
|
||||
"Are you sure you want to discard your changes?" : "Are you sure you want to discard your changes?",
|
||||
"Edit history" : "Edit history",
|
||||
"Loading history …" : "Loading history …",
|
||||
"This post has no edit history." : "This post has no edit history.",
|
||||
"Current version" : "Current version",
|
||||
"Edited by" : "Edited by",
|
||||
"Failed to load edit history" : "Failed to load edit history",
|
||||
"Version {index}" : "Version {index}",
|
||||
"Add reaction" : "Add reaction",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"You reacted with {emoji}" : "You reacted with {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["You and %n other reacted with {emoji}","You and %n others reacted with {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n person reacted with {emoji}","%n people reacted with {emoji}"],
|
||||
"Write your reply …" : "Write your reply …",
|
||||
"Post reply" : "Post reply",
|
||||
"Submit reply" : "Submit reply",
|
||||
"Are you sure you want to discard your reply?" : "Are you sure you want to discard your reply?",
|
||||
"In thread" : "In thread",
|
||||
"Thread unavailable" : "Thread unavailable",
|
||||
"Pinned thread" : "Pinned thread",
|
||||
"Locked thread" : "Locked thread",
|
||||
"Uncategorized" : "Uncategorised",
|
||||
"_%n post_::_%n posts_" : ["%n post","%n posts"],
|
||||
"_%n reply_::_%n replies_" : ["%n reply","%n replies"],
|
||||
"_%n view_::_%n views_" : ["%n view","%n views"],
|
||||
"Views" : "Views",
|
||||
"Title" : "Title",
|
||||
"Enter thread title …" : "Enter thread title …",
|
||||
"Write your first post …" : "Write your first post …",
|
||||
"Write your thread content …" : "Write your thread content …",
|
||||
"Create thread" : "Create thread",
|
||||
"Are you sure you want to discard this thread?" : "Are you sure you want to discard this thread?",
|
||||
"Saving draft …" : "Saving draft …",
|
||||
"Draft saved" : "Draft saved",
|
||||
"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",
|
||||
"Bookmark threads to quickly find them later." : "Bookmark threads to quickly find them later.",
|
||||
"Retry" : "Retry",
|
||||
"An unexpected error occurred" : "An unexpected error occurred",
|
||||
"Failed to load bookmarks" : "Failed to load bookmarks",
|
||||
"No categories yet" : "No categories yet",
|
||||
"Categories will appear here once they are created." : "Categories will appear here once they are created.",
|
||||
"No categories in this section" : "No categories in this section",
|
||||
@@ -168,8 +189,6 @@ OC.L10N.register(
|
||||
"Error loading category" : "Error loading category",
|
||||
"No threads yet" : "No threads yet",
|
||||
"Be the first to start a discussion in this category." : "Be the first to start a discussion in this category.",
|
||||
"Retry" : "Retry",
|
||||
"An unexpected error occurred" : "An unexpected error occurred",
|
||||
"No category ID or slug provided" : "No category ID or slug provided",
|
||||
"Failed to load threads" : "Failed to load threads",
|
||||
"Create New Thread" : "Create New Thread",
|
||||
@@ -179,17 +198,17 @@ OC.L10N.register(
|
||||
"Failed to create thread" : "Failed to create thread",
|
||||
"No category specified" : "No category specified",
|
||||
"Error" : "Error",
|
||||
"First post" : "First post",
|
||||
"First activity" : "First activity",
|
||||
"Threads ({count})" : "Threads ({count})",
|
||||
"Replies ({count})" : "Replies ({count})",
|
||||
"No threads" : "No threads",
|
||||
"This user has not created any threads yet" : "This user has not created any threads yet",
|
||||
"No replies" : "No replies",
|
||||
"This user has not posted any replies yet" : "This user has not posted any replies yet",
|
||||
"This user has not written any replies yet" : "This user has not written any replies yet",
|
||||
"Failed to load user profile" : "Failed to load user profile",
|
||||
"Enter search query …" : "Enter search query …",
|
||||
"Search in threads" : "Search in threads",
|
||||
"Search in posts" : "Search in posts",
|
||||
"Search in replies" : "Search in replies",
|
||||
"Syntax help" : "Syntax help",
|
||||
"Search syntax" : "Search syntax",
|
||||
"Match exact phrase" : "Match exact phrase",
|
||||
@@ -200,11 +219,11 @@ OC.L10N.register(
|
||||
"Searching …" : "Searching …",
|
||||
"Search Error" : "Search Error",
|
||||
"Enter a search query" : "Enter a search query",
|
||||
"Use the search box above to find threads and posts" : "Use the search box above to find threads and posts",
|
||||
"Use the search box above to find threads and replies" : "Use the search box above to find threads and replies",
|
||||
"No results found" : "No results found",
|
||||
"Try different keywords or check your syntax" : "Try different keywords or check your syntax",
|
||||
"_%n thread found_::_%n threads found_" : ["%n thread found","%n threads found"],
|
||||
"_%n post found_::_%n posts found_" : ["%n post found","%n posts found"],
|
||||
"_%n reply found_::_%n replies found_" : ["%n reply found","%n replies found"],
|
||||
"Please enter a search query" : "Please enter a search query",
|
||||
"Please select at least one search scope" : "Please select at least one search scope",
|
||||
"Failed to search" : "Failed to search",
|
||||
@@ -213,10 +232,10 @@ OC.L10N.register(
|
||||
"Back to {category}" : "Back to {category}",
|
||||
"Reply" : "Reply",
|
||||
"Error loading thread" : "Error loading thread",
|
||||
"No posts yet" : "No posts yet",
|
||||
"Be the first to post in this thread." : "Be the first to post in this thread.",
|
||||
"No replies yet" : "No replies yet",
|
||||
"Be the first to reply in this thread." : "Be the first to reply in this thread.",
|
||||
"by" : "by",
|
||||
"This thread is locked. Only moderators can post replies." : "This thread is locked. Only moderators can post replies.",
|
||||
"This thread is locked. Only moderators can add replies." : "This thread is locked. Only moderators can add replies.",
|
||||
"You must be signed in to reply to this thread." : "You must be signed in to reply to this thread.",
|
||||
"Sign in to reply" : "Sign in to reply",
|
||||
"Lock thread" : "Lock thread",
|
||||
@@ -231,21 +250,28 @@ OC.L10N.register(
|
||||
"Subscribed" : "Subscribed",
|
||||
"Subscribed to thread" : "Subscribed to thread",
|
||||
"Unsubscribed from thread" : "Unsubscribed from thread",
|
||||
"Bookmark" : "Bookmark",
|
||||
"Remove bookmark" : "Remove bookmark",
|
||||
"Thread bookmarked" : "Thread bookmarked",
|
||||
"Bookmark removed" : "Bookmark removed",
|
||||
"Edit title" : "Edit title",
|
||||
"Save title" : "Save title",
|
||||
"Thread title updated" : "Thread title updated",
|
||||
"Move thread" : "Move thread",
|
||||
"Thread moved successfully" : "Thread moved successfully",
|
||||
"No thread ID or slug provided" : "No thread ID or slug provided",
|
||||
"Failed to load posts" : "Failed to load posts",
|
||||
"Post updated" : "Post updated",
|
||||
"Failed to update post" : "Failed to update post",
|
||||
"Failed to load replies" : "Failed to load replies",
|
||||
"Thread updated" : "Thread updated",
|
||||
"Reply updated" : "Reply updated",
|
||||
"Failed to update thread" : "Failed to update thread",
|
||||
"Failed to update reply" : "Failed to update reply",
|
||||
"Thread deleted" : "Thread deleted",
|
||||
"Post deleted" : "Post deleted",
|
||||
"Failed to delete post" : "Failed to delete post",
|
||||
"Reply deleted" : "Reply deleted",
|
||||
"Failed to delete reply" : "Failed to delete reply",
|
||||
"Failed to update thread lock status" : "Failed to update thread lock status",
|
||||
"Failed to update thread pin status" : "Failed to update thread pin status",
|
||||
"Failed to update subscription" : "Failed to update subscription",
|
||||
"Failed to update bookmark" : "Failed to update bookmark",
|
||||
"Failed to update thread title" : "Failed to update thread title",
|
||||
"Failed to move thread" : "Failed to move thread",
|
||||
"Preferences" : "Preferences",
|
||||
@@ -259,17 +285,17 @@ OC.L10N.register(
|
||||
"Files" : "Files",
|
||||
"Configure file upload settings" : "Configure file upload settings",
|
||||
"Upload directory" : "Upload directory",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Files attached to posts will be uploaded to this directory in your Nextcloud files",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Files attached to threads or replies will be uploaded to this directory in your Nextcloud files",
|
||||
"Browse" : "Browse",
|
||||
"Preferences saved" : "Preferences saved",
|
||||
"Signature" : "Signature",
|
||||
"Your signature appears at the bottom of your posts" : "Your signature appears at the bottom of your posts",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Your signature appears at the bottom of your threads or replies",
|
||||
"You can use BBCode formatting in your signature" : "You can use BBCode formatting in your signature",
|
||||
"Enter your signature …" : "Enter your signature …",
|
||||
"Failed to save preferences" : "Failed to save preferences",
|
||||
"Select upload directory" : "Select upload directory",
|
||||
"BBCode management" : "BBCode management",
|
||||
"Manage custom BBCode tags for post formatting" : "Manage custom BBCode tags for post formatting",
|
||||
"Manage custom BBCode tags for formatting" : "Manage custom BBCode tags for formatting",
|
||||
"Error loading BBCodes" : "Error loading BBCodes",
|
||||
"Create BBCode" : "Create BBCode",
|
||||
"Enable" : "Enable",
|
||||
|
||||
@@ -36,12 +36,15 @@
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Feel free to start a new discussion or reply to existing threads. Happy posting!",
|
||||
"Forum" : "Forum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} new reply in {thread}","{count} new replies in {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mentioned you in {thread}",
|
||||
"Welcome to the forum!" : "Welcome to the forum!",
|
||||
"Deleted user" : "Deleted user",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "A community-driven forum built right into your Nextcloud instance",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control.",
|
||||
"Loading …" : "Loading …",
|
||||
"Search" : "Search",
|
||||
"Home" : "Home",
|
||||
"Bookmarks" : "Bookmarks",
|
||||
"User preferences" : "User preferences",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Forum settings" : "Forum settings",
|
||||
@@ -128,34 +131,52 @@
|
||||
"Quote reply" : "Quote reply",
|
||||
"Edit" : "Edit",
|
||||
"Delete" : "Delete",
|
||||
"View edit history" : "View edit history",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Are you sure you want to delete this post? This action cannot be undone.",
|
||||
"Unread" : "Unread",
|
||||
"Edit your post …" : "Edit your post …",
|
||||
"Edit your reply …" : "Edit your reply …",
|
||||
"Save" : "Save",
|
||||
"Are you sure you want to discard your changes?" : "Are you sure you want to discard your changes?",
|
||||
"Edit history" : "Edit history",
|
||||
"Loading history …" : "Loading history …",
|
||||
"This post has no edit history." : "This post has no edit history.",
|
||||
"Current version" : "Current version",
|
||||
"Edited by" : "Edited by",
|
||||
"Failed to load edit history" : "Failed to load edit history",
|
||||
"Version {index}" : "Version {index}",
|
||||
"Add reaction" : "Add reaction",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"You reacted with {emoji}" : "You reacted with {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["You and %n other reacted with {emoji}","You and %n others reacted with {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n person reacted with {emoji}","%n people reacted with {emoji}"],
|
||||
"Write your reply …" : "Write your reply …",
|
||||
"Post reply" : "Post reply",
|
||||
"Submit reply" : "Submit reply",
|
||||
"Are you sure you want to discard your reply?" : "Are you sure you want to discard your reply?",
|
||||
"In thread" : "In thread",
|
||||
"Thread unavailable" : "Thread unavailable",
|
||||
"Pinned thread" : "Pinned thread",
|
||||
"Locked thread" : "Locked thread",
|
||||
"Uncategorized" : "Uncategorised",
|
||||
"_%n post_::_%n posts_" : ["%n post","%n posts"],
|
||||
"_%n reply_::_%n replies_" : ["%n reply","%n replies"],
|
||||
"_%n view_::_%n views_" : ["%n view","%n views"],
|
||||
"Views" : "Views",
|
||||
"Title" : "Title",
|
||||
"Enter thread title …" : "Enter thread title …",
|
||||
"Write your first post …" : "Write your first post …",
|
||||
"Write your thread content …" : "Write your thread content …",
|
||||
"Create thread" : "Create thread",
|
||||
"Are you sure you want to discard this thread?" : "Are you sure you want to discard this thread?",
|
||||
"Saving draft …" : "Saving draft …",
|
||||
"Draft saved" : "Draft saved",
|
||||
"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",
|
||||
"Bookmark threads to quickly find them later." : "Bookmark threads to quickly find them later.",
|
||||
"Retry" : "Retry",
|
||||
"An unexpected error occurred" : "An unexpected error occurred",
|
||||
"Failed to load bookmarks" : "Failed to load bookmarks",
|
||||
"No categories yet" : "No categories yet",
|
||||
"Categories will appear here once they are created." : "Categories will appear here once they are created.",
|
||||
"No categories in this section" : "No categories in this section",
|
||||
@@ -166,8 +187,6 @@
|
||||
"Error loading category" : "Error loading category",
|
||||
"No threads yet" : "No threads yet",
|
||||
"Be the first to start a discussion in this category." : "Be the first to start a discussion in this category.",
|
||||
"Retry" : "Retry",
|
||||
"An unexpected error occurred" : "An unexpected error occurred",
|
||||
"No category ID or slug provided" : "No category ID or slug provided",
|
||||
"Failed to load threads" : "Failed to load threads",
|
||||
"Create New Thread" : "Create New Thread",
|
||||
@@ -177,17 +196,17 @@
|
||||
"Failed to create thread" : "Failed to create thread",
|
||||
"No category specified" : "No category specified",
|
||||
"Error" : "Error",
|
||||
"First post" : "First post",
|
||||
"First activity" : "First activity",
|
||||
"Threads ({count})" : "Threads ({count})",
|
||||
"Replies ({count})" : "Replies ({count})",
|
||||
"No threads" : "No threads",
|
||||
"This user has not created any threads yet" : "This user has not created any threads yet",
|
||||
"No replies" : "No replies",
|
||||
"This user has not posted any replies yet" : "This user has not posted any replies yet",
|
||||
"This user has not written any replies yet" : "This user has not written any replies yet",
|
||||
"Failed to load user profile" : "Failed to load user profile",
|
||||
"Enter search query …" : "Enter search query …",
|
||||
"Search in threads" : "Search in threads",
|
||||
"Search in posts" : "Search in posts",
|
||||
"Search in replies" : "Search in replies",
|
||||
"Syntax help" : "Syntax help",
|
||||
"Search syntax" : "Search syntax",
|
||||
"Match exact phrase" : "Match exact phrase",
|
||||
@@ -198,11 +217,11 @@
|
||||
"Searching …" : "Searching …",
|
||||
"Search Error" : "Search Error",
|
||||
"Enter a search query" : "Enter a search query",
|
||||
"Use the search box above to find threads and posts" : "Use the search box above to find threads and posts",
|
||||
"Use the search box above to find threads and replies" : "Use the search box above to find threads and replies",
|
||||
"No results found" : "No results found",
|
||||
"Try different keywords or check your syntax" : "Try different keywords or check your syntax",
|
||||
"_%n thread found_::_%n threads found_" : ["%n thread found","%n threads found"],
|
||||
"_%n post found_::_%n posts found_" : ["%n post found","%n posts found"],
|
||||
"_%n reply found_::_%n replies found_" : ["%n reply found","%n replies found"],
|
||||
"Please enter a search query" : "Please enter a search query",
|
||||
"Please select at least one search scope" : "Please select at least one search scope",
|
||||
"Failed to search" : "Failed to search",
|
||||
@@ -211,10 +230,10 @@
|
||||
"Back to {category}" : "Back to {category}",
|
||||
"Reply" : "Reply",
|
||||
"Error loading thread" : "Error loading thread",
|
||||
"No posts yet" : "No posts yet",
|
||||
"Be the first to post in this thread." : "Be the first to post in this thread.",
|
||||
"No replies yet" : "No replies yet",
|
||||
"Be the first to reply in this thread." : "Be the first to reply in this thread.",
|
||||
"by" : "by",
|
||||
"This thread is locked. Only moderators can post replies." : "This thread is locked. Only moderators can post replies.",
|
||||
"This thread is locked. Only moderators can add replies." : "This thread is locked. Only moderators can add replies.",
|
||||
"You must be signed in to reply to this thread." : "You must be signed in to reply to this thread.",
|
||||
"Sign in to reply" : "Sign in to reply",
|
||||
"Lock thread" : "Lock thread",
|
||||
@@ -229,21 +248,28 @@
|
||||
"Subscribed" : "Subscribed",
|
||||
"Subscribed to thread" : "Subscribed to thread",
|
||||
"Unsubscribed from thread" : "Unsubscribed from thread",
|
||||
"Bookmark" : "Bookmark",
|
||||
"Remove bookmark" : "Remove bookmark",
|
||||
"Thread bookmarked" : "Thread bookmarked",
|
||||
"Bookmark removed" : "Bookmark removed",
|
||||
"Edit title" : "Edit title",
|
||||
"Save title" : "Save title",
|
||||
"Thread title updated" : "Thread title updated",
|
||||
"Move thread" : "Move thread",
|
||||
"Thread moved successfully" : "Thread moved successfully",
|
||||
"No thread ID or slug provided" : "No thread ID or slug provided",
|
||||
"Failed to load posts" : "Failed to load posts",
|
||||
"Post updated" : "Post updated",
|
||||
"Failed to update post" : "Failed to update post",
|
||||
"Failed to load replies" : "Failed to load replies",
|
||||
"Thread updated" : "Thread updated",
|
||||
"Reply updated" : "Reply updated",
|
||||
"Failed to update thread" : "Failed to update thread",
|
||||
"Failed to update reply" : "Failed to update reply",
|
||||
"Thread deleted" : "Thread deleted",
|
||||
"Post deleted" : "Post deleted",
|
||||
"Failed to delete post" : "Failed to delete post",
|
||||
"Reply deleted" : "Reply deleted",
|
||||
"Failed to delete reply" : "Failed to delete reply",
|
||||
"Failed to update thread lock status" : "Failed to update thread lock status",
|
||||
"Failed to update thread pin status" : "Failed to update thread pin status",
|
||||
"Failed to update subscription" : "Failed to update subscription",
|
||||
"Failed to update bookmark" : "Failed to update bookmark",
|
||||
"Failed to update thread title" : "Failed to update thread title",
|
||||
"Failed to move thread" : "Failed to move thread",
|
||||
"Preferences" : "Preferences",
|
||||
@@ -257,17 +283,17 @@
|
||||
"Files" : "Files",
|
||||
"Configure file upload settings" : "Configure file upload settings",
|
||||
"Upload directory" : "Upload directory",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Files attached to posts will be uploaded to this directory in your Nextcloud files",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Files attached to threads or replies will be uploaded to this directory in your Nextcloud files",
|
||||
"Browse" : "Browse",
|
||||
"Preferences saved" : "Preferences saved",
|
||||
"Signature" : "Signature",
|
||||
"Your signature appears at the bottom of your posts" : "Your signature appears at the bottom of your posts",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Your signature appears at the bottom of your threads or replies",
|
||||
"You can use BBCode formatting in your signature" : "You can use BBCode formatting in your signature",
|
||||
"Enter your signature …" : "Enter your signature …",
|
||||
"Failed to save preferences" : "Failed to save preferences",
|
||||
"Select upload directory" : "Select upload directory",
|
||||
"BBCode management" : "BBCode management",
|
||||
"Manage custom BBCode tags for post formatting" : "Manage custom BBCode tags for post formatting",
|
||||
"Manage custom BBCode tags for formatting" : "Manage custom BBCode tags for formatting",
|
||||
"Error loading BBCodes" : "Error loading BBCodes",
|
||||
"Create BBCode" : "Create BBCode",
|
||||
"Enable" : "Enable",
|
||||
|
||||
@@ -6,8 +6,10 @@ OC.L10N.register(
|
||||
"User" : "Uzanto",
|
||||
"General" : "Ĝenerala",
|
||||
"Forum" : "Forumo",
|
||||
"Loading …" : "Ŝargado...",
|
||||
"Search" : "Serĉi",
|
||||
"Home" : "Hejmo",
|
||||
"Bookmarks" : "Legosignaro",
|
||||
"Dashboard" : "Regpanelo",
|
||||
"Users" : "Uzantoj",
|
||||
"Categories" : "Kategorioj",
|
||||
@@ -22,9 +24,12 @@ OC.L10N.register(
|
||||
"Edit" : "Modifi",
|
||||
"Delete" : "Forigi",
|
||||
"Save" : "Konservi",
|
||||
"Current version" : "Nuna versio",
|
||||
"Uncategorized" : "Senkategoria",
|
||||
"Saving draft …" : "Konservado de malneto...",
|
||||
"Draft saved" : "Malneto konservita",
|
||||
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
|
||||
"Refresh" : "Aktualigi",
|
||||
"Loading …" : "Ŝargado...",
|
||||
"Retry" : "Reprovi",
|
||||
"Error" : "Eraro",
|
||||
"Searching …" : "Serĉado ...",
|
||||
|
||||
@@ -4,8 +4,10 @@
|
||||
"User" : "Uzanto",
|
||||
"General" : "Ĝenerala",
|
||||
"Forum" : "Forumo",
|
||||
"Loading …" : "Ŝargado...",
|
||||
"Search" : "Serĉi",
|
||||
"Home" : "Hejmo",
|
||||
"Bookmarks" : "Legosignaro",
|
||||
"Dashboard" : "Regpanelo",
|
||||
"Users" : "Uzantoj",
|
||||
"Categories" : "Kategorioj",
|
||||
@@ -20,9 +22,12 @@
|
||||
"Edit" : "Modifi",
|
||||
"Delete" : "Forigi",
|
||||
"Save" : "Konservi",
|
||||
"Current version" : "Nuna versio",
|
||||
"Uncategorized" : "Senkategoria",
|
||||
"Saving draft …" : "Konservado de malneto...",
|
||||
"Draft saved" : "Malneto konservita",
|
||||
"Unsaved changes" : "Nekonservitaj ŝanĝoj",
|
||||
"Refresh" : "Aktualigi",
|
||||
"Loading …" : "Ŝargado...",
|
||||
"Retry" : "Reprovi",
|
||||
"Error" : "Eraro",
|
||||
"Searching …" : "Serĉado ...",
|
||||
|
||||
11
l10n/es.js
11
l10n/es.js
@@ -2,6 +2,8 @@ OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Admin" : "Administrador",
|
||||
"Moderator" : "Moderador",
|
||||
"Moderator role with elevated permissions" : "Rol de moderador con permisos elevados",
|
||||
"User" : "Usuario",
|
||||
"Guest" : "Invitado",
|
||||
"General" : "General",
|
||||
@@ -10,8 +12,10 @@ OC.L10N.register(
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -42,12 +46,16 @@ OC.L10N.register(
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"_%n reply_::_%n replies_" : ["%n respuesta","%n respuestas","%n respuestas"],
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Título",
|
||||
"Saving draft …" : "Guardando borrador…",
|
||||
"Draft saved" : "Borrador guardado",
|
||||
"Unsaved changes" : "Cambios sin guardar",
|
||||
"Refresh" : "Refrescar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"In {category}" : "En {category}",
|
||||
"Error" : "Error",
|
||||
@@ -58,6 +66,7 @@ OC.L10N.register(
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribirse",
|
||||
"Subscribed" : "Suscrito",
|
||||
"Bookmark" : "Marcador",
|
||||
"Edit title" : "Editar título",
|
||||
"Move thread" : "Mover hilo",
|
||||
"Preferences" : "Preferencias",
|
||||
|
||||
11
l10n/es.json
11
l10n/es.json
@@ -1,5 +1,7 @@
|
||||
{ "translations": {
|
||||
"Admin" : "Administrador",
|
||||
"Moderator" : "Moderador",
|
||||
"Moderator role with elevated permissions" : "Rol de moderador con permisos elevados",
|
||||
"User" : "Usuario",
|
||||
"Guest" : "Invitado",
|
||||
"General" : "General",
|
||||
@@ -8,8 +10,10 @@
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -40,12 +44,16 @@
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"_%n reply_::_%n replies_" : ["%n respuesta","%n respuestas","%n respuestas"],
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Título",
|
||||
"Saving draft …" : "Guardando borrador…",
|
||||
"Draft saved" : "Borrador guardado",
|
||||
"Unsaved changes" : "Cambios sin guardar",
|
||||
"Refresh" : "Refrescar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"In {category}" : "En {category}",
|
||||
"Error" : "Error",
|
||||
@@ -56,6 +64,7 @@
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribirse",
|
||||
"Subscribed" : "Suscrito",
|
||||
"Bookmark" : "Marcador",
|
||||
"Edit title" : "Editar título",
|
||||
"Move thread" : "Mover hilo",
|
||||
"Preferences" : "Preferencias",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero",
|
||||
"Users" : "Ususarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -24,6 +25,7 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"by" : "por",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero",
|
||||
"Users" : "Ususarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -22,6 +23,7 @@
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"by" : "por",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Inicio",
|
||||
"Users" : "Ususarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -22,6 +23,7 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Inicio",
|
||||
"Users" : "Ususarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -20,6 +21,7 @@
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -24,6 +25,7 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"by" : "por",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -22,6 +23,7 @@
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"by" : "por",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -23,6 +24,7 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -21,6 +22,7 @@
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -24,6 +25,7 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -22,6 +23,7 @@
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -40,8 +40,10 @@ 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",
|
||||
"User preferences" : "Preferencias de usuario",
|
||||
"Dashboard" : "Panel",
|
||||
"Forum settings" : "Configuración del foro",
|
||||
@@ -111,32 +113,33 @@ OC.L10N.register(
|
||||
"Delete" : "Eliminar",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "¿Estás seguro de que deseas eliminar esta publicación? Esta acción no se puede deshacer.",
|
||||
"Unread" : "No leído",
|
||||
"Edit your post …" : "Edita tu publicación …",
|
||||
"Save" : "Guardar",
|
||||
"Are you sure you want to discard your changes?" : "¿Estás seguro de que deseas descartar tus cambios?",
|
||||
"Current version" : "Versión actual",
|
||||
"Add reaction" : "Agregar reacción",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"You reacted with {emoji}" : "Has reaccionado con {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Tú y %n otra persona reaccionaron con {emoji}","Tú y %n otras personas reaccionaron con {emoji}","Tú y %n otras personas reaccionaron con {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n persona reaccionó con {emoji}","%n personas reaccionaron con {emoji}","%n personas reaccionaron con {emoji}"],
|
||||
"Write your reply …" : "Escribe tu respuesta …",
|
||||
"Post reply" : "Publicar respuesta",
|
||||
"Are you sure you want to discard your reply?" : "¿Estás seguro de que deseas descartar tu respuesta?",
|
||||
"In thread" : "En el hilo",
|
||||
"Thread unavailable" : "Hilo no disponible",
|
||||
"Pinned thread" : "Hilo fijado",
|
||||
"Locked thread" : "Hilo bloqueado",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"_%n post_::_%n posts_" : ["%n publicación","%n publicaciones","%n publicaciones"],
|
||||
"_%n view_::_%n views_" : ["%n vista","%n vistas","%n vistas"],
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Título",
|
||||
"Enter thread title …" : "Ingresa el título del hilo …",
|
||||
"Write your first post …" : "Escribe tu primera publicación …",
|
||||
"Create thread" : "Crear hilo",
|
||||
"Are you sure you want to discard this thread?" : "¿Estás seguro de que deseas descartar este hilo?",
|
||||
"Saving draft …" : "Guardando borrador...",
|
||||
"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",
|
||||
"Categories will appear here once they are created." : "Las categorías aparecerán aquí una vez que se creen.",
|
||||
"No categories in this section" : "No hay categorías en esta sección",
|
||||
@@ -147,8 +150,6 @@ OC.L10N.register(
|
||||
"Error loading category" : "Error al cargar la categoría",
|
||||
"No threads yet" : "Aún no hay hilos",
|
||||
"Be the first to start a discussion in this category." : "Sé el primero en iniciar una discusión en esta categoría.",
|
||||
"Retry" : "Reintentar",
|
||||
"An unexpected error occurred" : "Ocurrió un error inesperado",
|
||||
"No category ID or slug provided" : "No se proporcionó ID o slug de categoría",
|
||||
"Failed to load threads" : "Error al cargar hilos",
|
||||
"Create New Thread" : "Crear nuevo hilo",
|
||||
@@ -158,17 +159,14 @@ OC.L10N.register(
|
||||
"Failed to create thread" : "Error al crear hilo",
|
||||
"No category specified" : "No se especificó categoría",
|
||||
"Error" : "Error",
|
||||
"First post" : "Primer publicación",
|
||||
"Threads ({count})" : "Hilos ({count})",
|
||||
"Replies ({count})" : "Respuestas ({count})",
|
||||
"No threads" : "No hay hilos",
|
||||
"This user has not created any threads yet" : "Este usuario aún no ha creado ningún hilo",
|
||||
"No replies" : "No hay respuestas",
|
||||
"This user has not posted any replies yet" : "Este usuario aún no ha publicado ninguna respuesta",
|
||||
"Failed to load user profile" : "Error al cargar el perfil del usuario",
|
||||
"Enter search query …" : "Ingresa tu consulta de búsqueda …",
|
||||
"Search in threads" : "Buscar en hilos",
|
||||
"Search in posts" : "Buscar en publicaciones",
|
||||
"Syntax help" : "Ayuda de sintaxis",
|
||||
"Search syntax" : "Sintaxis de búsqueda",
|
||||
"Match exact phrase" : "Coincidir frase exacta",
|
||||
@@ -179,11 +177,9 @@ OC.L10N.register(
|
||||
"Searching …" : "Buscando …",
|
||||
"Search Error" : "Error de búsqueda",
|
||||
"Enter a search query" : "Ingresa una consulta de búsqueda",
|
||||
"Use the search box above to find threads and posts" : "Usa el cuadro de búsqueda arriba para encontrar hilos y publicaciones",
|
||||
"No results found" : "No se encontraron resultados",
|
||||
"Try different keywords or check your syntax" : "Prueba con otras palabras clave o verifica tu sintaxis",
|
||||
"_%n thread found_::_%n threads found_" : ["%n hilo encontrado","%n hilos encontrados","%n hilos encontrados"],
|
||||
"_%n post found_::_%n posts found_" : ["%n publicación encontrada","%n publicaciones encontradas","%n publicaciones encontradas"],
|
||||
"Please enter a search query" : "Por favor ingresa una consulta de búsqueda",
|
||||
"Please select at least one search scope" : "Por favor selecciona al menos un ámbito de búsqueda",
|
||||
"Failed to search" : "Error al buscar",
|
||||
@@ -192,10 +188,7 @@ OC.L10N.register(
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"Reply" : "Responder",
|
||||
"Error loading thread" : "Error al cargar el hilo",
|
||||
"No posts yet" : "Aún no hay publicaciones",
|
||||
"Be the first to post in this thread." : "Sé el primero en publicar en este hilo.",
|
||||
"by" : "por",
|
||||
"This thread is locked. Only moderators can post replies." : "Este hilo está bloqueado. Solo los moderadores pueden publicar respuestas.",
|
||||
"You must be signed in to reply to this thread." : "Debes iniciar sesión para responder a este hilo.",
|
||||
"Sign in to reply" : "Inicia sesión para responder",
|
||||
"Lock thread" : "Bloquear hilo",
|
||||
@@ -210,15 +203,11 @@ OC.L10N.register(
|
||||
"Subscribed" : "Suscrito",
|
||||
"Subscribed to thread" : "Suscrito al hilo",
|
||||
"Unsubscribed from thread" : "No suscrito al hilo",
|
||||
"Bookmark" : "Marcador",
|
||||
"Edit title" : "Editar título",
|
||||
"Move thread" : "Mover hilo",
|
||||
"No thread ID or slug provided" : "No se proporcionó ID o slug del hilo",
|
||||
"Failed to load posts" : "Error al cargar publicaciones",
|
||||
"Post updated" : "Publicación actualizada",
|
||||
"Failed to update post" : "Error al actualizar publicación",
|
||||
"Thread deleted" : "Hilo eliminado",
|
||||
"Post deleted" : "Publicación eliminada",
|
||||
"Failed to delete post" : "Error al eliminar publicación",
|
||||
"Failed to update thread lock status" : "Error al actualizar estado de bloqueo del hilo",
|
||||
"Failed to update thread pin status" : "Error al actualizar estado de fijación del hilo",
|
||||
"Failed to update subscription" : "Error al actualizar suscripción",
|
||||
@@ -235,7 +224,6 @@ OC.L10N.register(
|
||||
"Signature" : "Firma",
|
||||
"Failed to save preferences" : "Error al guardar preferencias",
|
||||
"BBCode management" : "Gestión de BBCode",
|
||||
"Manage custom BBCode tags for post formatting" : "Gestiona etiquetas BBCode personalizadas para el formato de publicaciones",
|
||||
"Error loading BBCodes" : "Error al cargar BBCodes",
|
||||
"Create BBCode" : "Crear BBCode",
|
||||
"Enable" : "Habilitar",
|
||||
|
||||
@@ -38,8 +38,10 @@
|
||||
"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",
|
||||
"User preferences" : "Preferencias de usuario",
|
||||
"Dashboard" : "Panel",
|
||||
"Forum settings" : "Configuración del foro",
|
||||
@@ -109,32 +111,33 @@
|
||||
"Delete" : "Eliminar",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "¿Estás seguro de que deseas eliminar esta publicación? Esta acción no se puede deshacer.",
|
||||
"Unread" : "No leído",
|
||||
"Edit your post …" : "Edita tu publicación …",
|
||||
"Save" : "Guardar",
|
||||
"Are you sure you want to discard your changes?" : "¿Estás seguro de que deseas descartar tus cambios?",
|
||||
"Current version" : "Versión actual",
|
||||
"Add reaction" : "Agregar reacción",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"You reacted with {emoji}" : "Has reaccionado con {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Tú y %n otra persona reaccionaron con {emoji}","Tú y %n otras personas reaccionaron con {emoji}","Tú y %n otras personas reaccionaron con {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n persona reaccionó con {emoji}","%n personas reaccionaron con {emoji}","%n personas reaccionaron con {emoji}"],
|
||||
"Write your reply …" : "Escribe tu respuesta …",
|
||||
"Post reply" : "Publicar respuesta",
|
||||
"Are you sure you want to discard your reply?" : "¿Estás seguro de que deseas descartar tu respuesta?",
|
||||
"In thread" : "En el hilo",
|
||||
"Thread unavailable" : "Hilo no disponible",
|
||||
"Pinned thread" : "Hilo fijado",
|
||||
"Locked thread" : "Hilo bloqueado",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"_%n post_::_%n posts_" : ["%n publicación","%n publicaciones","%n publicaciones"],
|
||||
"_%n view_::_%n views_" : ["%n vista","%n vistas","%n vistas"],
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Título",
|
||||
"Enter thread title …" : "Ingresa el título del hilo …",
|
||||
"Write your first post …" : "Escribe tu primera publicación …",
|
||||
"Create thread" : "Crear hilo",
|
||||
"Are you sure you want to discard this thread?" : "¿Estás seguro de que deseas descartar este hilo?",
|
||||
"Saving draft …" : "Guardando borrador...",
|
||||
"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",
|
||||
"Categories will appear here once they are created." : "Las categorías aparecerán aquí una vez que se creen.",
|
||||
"No categories in this section" : "No hay categorías en esta sección",
|
||||
@@ -145,8 +148,6 @@
|
||||
"Error loading category" : "Error al cargar la categoría",
|
||||
"No threads yet" : "Aún no hay hilos",
|
||||
"Be the first to start a discussion in this category." : "Sé el primero en iniciar una discusión en esta categoría.",
|
||||
"Retry" : "Reintentar",
|
||||
"An unexpected error occurred" : "Ocurrió un error inesperado",
|
||||
"No category ID or slug provided" : "No se proporcionó ID o slug de categoría",
|
||||
"Failed to load threads" : "Error al cargar hilos",
|
||||
"Create New Thread" : "Crear nuevo hilo",
|
||||
@@ -156,17 +157,14 @@
|
||||
"Failed to create thread" : "Error al crear hilo",
|
||||
"No category specified" : "No se especificó categoría",
|
||||
"Error" : "Error",
|
||||
"First post" : "Primer publicación",
|
||||
"Threads ({count})" : "Hilos ({count})",
|
||||
"Replies ({count})" : "Respuestas ({count})",
|
||||
"No threads" : "No hay hilos",
|
||||
"This user has not created any threads yet" : "Este usuario aún no ha creado ningún hilo",
|
||||
"No replies" : "No hay respuestas",
|
||||
"This user has not posted any replies yet" : "Este usuario aún no ha publicado ninguna respuesta",
|
||||
"Failed to load user profile" : "Error al cargar el perfil del usuario",
|
||||
"Enter search query …" : "Ingresa tu consulta de búsqueda …",
|
||||
"Search in threads" : "Buscar en hilos",
|
||||
"Search in posts" : "Buscar en publicaciones",
|
||||
"Syntax help" : "Ayuda de sintaxis",
|
||||
"Search syntax" : "Sintaxis de búsqueda",
|
||||
"Match exact phrase" : "Coincidir frase exacta",
|
||||
@@ -177,11 +175,9 @@
|
||||
"Searching …" : "Buscando …",
|
||||
"Search Error" : "Error de búsqueda",
|
||||
"Enter a search query" : "Ingresa una consulta de búsqueda",
|
||||
"Use the search box above to find threads and posts" : "Usa el cuadro de búsqueda arriba para encontrar hilos y publicaciones",
|
||||
"No results found" : "No se encontraron resultados",
|
||||
"Try different keywords or check your syntax" : "Prueba con otras palabras clave o verifica tu sintaxis",
|
||||
"_%n thread found_::_%n threads found_" : ["%n hilo encontrado","%n hilos encontrados","%n hilos encontrados"],
|
||||
"_%n post found_::_%n posts found_" : ["%n publicación encontrada","%n publicaciones encontradas","%n publicaciones encontradas"],
|
||||
"Please enter a search query" : "Por favor ingresa una consulta de búsqueda",
|
||||
"Please select at least one search scope" : "Por favor selecciona al menos un ámbito de búsqueda",
|
||||
"Failed to search" : "Error al buscar",
|
||||
@@ -190,10 +186,7 @@
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"Reply" : "Responder",
|
||||
"Error loading thread" : "Error al cargar el hilo",
|
||||
"No posts yet" : "Aún no hay publicaciones",
|
||||
"Be the first to post in this thread." : "Sé el primero en publicar en este hilo.",
|
||||
"by" : "por",
|
||||
"This thread is locked. Only moderators can post replies." : "Este hilo está bloqueado. Solo los moderadores pueden publicar respuestas.",
|
||||
"You must be signed in to reply to this thread." : "Debes iniciar sesión para responder a este hilo.",
|
||||
"Sign in to reply" : "Inicia sesión para responder",
|
||||
"Lock thread" : "Bloquear hilo",
|
||||
@@ -208,15 +201,11 @@
|
||||
"Subscribed" : "Suscrito",
|
||||
"Subscribed to thread" : "Suscrito al hilo",
|
||||
"Unsubscribed from thread" : "No suscrito al hilo",
|
||||
"Bookmark" : "Marcador",
|
||||
"Edit title" : "Editar título",
|
||||
"Move thread" : "Mover hilo",
|
||||
"No thread ID or slug provided" : "No se proporcionó ID o slug del hilo",
|
||||
"Failed to load posts" : "Error al cargar publicaciones",
|
||||
"Post updated" : "Publicación actualizada",
|
||||
"Failed to update post" : "Error al actualizar publicación",
|
||||
"Thread deleted" : "Hilo eliminado",
|
||||
"Post deleted" : "Publicación eliminada",
|
||||
"Failed to delete post" : "Error al eliminar publicación",
|
||||
"Failed to update thread lock status" : "Error al actualizar estado de bloqueo del hilo",
|
||||
"Failed to update thread pin status" : "Error al actualizar estado de fijación del hilo",
|
||||
"Failed to update subscription" : "Error al actualizar suscripción",
|
||||
@@ -233,7 +222,6 @@
|
||||
"Signature" : "Firma",
|
||||
"Failed to save preferences" : "Error al guardar preferencias",
|
||||
"BBCode management" : "Gestión de BBCode",
|
||||
"Manage custom BBCode tags for post formatting" : "Gestiona etiquetas BBCode personalizadas para el formato de publicaciones",
|
||||
"Error loading BBCodes" : "Error al cargar BBCodes",
|
||||
"Create BBCode" : "Crear BBCode",
|
||||
"Enable" : "Habilitar",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -22,6 +23,9 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Saving draft …" : "Guardando borrador…",
|
||||
"Draft saved" : "Borrador guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -20,6 +21,9 @@
|
||||
"Delete" : "Borrar",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Saving draft …" : "Guardando borrador…",
|
||||
"Draft saved" : "Borrador guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -23,6 +24,7 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -21,6 +22,7 @@
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -9,8 +9,10 @@ OC.L10N.register(
|
||||
"Bold text" : "Texto en negritas",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : " Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -30,10 +32,14 @@ OC.L10N.register(
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Views" : "Vistas",
|
||||
"Saving draft …" : "Guardando borrador...",
|
||||
"Draft saved" : "Borrador guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Back to home" : "Regresar al inicio",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando …",
|
||||
@@ -41,6 +47,7 @@ OC.L10N.register(
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscríbete",
|
||||
"Subscribed" : "Suscrito",
|
||||
"Bookmark" : "Marcador",
|
||||
"Move thread" : "Mover hilo",
|
||||
"Preferences" : "Preferencias",
|
||||
"Files" : "Archivo",
|
||||
|
||||
@@ -7,8 +7,10 @@
|
||||
"Bold text" : "Texto en negritas",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : " Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -28,10 +30,14 @@
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Views" : "Vistas",
|
||||
"Saving draft …" : "Guardando borrador...",
|
||||
"Draft saved" : "Borrador guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Back to home" : "Regresar al inicio",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando …",
|
||||
@@ -39,6 +45,7 @@
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscríbete",
|
||||
"Subscribed" : "Suscrito",
|
||||
"Bookmark" : "Marcador",
|
||||
"Move thread" : "Mover hilo",
|
||||
"Preferences" : "Preferencias",
|
||||
"Files" : "Archivo",
|
||||
|
||||
@@ -24,6 +24,7 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -24,6 +24,7 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -23,6 +23,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -24,6 +24,7 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -24,6 +24,7 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -23,6 +24,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"Forum" : "Foro",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
@@ -21,6 +22,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -23,6 +23,7 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
|
||||
@@ -38,11 +38,14 @@ OC.L10N.register(
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Alusta uut keskustelu või vasta olemasolevale jutulõngale. Soovime sulle toimekat suhtlust!",
|
||||
"Forum" : "Foorum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} uus vastus jutulõngas {thread}","{count} uut vastust jutulõngas {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mainis sind jutulõngas „{thread}“",
|
||||
"Welcome to the forum!" : "Tere tulemast foorumisse!",
|
||||
"Deleted user" : "Kustutatud kasutaja",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris.",
|
||||
"Loading …" : "Laadin...",
|
||||
"Search" : "Otsi",
|
||||
"Home" : "Avaleht",
|
||||
"Bookmarks" : "Järjehoidjad",
|
||||
"User preferences" : "Kasutaja eelistused",
|
||||
"Dashboard" : "Töölaud/Juhtpaneel",
|
||||
"Forum settings" : "Foorumi seadistused",
|
||||
@@ -129,34 +132,52 @@ OC.L10N.register(
|
||||
"Quote reply" : "Tsiteeri vastust",
|
||||
"Edit" : "Muuda",
|
||||
"Delete" : "Kustuta",
|
||||
"View edit history" : "Vaata muudatuste ajalugu",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Kas sa oled kindel, et soovid selle postituse kustutada? Seda tegevust ei saa tagasi pöörata.",
|
||||
"Unread" : "Lugemata",
|
||||
"Edit your post …" : "Muuda postitust…",
|
||||
"Edit your reply …" : "Muuda oma vastust…",
|
||||
"Save" : "Salvesta",
|
||||
"Are you sure you want to discard your changes?" : "Kas sa oled kindel, et soovid oma muudatustest loobuda?",
|
||||
"Edit history" : "Muudatuste ajalugu",
|
||||
"Loading history …" : "Laadin muudatuste ajalugu…",
|
||||
"This post has no edit history." : "Sellel postitusel puudub muudatuste ajalugu.",
|
||||
"Current version" : "Hetkeversioon",
|
||||
"Edited by" : "Muutja",
|
||||
"Failed to load edit history" : "Muudatuste ajaloo laadimine ei õnnestunud",
|
||||
"Version {index}" : "Versioon {index}",
|
||||
"Add reaction" : "Lisa reaktsioon",
|
||||
"React with {emoji}" : "Reageeri {emoji} emojiga",
|
||||
"You reacted with {emoji}" : "Sa reageerisid {emoji} emojiga",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Sina ja %n muu kasutaja reageerisid {emoji} emojiga","Sina ja %n muud kasutajat reageerisid {emoji} emojiga"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n kasutaja reageeris {emoji} emojiga","%n kasutajat reageerisid {emoji} emojiga"],
|
||||
"Write your reply …" : "Koosta oma vastus…",
|
||||
"Post reply" : "Postita vastus",
|
||||
"Submit reply" : "Vasta",
|
||||
"Are you sure you want to discard your reply?" : "Kas sa oled kindel, et soovid oma vastusest loobuda?",
|
||||
"In thread" : "Jutulõngas",
|
||||
"Thread unavailable" : "Jutulõng pole saadaval",
|
||||
"Pinned thread" : "Esiletõstetud jutulõng",
|
||||
"Locked thread" : "Lukustatud jutulõng",
|
||||
"Uncategorized" : "Määratlemata",
|
||||
"_%n post_::_%n posts_" : ["%n postitus","%n postitust"],
|
||||
"_%n reply_::_%n replies_" : ["%n vastus","%n vastust"],
|
||||
"_%n view_::_%n views_" : ["%n vaatamine","%n vaatamist"],
|
||||
"Views" : "Vaated",
|
||||
"Title" : "Pealkiri",
|
||||
"Enter thread title …" : "Sisesta jutulõnga pealkiri…",
|
||||
"Write your first post …" : "Koosta oma esimene postitus…",
|
||||
"Write your thread content …" : "Lisa jutulõngale sisu…",
|
||||
"Create thread" : "Alusta jutulõnga",
|
||||
"Are you sure you want to discard this thread?" : "Kas sa oled kindel, et soovid selles jutulõngast loobuda?",
|
||||
"Saving draft …" : "Salvestan kavandit…",
|
||||
"Draft saved" : "Kavand on salvestatud",
|
||||
"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",
|
||||
"Bookmark threads to quickly find them later." : "Lisades jutulõngale järjehoidja saad neid hiljem kiiresti leida.",
|
||||
"Retry" : "Proovi uuesti",
|
||||
"An unexpected error occurred" : "Tekkis ootamatu viga",
|
||||
"Failed to load bookmarks" : "Järjehoidjate laadmine ei õnnestunud",
|
||||
"No categories yet" : "Kategooriaid veel pole",
|
||||
"Categories will appear here once they are created." : "Kategooriad on siin nähtavad, kui nad saavad loodud.",
|
||||
"No categories in this section" : "Selles rubriigis pole veel kategooriaid",
|
||||
@@ -167,8 +188,6 @@ OC.L10N.register(
|
||||
"Error loading category" : "Viga kategooria laadimisel",
|
||||
"No threads yet" : "Jutulõngu veel pole",
|
||||
"Be the first to start a discussion in this category." : "Ole esimene, kes selles kategoorias alustab vestlust.",
|
||||
"Retry" : "Proovi uuesti",
|
||||
"An unexpected error occurred" : "Tekkis ootamatu viga",
|
||||
"No category ID or slug provided" : "Ühtegi kategooria tunnust või aadressi lõputunnust pole lisatud",
|
||||
"Failed to load threads" : "Jutulõngade laadimine ei õnnestunud",
|
||||
"Create New Thread" : "Alusta jutulõnga",
|
||||
@@ -178,17 +197,17 @@ OC.L10N.register(
|
||||
"Failed to create thread" : "Jutulõnga alustamine ei õnnestunud",
|
||||
"No category specified" : "Ühtegi kategooriat pole määratletud",
|
||||
"Error" : "Viga",
|
||||
"First post" : "Esimene postitus",
|
||||
"First activity" : "Esimene tegevus",
|
||||
"Threads ({count})" : "Jutulõngad ({count})",
|
||||
"Replies ({count})" : "Vastused ({count})",
|
||||
"No threads" : "Jutulõngu pole",
|
||||
"This user has not created any threads yet" : "See kasutaja pole veel ühtegi jutulõnga alustanud",
|
||||
"No replies" : "Vastuseid pole",
|
||||
"This user has not posted any replies yet" : "See kasutaja pole veel ühtegi vastust koostanud",
|
||||
"This user has not written any replies yet" : "See kasutaja pole veel ühtegi vastust koostanud",
|
||||
"Failed to load user profile" : "Kasutajaprofiili laadimine ei õnnestunud",
|
||||
"Enter search query …" : "Sisesta otsingusõna…",
|
||||
"Search in threads" : "Otsi jutulõngade seast",
|
||||
"Search in posts" : "Otsi vastuste seast",
|
||||
"Search in replies" : "Otsi vastuste seast",
|
||||
"Syntax help" : "Abiteave süntaksi kohta",
|
||||
"Search syntax" : "Otsingusüntaks",
|
||||
"Match exact phrase" : "Otsi täpset fraasi",
|
||||
@@ -199,11 +218,11 @@ OC.L10N.register(
|
||||
"Searching …" : "Otsin...",
|
||||
"Search Error" : "Otsinguviga",
|
||||
"Enter a search query" : "Palun sisesta otsingupäring",
|
||||
"Use the search box above to find threads and posts" : "Ülalolevat otsingut saad kasutada jutulõngade ja postituste ostimiseks",
|
||||
"Use the search box above to find threads and replies" : "Ülalolevat otsingut saad kasutada jutulõngade ja vastuste otsimiseks",
|
||||
"No results found" : "Otsingutulemusi ei leidu",
|
||||
"Try different keywords or check your syntax" : "Proovi otsida muid sõnu või vaata, kas õigekiri on korras",
|
||||
"_%n thread found_::_%n threads found_" : ["Leidus %n jutulõng","Leidus %n jutulõnga"],
|
||||
"_%n post found_::_%n posts found_" : ["Leidus %n postitus","Leidus %n postitust"],
|
||||
"_%n reply found_::_%n replies found_" : ["Leidus %n vastus","Leidus %n vastust"],
|
||||
"Please enter a search query" : "Palun sisesta otsingupäring",
|
||||
"Please select at least one search scope" : "Palun vali vähemalt üks otsinguvaldkond",
|
||||
"Failed to search" : "Otsimine ei õnnestunud",
|
||||
@@ -212,10 +231,10 @@ OC.L10N.register(
|
||||
"Back to {category}" : "Tagasi siia: {category}",
|
||||
"Reply" : "Vasta",
|
||||
"Error loading thread" : "Viga jutulõnga laadimisel",
|
||||
"No posts yet" : "Postitusi veel pole",
|
||||
"Be the first to post in this thread." : "Ole esimene, kes selles jutulõngas alustab vestlust.",
|
||||
"No replies yet" : "Vastuseid veel pole",
|
||||
"Be the first to reply in this thread." : "Ole esimene, kes vastab selles jutulõngas.",
|
||||
"by" : "kasutajalt",
|
||||
"This thread is locked. Only moderators can post replies." : "See jutulõng on lukustatud. Vaid moderaatorid võivad postitada vastuseid.",
|
||||
"This thread is locked. Only moderators can add replies." : "See jutulõng on lukustatud. Vaid moderaatorid võivad siin vastata.",
|
||||
"You must be signed in to reply to this thread." : "Sellele jutulõngale vastamiseks pead logima sisse",
|
||||
"Sign in to reply" : "Vastamiseks logis sisse",
|
||||
"Lock thread" : "Lukusta jutulõng",
|
||||
@@ -230,21 +249,28 @@ OC.L10N.register(
|
||||
"Subscribed" : "Tellitud",
|
||||
"Subscribed to thread" : "Oled tellinud jutulõnga",
|
||||
"Unsubscribed from thread" : "Oled loobunud jutulõnga tellimisest",
|
||||
"Bookmark" : "Järjehoidja",
|
||||
"Remove bookmark" : "Eemalda järjehoidja",
|
||||
"Thread bookmarked" : "Oled lisanud jutulõngale järjehoidja",
|
||||
"Bookmark removed" : "Järjehoidja on eemaldatud",
|
||||
"Edit title" : "Muuda pealkirja",
|
||||
"Save title" : "Salvesta pealkirja",
|
||||
"Thread title updated" : "Jutulõnga pealkiri on uuendatud",
|
||||
"Move thread" : "Tõsta jutulõng mujale",
|
||||
"Thread moved successfully" : "Jutulõnga ümbertõstmine õnnestus",
|
||||
"No thread ID or slug provided" : "Ühtegi jutulõnga tunnust või aadressi lõputunnust pole lisatud",
|
||||
"Failed to load posts" : "Postituste laadimine ei õnnestunud",
|
||||
"Post updated" : "Postitus on uuendatud",
|
||||
"Failed to update post" : "Postituse uuendamine ei õnnestunud",
|
||||
"Failed to load replies" : "Vastuste laadimine ei õnnestunud",
|
||||
"Thread updated" : "Jutulõng on uuendatud",
|
||||
"Reply updated" : "Vastus on muudetud",
|
||||
"Failed to update thread" : "Jutulõnga uuendamine ei õnnestunud",
|
||||
"Failed to update reply" : "Vastuse muutmine ei õnnestunud",
|
||||
"Thread deleted" : "Jutulõng on kustutatud",
|
||||
"Post deleted" : "Postitus on kustutatud",
|
||||
"Failed to delete post" : "Postituse kustutamine ei õnnestunud",
|
||||
"Reply deleted" : "Vastus on kustutatud",
|
||||
"Failed to delete reply" : "Vastuse kustutamine ei õnnestunud",
|
||||
"Failed to update thread lock status" : "Jutulõnga lukustuse olekut ei õnnestunud uuendada",
|
||||
"Failed to update thread pin status" : "Jutulõnga esiletõstmise olekut ei õnnestunud uuendada",
|
||||
"Failed to update subscription" : "Tellimuse uuendamine ei õnnestunud",
|
||||
"Failed to update bookmark" : "Järjehoidja muutmine ei õnnestunud",
|
||||
"Failed to update thread title" : "Jutulõnga pealkirja ei õnnestunud uuendada",
|
||||
"Failed to move thread" : "Jutulõnga ümbertõstmine ei õnnestunud",
|
||||
"Preferences" : "Eelistused",
|
||||
@@ -258,17 +284,17 @@ OC.L10N.register(
|
||||
"Files" : "Failid",
|
||||
"Configure file upload settings" : "Seadista failide üleslaadimise seadistusi",
|
||||
"Upload directory" : "Üleslaadimiskaust",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Postituste manustena lisatud failid laaditakse sellesse kausta, mida näed oma Nextcloudi failirakenduses",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Jutulõngade või vastuste manustena lisatud failid laaditakse sellesse kausta, mida näed oma Nextcloudi failirakenduses",
|
||||
"Browse" : "Sirvi",
|
||||
"Preferences saved" : "Eelistused on salvestatud",
|
||||
"Signature" : "Allkiri",
|
||||
"Your signature appears at the bottom of your posts" : "Sinu allkiri on nähtav sinu postituste lõpus",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Sinu allkiri on nähtav sinu jutulõngade või vastuste lõpus",
|
||||
"You can use BBCode formatting in your signature" : "Oma allkirja koostamisel võid vormindamisel kasutada BBCode'i",
|
||||
"Enter your signature …" : "Sisesta oma allkiri…",
|
||||
"Failed to save preferences" : "Eelistuste salvestamine ei õnnestunud",
|
||||
"Select upload directory" : "Vali kaust, kust tahad üles laadida",
|
||||
"BBCode management" : "BBCode'i haldus",
|
||||
"Manage custom BBCode tags for post formatting" : "Halda postituse vormindamisel kasutavaid täiendavaid BBCode'i võimalused",
|
||||
"Manage custom BBCode tags for formatting" : "Halda vormindamisel kasutavaid täiendavaid BBCode'i võimalusi",
|
||||
"Error loading BBCodes" : "Viga BBCode'ide laadimisel",
|
||||
"Create BBCode" : "Lisa BBCode",
|
||||
"Enable" : "Võta kasutusele",
|
||||
@@ -278,15 +304,24 @@ OC.L10N.register(
|
||||
"Disabled BBCodes" : "BBCode'id, mis pole kasutusel",
|
||||
"These BBCode tags are currently inactive" : "Need BBCode'id pole hetkel kasutusel",
|
||||
"No enabled BBCodes" : "Ühtegi BBCode'i pole kasutusel",
|
||||
"Parses Inner" : "Töötleb sisemist sisu",
|
||||
"Delete BBCode" : "Kustuta BBCode",
|
||||
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Kas oled kindel, et soovid kustutada BBCode'i sildi [{tag}]?",
|
||||
"This action cannot be undone." : "Seda tegevust ei saa tagasi võtta.",
|
||||
"Edit BBCode" : "Muuda BBCode'i",
|
||||
"Tag" : "Silt",
|
||||
"e.g., b, i, url, color" : "näiteks b, i, url, värv",
|
||||
"The BBCode tag name (without brackets)" : "BBCode'i sildi nimi (ilma nurksulgudeta)",
|
||||
"HTML replacement" : "Asendus HTML-is",
|
||||
"e.g., {strongStart}{content}{strongEnd}" : "nt. {strongStart}{content}{strongEnd}",
|
||||
"Use {content} for the tag content and {paramName} for parameters" : "Kasuta „{content}“ sildi sisu jaoksja „{paramName}“ parameetrite jaoks",
|
||||
"e.g., {tagStart}Hello world{tagEnd}" : "nt. {tagStart}Tere maailm{tagEnd}",
|
||||
"Example usage of this BBCode tag" : "Selle BBCode'i sildi kasutuse näide",
|
||||
"Description" : "Kirjeldus",
|
||||
"Brief description of what this BBCode does" : "Lühikirjeldus, mida see BBCode teeb",
|
||||
"Enabled" : "Sisse lülitatud",
|
||||
"Parse inner content" : "Töötle sisemist sisu („inner content“)",
|
||||
"If enabled, BBCode tags inside this tag will also be parsed" : "Selle eelistuse kasutamisel ka selle sildi sees asuvad BBCode'i sildid kuuluvad töötlemisele",
|
||||
"Create category" : "Lisa kategooria",
|
||||
"Edit category" : "Muuda kategooriat",
|
||||
"Configure category details" : "Seadista kategooria üksikasju",
|
||||
@@ -343,7 +378,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",
|
||||
|
||||
@@ -36,11 +36,14 @@
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Alusta uut keskustelu või vasta olemasolevale jutulõngale. Soovime sulle toimekat suhtlust!",
|
||||
"Forum" : "Foorum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} uus vastus jutulõngas {thread}","{count} uut vastust jutulõngas {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mainis sind jutulõngas „{thread}“",
|
||||
"Welcome to the forum!" : "Tere tulemast foorumisse!",
|
||||
"Deleted user" : "Kustutatud kasutaja",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris.",
|
||||
"Loading …" : "Laadin...",
|
||||
"Search" : "Otsi",
|
||||
"Home" : "Avaleht",
|
||||
"Bookmarks" : "Järjehoidjad",
|
||||
"User preferences" : "Kasutaja eelistused",
|
||||
"Dashboard" : "Töölaud/Juhtpaneel",
|
||||
"Forum settings" : "Foorumi seadistused",
|
||||
@@ -127,34 +130,52 @@
|
||||
"Quote reply" : "Tsiteeri vastust",
|
||||
"Edit" : "Muuda",
|
||||
"Delete" : "Kustuta",
|
||||
"View edit history" : "Vaata muudatuste ajalugu",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Kas sa oled kindel, et soovid selle postituse kustutada? Seda tegevust ei saa tagasi pöörata.",
|
||||
"Unread" : "Lugemata",
|
||||
"Edit your post …" : "Muuda postitust…",
|
||||
"Edit your reply …" : "Muuda oma vastust…",
|
||||
"Save" : "Salvesta",
|
||||
"Are you sure you want to discard your changes?" : "Kas sa oled kindel, et soovid oma muudatustest loobuda?",
|
||||
"Edit history" : "Muudatuste ajalugu",
|
||||
"Loading history …" : "Laadin muudatuste ajalugu…",
|
||||
"This post has no edit history." : "Sellel postitusel puudub muudatuste ajalugu.",
|
||||
"Current version" : "Hetkeversioon",
|
||||
"Edited by" : "Muutja",
|
||||
"Failed to load edit history" : "Muudatuste ajaloo laadimine ei õnnestunud",
|
||||
"Version {index}" : "Versioon {index}",
|
||||
"Add reaction" : "Lisa reaktsioon",
|
||||
"React with {emoji}" : "Reageeri {emoji} emojiga",
|
||||
"You reacted with {emoji}" : "Sa reageerisid {emoji} emojiga",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Sina ja %n muu kasutaja reageerisid {emoji} emojiga","Sina ja %n muud kasutajat reageerisid {emoji} emojiga"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n kasutaja reageeris {emoji} emojiga","%n kasutajat reageerisid {emoji} emojiga"],
|
||||
"Write your reply …" : "Koosta oma vastus…",
|
||||
"Post reply" : "Postita vastus",
|
||||
"Submit reply" : "Vasta",
|
||||
"Are you sure you want to discard your reply?" : "Kas sa oled kindel, et soovid oma vastusest loobuda?",
|
||||
"In thread" : "Jutulõngas",
|
||||
"Thread unavailable" : "Jutulõng pole saadaval",
|
||||
"Pinned thread" : "Esiletõstetud jutulõng",
|
||||
"Locked thread" : "Lukustatud jutulõng",
|
||||
"Uncategorized" : "Määratlemata",
|
||||
"_%n post_::_%n posts_" : ["%n postitus","%n postitust"],
|
||||
"_%n reply_::_%n replies_" : ["%n vastus","%n vastust"],
|
||||
"_%n view_::_%n views_" : ["%n vaatamine","%n vaatamist"],
|
||||
"Views" : "Vaated",
|
||||
"Title" : "Pealkiri",
|
||||
"Enter thread title …" : "Sisesta jutulõnga pealkiri…",
|
||||
"Write your first post …" : "Koosta oma esimene postitus…",
|
||||
"Write your thread content …" : "Lisa jutulõngale sisu…",
|
||||
"Create thread" : "Alusta jutulõnga",
|
||||
"Are you sure you want to discard this thread?" : "Kas sa oled kindel, et soovid selles jutulõngast loobuda?",
|
||||
"Saving draft …" : "Salvestan kavandit…",
|
||||
"Draft saved" : "Kavand on salvestatud",
|
||||
"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",
|
||||
"Bookmark threads to quickly find them later." : "Lisades jutulõngale järjehoidja saad neid hiljem kiiresti leida.",
|
||||
"Retry" : "Proovi uuesti",
|
||||
"An unexpected error occurred" : "Tekkis ootamatu viga",
|
||||
"Failed to load bookmarks" : "Järjehoidjate laadmine ei õnnestunud",
|
||||
"No categories yet" : "Kategooriaid veel pole",
|
||||
"Categories will appear here once they are created." : "Kategooriad on siin nähtavad, kui nad saavad loodud.",
|
||||
"No categories in this section" : "Selles rubriigis pole veel kategooriaid",
|
||||
@@ -165,8 +186,6 @@
|
||||
"Error loading category" : "Viga kategooria laadimisel",
|
||||
"No threads yet" : "Jutulõngu veel pole",
|
||||
"Be the first to start a discussion in this category." : "Ole esimene, kes selles kategoorias alustab vestlust.",
|
||||
"Retry" : "Proovi uuesti",
|
||||
"An unexpected error occurred" : "Tekkis ootamatu viga",
|
||||
"No category ID or slug provided" : "Ühtegi kategooria tunnust või aadressi lõputunnust pole lisatud",
|
||||
"Failed to load threads" : "Jutulõngade laadimine ei õnnestunud",
|
||||
"Create New Thread" : "Alusta jutulõnga",
|
||||
@@ -176,17 +195,17 @@
|
||||
"Failed to create thread" : "Jutulõnga alustamine ei õnnestunud",
|
||||
"No category specified" : "Ühtegi kategooriat pole määratletud",
|
||||
"Error" : "Viga",
|
||||
"First post" : "Esimene postitus",
|
||||
"First activity" : "Esimene tegevus",
|
||||
"Threads ({count})" : "Jutulõngad ({count})",
|
||||
"Replies ({count})" : "Vastused ({count})",
|
||||
"No threads" : "Jutulõngu pole",
|
||||
"This user has not created any threads yet" : "See kasutaja pole veel ühtegi jutulõnga alustanud",
|
||||
"No replies" : "Vastuseid pole",
|
||||
"This user has not posted any replies yet" : "See kasutaja pole veel ühtegi vastust koostanud",
|
||||
"This user has not written any replies yet" : "See kasutaja pole veel ühtegi vastust koostanud",
|
||||
"Failed to load user profile" : "Kasutajaprofiili laadimine ei õnnestunud",
|
||||
"Enter search query …" : "Sisesta otsingusõna…",
|
||||
"Search in threads" : "Otsi jutulõngade seast",
|
||||
"Search in posts" : "Otsi vastuste seast",
|
||||
"Search in replies" : "Otsi vastuste seast",
|
||||
"Syntax help" : "Abiteave süntaksi kohta",
|
||||
"Search syntax" : "Otsingusüntaks",
|
||||
"Match exact phrase" : "Otsi täpset fraasi",
|
||||
@@ -197,11 +216,11 @@
|
||||
"Searching …" : "Otsin...",
|
||||
"Search Error" : "Otsinguviga",
|
||||
"Enter a search query" : "Palun sisesta otsingupäring",
|
||||
"Use the search box above to find threads and posts" : "Ülalolevat otsingut saad kasutada jutulõngade ja postituste ostimiseks",
|
||||
"Use the search box above to find threads and replies" : "Ülalolevat otsingut saad kasutada jutulõngade ja vastuste otsimiseks",
|
||||
"No results found" : "Otsingutulemusi ei leidu",
|
||||
"Try different keywords or check your syntax" : "Proovi otsida muid sõnu või vaata, kas õigekiri on korras",
|
||||
"_%n thread found_::_%n threads found_" : ["Leidus %n jutulõng","Leidus %n jutulõnga"],
|
||||
"_%n post found_::_%n posts found_" : ["Leidus %n postitus","Leidus %n postitust"],
|
||||
"_%n reply found_::_%n replies found_" : ["Leidus %n vastus","Leidus %n vastust"],
|
||||
"Please enter a search query" : "Palun sisesta otsingupäring",
|
||||
"Please select at least one search scope" : "Palun vali vähemalt üks otsinguvaldkond",
|
||||
"Failed to search" : "Otsimine ei õnnestunud",
|
||||
@@ -210,10 +229,10 @@
|
||||
"Back to {category}" : "Tagasi siia: {category}",
|
||||
"Reply" : "Vasta",
|
||||
"Error loading thread" : "Viga jutulõnga laadimisel",
|
||||
"No posts yet" : "Postitusi veel pole",
|
||||
"Be the first to post in this thread." : "Ole esimene, kes selles jutulõngas alustab vestlust.",
|
||||
"No replies yet" : "Vastuseid veel pole",
|
||||
"Be the first to reply in this thread." : "Ole esimene, kes vastab selles jutulõngas.",
|
||||
"by" : "kasutajalt",
|
||||
"This thread is locked. Only moderators can post replies." : "See jutulõng on lukustatud. Vaid moderaatorid võivad postitada vastuseid.",
|
||||
"This thread is locked. Only moderators can add replies." : "See jutulõng on lukustatud. Vaid moderaatorid võivad siin vastata.",
|
||||
"You must be signed in to reply to this thread." : "Sellele jutulõngale vastamiseks pead logima sisse",
|
||||
"Sign in to reply" : "Vastamiseks logis sisse",
|
||||
"Lock thread" : "Lukusta jutulõng",
|
||||
@@ -228,21 +247,28 @@
|
||||
"Subscribed" : "Tellitud",
|
||||
"Subscribed to thread" : "Oled tellinud jutulõnga",
|
||||
"Unsubscribed from thread" : "Oled loobunud jutulõnga tellimisest",
|
||||
"Bookmark" : "Järjehoidja",
|
||||
"Remove bookmark" : "Eemalda järjehoidja",
|
||||
"Thread bookmarked" : "Oled lisanud jutulõngale järjehoidja",
|
||||
"Bookmark removed" : "Järjehoidja on eemaldatud",
|
||||
"Edit title" : "Muuda pealkirja",
|
||||
"Save title" : "Salvesta pealkirja",
|
||||
"Thread title updated" : "Jutulõnga pealkiri on uuendatud",
|
||||
"Move thread" : "Tõsta jutulõng mujale",
|
||||
"Thread moved successfully" : "Jutulõnga ümbertõstmine õnnestus",
|
||||
"No thread ID or slug provided" : "Ühtegi jutulõnga tunnust või aadressi lõputunnust pole lisatud",
|
||||
"Failed to load posts" : "Postituste laadimine ei õnnestunud",
|
||||
"Post updated" : "Postitus on uuendatud",
|
||||
"Failed to update post" : "Postituse uuendamine ei õnnestunud",
|
||||
"Failed to load replies" : "Vastuste laadimine ei õnnestunud",
|
||||
"Thread updated" : "Jutulõng on uuendatud",
|
||||
"Reply updated" : "Vastus on muudetud",
|
||||
"Failed to update thread" : "Jutulõnga uuendamine ei õnnestunud",
|
||||
"Failed to update reply" : "Vastuse muutmine ei õnnestunud",
|
||||
"Thread deleted" : "Jutulõng on kustutatud",
|
||||
"Post deleted" : "Postitus on kustutatud",
|
||||
"Failed to delete post" : "Postituse kustutamine ei õnnestunud",
|
||||
"Reply deleted" : "Vastus on kustutatud",
|
||||
"Failed to delete reply" : "Vastuse kustutamine ei õnnestunud",
|
||||
"Failed to update thread lock status" : "Jutulõnga lukustuse olekut ei õnnestunud uuendada",
|
||||
"Failed to update thread pin status" : "Jutulõnga esiletõstmise olekut ei õnnestunud uuendada",
|
||||
"Failed to update subscription" : "Tellimuse uuendamine ei õnnestunud",
|
||||
"Failed to update bookmark" : "Järjehoidja muutmine ei õnnestunud",
|
||||
"Failed to update thread title" : "Jutulõnga pealkirja ei õnnestunud uuendada",
|
||||
"Failed to move thread" : "Jutulõnga ümbertõstmine ei õnnestunud",
|
||||
"Preferences" : "Eelistused",
|
||||
@@ -256,17 +282,17 @@
|
||||
"Files" : "Failid",
|
||||
"Configure file upload settings" : "Seadista failide üleslaadimise seadistusi",
|
||||
"Upload directory" : "Üleslaadimiskaust",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Postituste manustena lisatud failid laaditakse sellesse kausta, mida näed oma Nextcloudi failirakenduses",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Jutulõngade või vastuste manustena lisatud failid laaditakse sellesse kausta, mida näed oma Nextcloudi failirakenduses",
|
||||
"Browse" : "Sirvi",
|
||||
"Preferences saved" : "Eelistused on salvestatud",
|
||||
"Signature" : "Allkiri",
|
||||
"Your signature appears at the bottom of your posts" : "Sinu allkiri on nähtav sinu postituste lõpus",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Sinu allkiri on nähtav sinu jutulõngade või vastuste lõpus",
|
||||
"You can use BBCode formatting in your signature" : "Oma allkirja koostamisel võid vormindamisel kasutada BBCode'i",
|
||||
"Enter your signature …" : "Sisesta oma allkiri…",
|
||||
"Failed to save preferences" : "Eelistuste salvestamine ei õnnestunud",
|
||||
"Select upload directory" : "Vali kaust, kust tahad üles laadida",
|
||||
"BBCode management" : "BBCode'i haldus",
|
||||
"Manage custom BBCode tags for post formatting" : "Halda postituse vormindamisel kasutavaid täiendavaid BBCode'i võimalused",
|
||||
"Manage custom BBCode tags for formatting" : "Halda vormindamisel kasutavaid täiendavaid BBCode'i võimalusi",
|
||||
"Error loading BBCodes" : "Viga BBCode'ide laadimisel",
|
||||
"Create BBCode" : "Lisa BBCode",
|
||||
"Enable" : "Võta kasutusele",
|
||||
@@ -276,15 +302,24 @@
|
||||
"Disabled BBCodes" : "BBCode'id, mis pole kasutusel",
|
||||
"These BBCode tags are currently inactive" : "Need BBCode'id pole hetkel kasutusel",
|
||||
"No enabled BBCodes" : "Ühtegi BBCode'i pole kasutusel",
|
||||
"Parses Inner" : "Töötleb sisemist sisu",
|
||||
"Delete BBCode" : "Kustuta BBCode",
|
||||
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Kas oled kindel, et soovid kustutada BBCode'i sildi [{tag}]?",
|
||||
"This action cannot be undone." : "Seda tegevust ei saa tagasi võtta.",
|
||||
"Edit BBCode" : "Muuda BBCode'i",
|
||||
"Tag" : "Silt",
|
||||
"e.g., b, i, url, color" : "näiteks b, i, url, värv",
|
||||
"The BBCode tag name (without brackets)" : "BBCode'i sildi nimi (ilma nurksulgudeta)",
|
||||
"HTML replacement" : "Asendus HTML-is",
|
||||
"e.g., {strongStart}{content}{strongEnd}" : "nt. {strongStart}{content}{strongEnd}",
|
||||
"Use {content} for the tag content and {paramName} for parameters" : "Kasuta „{content}“ sildi sisu jaoksja „{paramName}“ parameetrite jaoks",
|
||||
"e.g., {tagStart}Hello world{tagEnd}" : "nt. {tagStart}Tere maailm{tagEnd}",
|
||||
"Example usage of this BBCode tag" : "Selle BBCode'i sildi kasutuse näide",
|
||||
"Description" : "Kirjeldus",
|
||||
"Brief description of what this BBCode does" : "Lühikirjeldus, mida see BBCode teeb",
|
||||
"Enabled" : "Sisse lülitatud",
|
||||
"Parse inner content" : "Töötle sisemist sisu („inner content“)",
|
||||
"If enabled, BBCode tags inside this tag will also be parsed" : "Selle eelistuse kasutamisel ka selle sildi sees asuvad BBCode'i sildid kuuluvad töötlemisele",
|
||||
"Create category" : "Lisa kategooria",
|
||||
"Edit category" : "Muuda kategooriat",
|
||||
"Configure category details" : "Seadista kategooria üksikasju",
|
||||
@@ -341,7 +376,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,8 +9,10 @@ OC.L10N.register(
|
||||
"Underlined text" : "Azpimarratutako testua",
|
||||
"Forum" : "Foroa",
|
||||
"Deleted user" : "Ezabatutako erabiltzaileak",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Search" : "Bilatu",
|
||||
"Home" : "Etxea",
|
||||
"Bookmarks" : "Laster-markak",
|
||||
"Dashboard" : "Panela",
|
||||
"Users" : "Erabiltzaileak",
|
||||
"Categories" : "Kategoriak",
|
||||
@@ -40,12 +42,16 @@ OC.L10N.register(
|
||||
"Delete" : "Ezabatu",
|
||||
"Unread" : "Irakurri gabe",
|
||||
"Save" : "Gorde",
|
||||
"Current version" : "Uneko bertsioa",
|
||||
"React with {emoji}" : "Erreakzionatu {emoji}-(r)ekin",
|
||||
"Uncategorized" : "Kategoria gabe",
|
||||
"Views" : "Ikuspegiak",
|
||||
"Title" : "Izenburua",
|
||||
"Saving draft …" : "Zirriborroa gordetzen...",
|
||||
"Draft saved" : "Zirriborroa gorde egin da",
|
||||
"Unsaved changes" : "Gorde gabeko aldaketak",
|
||||
"Back to home" : "Itzuli etxera",
|
||||
"Refresh" : "Freskatu",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Retry" : "saiatu berriro",
|
||||
"Error" : "Errorea",
|
||||
"Searching …" : "Bilatzen…",
|
||||
@@ -54,6 +60,7 @@ OC.L10N.register(
|
||||
"by" : "Nork",
|
||||
"Subscribe" : "Harpidetu",
|
||||
"Subscribed" : "Harpidetua",
|
||||
"Bookmark" : "Laster-marka",
|
||||
"Edit title" : "Editatu izenburua",
|
||||
"Move thread" : "Mugitu haria",
|
||||
"Preferences" : "Hobespenak",
|
||||
|
||||
@@ -7,8 +7,10 @@
|
||||
"Underlined text" : "Azpimarratutako testua",
|
||||
"Forum" : "Foroa",
|
||||
"Deleted user" : "Ezabatutako erabiltzaileak",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Search" : "Bilatu",
|
||||
"Home" : "Etxea",
|
||||
"Bookmarks" : "Laster-markak",
|
||||
"Dashboard" : "Panela",
|
||||
"Users" : "Erabiltzaileak",
|
||||
"Categories" : "Kategoriak",
|
||||
@@ -38,12 +40,16 @@
|
||||
"Delete" : "Ezabatu",
|
||||
"Unread" : "Irakurri gabe",
|
||||
"Save" : "Gorde",
|
||||
"Current version" : "Uneko bertsioa",
|
||||
"React with {emoji}" : "Erreakzionatu {emoji}-(r)ekin",
|
||||
"Uncategorized" : "Kategoria gabe",
|
||||
"Views" : "Ikuspegiak",
|
||||
"Title" : "Izenburua",
|
||||
"Saving draft …" : "Zirriborroa gordetzen...",
|
||||
"Draft saved" : "Zirriborroa gorde egin da",
|
||||
"Unsaved changes" : "Gorde gabeko aldaketak",
|
||||
"Back to home" : "Itzuli etxera",
|
||||
"Refresh" : "Freskatu",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Retry" : "saiatu berriro",
|
||||
"Error" : "Errorea",
|
||||
"Searching …" : "Bilatzen…",
|
||||
@@ -52,6 +58,7 @@
|
||||
"by" : "Nork",
|
||||
"Subscribe" : "Harpidetu",
|
||||
"Subscribed" : "Harpidetua",
|
||||
"Bookmark" : "Laster-marka",
|
||||
"Edit title" : "Editatu izenburua",
|
||||
"Move thread" : "Mugitu haria",
|
||||
"Preferences" : "Hobespenak",
|
||||
|
||||
@@ -10,8 +10,10 @@ OC.L10N.register(
|
||||
"Underlined text" : "Underlined text",
|
||||
"Forum" : "انجمن",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Search" : "جستجو",
|
||||
"Home" : "خانه",
|
||||
"Bookmarks" : "نشانکها",
|
||||
"Dashboard" : "پیشخوان",
|
||||
"Users" : "کاربران",
|
||||
"Categories" : "دستهها",
|
||||
@@ -36,12 +38,15 @@ OC.L10N.register(
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "Unread",
|
||||
"Save" : "ذخیره",
|
||||
"Current version" : "نسخه فعلی",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "دستهبندی نشده",
|
||||
"Views" : "بازدیدها",
|
||||
"Title" : "Title",
|
||||
"Saving draft …" : "در حال ذخیره پیش نویس ...",
|
||||
"Draft saved" : "پیش نویس ذخیره شد",
|
||||
"Unsaved changes" : "Unsaved changes",
|
||||
"Refresh" : "تازهسازی",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Retry" : "تلاش دوباره",
|
||||
"Error" : "خطا",
|
||||
"Searching …" : "جستجوکردن …",
|
||||
@@ -49,6 +54,7 @@ OC.L10N.register(
|
||||
"by" : "با",
|
||||
"Subscribe" : "اشتراک گذاری",
|
||||
"Subscribed" : "Subscribed",
|
||||
"Bookmark" : "نشانک",
|
||||
"Edit title" : "ویرایش عنوان",
|
||||
"Move thread" : "Move thread",
|
||||
"Preferences" : "اولویت ها",
|
||||
|
||||
@@ -8,8 +8,10 @@
|
||||
"Underlined text" : "Underlined text",
|
||||
"Forum" : "انجمن",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Search" : "جستجو",
|
||||
"Home" : "خانه",
|
||||
"Bookmarks" : "نشانکها",
|
||||
"Dashboard" : "پیشخوان",
|
||||
"Users" : "کاربران",
|
||||
"Categories" : "دستهها",
|
||||
@@ -34,12 +36,15 @@
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "Unread",
|
||||
"Save" : "ذخیره",
|
||||
"Current version" : "نسخه فعلی",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "دستهبندی نشده",
|
||||
"Views" : "بازدیدها",
|
||||
"Title" : "Title",
|
||||
"Saving draft …" : "در حال ذخیره پیش نویس ...",
|
||||
"Draft saved" : "پیش نویس ذخیره شد",
|
||||
"Unsaved changes" : "Unsaved changes",
|
||||
"Refresh" : "تازهسازی",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Retry" : "تلاش دوباره",
|
||||
"Error" : "خطا",
|
||||
"Searching …" : "جستجوکردن …",
|
||||
@@ -47,6 +52,7 @@
|
||||
"by" : "با",
|
||||
"Subscribe" : "اشتراک گذاری",
|
||||
"Subscribed" : "Subscribed",
|
||||
"Bookmark" : "نشانک",
|
||||
"Edit title" : "ویرایش عنوان",
|
||||
"Move thread" : "Move thread",
|
||||
"Preferences" : "اولویت ها",
|
||||
|
||||
@@ -10,9 +10,12 @@ OC.L10N.register(
|
||||
"Underlined text" : "Alleviivattu teksti",
|
||||
"Forum" : "Keskustelupalsta",
|
||||
"Deleted user" : "Poistettu käyttäjä",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Search" : "Etsi",
|
||||
"Home" : "Koti",
|
||||
"Bookmarks" : "Kirjanmerkit",
|
||||
"Dashboard" : "Kojelauta",
|
||||
"Users" : "Käyttäjät",
|
||||
"Categories" : "Luokat",
|
||||
"Expand" : "Laajenna",
|
||||
"Collapse" : "Kutista näkymää",
|
||||
@@ -38,12 +41,15 @@ OC.L10N.register(
|
||||
"Delete" : "Poista",
|
||||
"Unread" : "Lukematon",
|
||||
"Save" : "Tallenna",
|
||||
"Current version" : "Nykyinen versio",
|
||||
"React with {emoji}" : "Reagoi emojilla {emoji}",
|
||||
"Uncategorized" : "Luokittelematon",
|
||||
"Views" : "Näkymät",
|
||||
"Title" : "Nimeke",
|
||||
"Saving draft …" : "Tallennetaan luonnosta…",
|
||||
"Draft saved" : "Luonnos tallennettu",
|
||||
"Unsaved changes" : "Tallentamattomia muutoksia",
|
||||
"Refresh" : "Päivitä",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Retry" : "Yritä uudelleen",
|
||||
"Error" : "Virhe",
|
||||
"Searching …" : "Haetaan…",
|
||||
@@ -52,6 +58,7 @@ OC.L10N.register(
|
||||
"by" : "Kirjoittaja:",
|
||||
"Subscribe" : "Tilaa",
|
||||
"Subscribed" : "Tilattu",
|
||||
"Bookmark" : "Kirjanmerkki",
|
||||
"Edit title" : "Muokkaa otsikkoa",
|
||||
"Move thread" : "Siirrä ketju",
|
||||
"Preferences" : "Asetukset",
|
||||
|
||||
@@ -8,9 +8,12 @@
|
||||
"Underlined text" : "Alleviivattu teksti",
|
||||
"Forum" : "Keskustelupalsta",
|
||||
"Deleted user" : "Poistettu käyttäjä",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Search" : "Etsi",
|
||||
"Home" : "Koti",
|
||||
"Bookmarks" : "Kirjanmerkit",
|
||||
"Dashboard" : "Kojelauta",
|
||||
"Users" : "Käyttäjät",
|
||||
"Categories" : "Luokat",
|
||||
"Expand" : "Laajenna",
|
||||
"Collapse" : "Kutista näkymää",
|
||||
@@ -36,12 +39,15 @@
|
||||
"Delete" : "Poista",
|
||||
"Unread" : "Lukematon",
|
||||
"Save" : "Tallenna",
|
||||
"Current version" : "Nykyinen versio",
|
||||
"React with {emoji}" : "Reagoi emojilla {emoji}",
|
||||
"Uncategorized" : "Luokittelematon",
|
||||
"Views" : "Näkymät",
|
||||
"Title" : "Nimeke",
|
||||
"Saving draft …" : "Tallennetaan luonnosta…",
|
||||
"Draft saved" : "Luonnos tallennettu",
|
||||
"Unsaved changes" : "Tallentamattomia muutoksia",
|
||||
"Refresh" : "Päivitä",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Retry" : "Yritä uudelleen",
|
||||
"Error" : "Virhe",
|
||||
"Searching …" : "Haetaan…",
|
||||
@@ -50,6 +56,7 @@
|
||||
"by" : "Kirjoittaja:",
|
||||
"Subscribe" : "Tilaa",
|
||||
"Subscribed" : "Tilattu",
|
||||
"Bookmark" : "Kirjanmerkki",
|
||||
"Edit title" : "Muokkaa otsikkoa",
|
||||
"Move thread" : "Siirrä ketju",
|
||||
"Preferences" : "Asetukset",
|
||||
|
||||
10
l10n/fr.js
10
l10n/fr.js
@@ -10,8 +10,10 @@ OC.L10N.register(
|
||||
"Underlined text" : "Texte souligné",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilisateur supprimé",
|
||||
"Loading …" : "Chargement…",
|
||||
"Search" : "Rechercher",
|
||||
"Home" : "Accueil",
|
||||
"Bookmarks" : "Favoris",
|
||||
"Dashboard" : "Tableau de bord",
|
||||
"Users" : "Utilisateurs",
|
||||
"Categories" : "Catégories",
|
||||
@@ -42,12 +44,17 @@ OC.L10N.register(
|
||||
"Delete" : "Supprimer",
|
||||
"Unread" : "Non lu",
|
||||
"Save" : "Enregistrer",
|
||||
"Current version" : "Version actuelle",
|
||||
"React with {emoji}" : "Réagir avec {emoji}",
|
||||
"Uncategorized" : "Non catégorisé",
|
||||
"_%n reply_::_%n replies_" : ["%n réponse","%n réponses","%n réponses"],
|
||||
"Views" : "Vues",
|
||||
"Title" : "Titre",
|
||||
"Saving draft …" : "Sauvegarde du brouillon en cours …",
|
||||
"Draft saved" : "Brouillon sauvegardé",
|
||||
"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",
|
||||
@@ -58,6 +65,7 @@ OC.L10N.register(
|
||||
"by" : "par",
|
||||
"Subscribe" : "S’abonner",
|
||||
"Subscribed" : "Abonné",
|
||||
"Bookmark" : "Favori",
|
||||
"Edit title" : "Modifier le titre",
|
||||
"Move thread" : "Déplacer ce fil de discussion",
|
||||
"Preferences" : "Préférences",
|
||||
|
||||
10
l10n/fr.json
10
l10n/fr.json
@@ -8,8 +8,10 @@
|
||||
"Underlined text" : "Texte souligné",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilisateur supprimé",
|
||||
"Loading …" : "Chargement…",
|
||||
"Search" : "Rechercher",
|
||||
"Home" : "Accueil",
|
||||
"Bookmarks" : "Favoris",
|
||||
"Dashboard" : "Tableau de bord",
|
||||
"Users" : "Utilisateurs",
|
||||
"Categories" : "Catégories",
|
||||
@@ -40,12 +42,17 @@
|
||||
"Delete" : "Supprimer",
|
||||
"Unread" : "Non lu",
|
||||
"Save" : "Enregistrer",
|
||||
"Current version" : "Version actuelle",
|
||||
"React with {emoji}" : "Réagir avec {emoji}",
|
||||
"Uncategorized" : "Non catégorisé",
|
||||
"_%n reply_::_%n replies_" : ["%n réponse","%n réponses","%n réponses"],
|
||||
"Views" : "Vues",
|
||||
"Title" : "Titre",
|
||||
"Saving draft …" : "Sauvegarde du brouillon en cours …",
|
||||
"Draft saved" : "Brouillon sauvegardé",
|
||||
"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",
|
||||
@@ -56,6 +63,7 @@
|
||||
"by" : "par",
|
||||
"Subscribe" : "S’abonner",
|
||||
"Subscribed" : "Abonné",
|
||||
"Bookmark" : "Favori",
|
||||
"Edit title" : "Modifier le titre",
|
||||
"Move thread" : "Déplacer ce fil de discussion",
|
||||
"Preferences" : "Préférences",
|
||||
|
||||
72
l10n/ga.js
72
l10n/ga.js
@@ -38,12 +38,15 @@ OC.L10N.register(
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Ná bíodh drogall ort plé nua a thosú nó freagra a thabhairt ar shnáitheanna atá ann cheana féin. Go n-éirí leat ag postáil!",
|
||||
"Forum" : "Fóram",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count}freagra nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}"],
|
||||
"{user} mentioned you in {thread}" : "Luaigh {user} thú i {thread}",
|
||||
"Welcome to the forum!" : "Fáilte romhat chuig an bhfóram!",
|
||||
"Deleted user" : "Úsáideoir scriosta",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Fóram atá tiomáinte ag an bpobal atá tógtha isteach i do chás Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cruthaigh plé, roinn smaointe agus comhoibrigh le do phobal go díreach i Nextcloud.\n\n**⚠️ Fógra Forbartha Luath:**\nTá an aip seo i gcéimeanna luatha forbartha. Cé go bhfuil sí feidhmiúil, d'fhéadfadh fabhtanna nó gnéithe neamhiomlána teacht ort. Tuairiscigh aon fhadhbanna ar GitHub agus smaoinigh ar chúltaca de do shonraí a dhéanamh go rialta.\n\n**Príomhghnéithe:**\n- **Plé bunaithe ar shnáitheanna** - Cruthaigh agus freagair snáitheanna plé eagraithe\n- **Eagrú Catagóirí** - Struchtúraigh do fhóram le catagóirí agus ceanntásca saincheaptha\n- **Formáidiú Téacs Saibhir** - Úsáid BBCode chun poist a fhormáidiú le cló trom, iodálach, naisc, íomhánna, bloic chód agus níos mó\n- **Ceangaltáin Chomhad** - Ceangail comhaid ó do stóras Nextcloud le poist\n- **Imoibrithe Poist** - Imoibriú le poist le himoibrithe emoji\n- **Rianú Léite/Gan Léite** - Coinnigh súil ar na snáitheanna atá léite agat\n- **Cuardaigh** - Aimsigh plé go tapa le cuardach ionsuite\n- **Próifílí Úsáideoirí** - Féach ar stair agus staitisticí post úsáideoirí\n- **Ceadanna Bunaithe ar Ról** - Rialú rochtana agus modhnóireachta le róil sholúbtha\n- **Rochtain Aoi**: Rochtain phoiblí roghnach d'úsáideoirí neamhúdaraithe le ceadanna inchumraithe\n- **Uirlisí Riaracháin** - Bainistigh catagóirí, róil, BBCóid agus socruithe fóraim\n- **Uirlisí Modhnóireachta** - Snáitheanna agus poist a phionáil, a ghlasáil agus a bhainistiú\n\n**Foirfe do:**\n- Plé foirne agus comhoibriú\n- Fóraim phobail\n- Bealaí tacaíochta\n- Bunachair eolais\n- Plé tionscadail\n- Cumarsáid inmheánach\n\nComhtháthaíonn an fóram go gan uaim le do chás Nextcloud, ag baint úsáide as d'úsáideoirí agus do ghrúpaí atá ann cheana féin le haghaidh fíordheimhnithe agus rialú rochtana.",
|
||||
"Loading …" : "Á lódáil…",
|
||||
"Search" : "Cuardach",
|
||||
"Home" : "Baile",
|
||||
"Bookmarks" : "Leabharmharcanna",
|
||||
"User preferences" : "Roghanna úsáideora",
|
||||
"Dashboard" : "Deais",
|
||||
"Forum settings" : "Socruithe an fhóraim",
|
||||
@@ -130,34 +133,52 @@ OC.L10N.register(
|
||||
"Quote reply" : "Freagra luachana",
|
||||
"Edit" : "Cuir in eagar",
|
||||
"Delete" : "Scrios",
|
||||
"View edit history" : "Féach ar stair eagarthóireachta",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "An bhfuil tú cinnte gur mian leat an post seo a scriosadh? Ní féidir an gníomh seo a chealú.",
|
||||
"Unread" : "Neamhléite",
|
||||
"Edit your post …" : "Cuir do phost in eagar …",
|
||||
"Edit your reply …" : "Cuir d’fhreagra in eagar …",
|
||||
"Save" : "Sábháil",
|
||||
"Are you sure you want to discard your changes?" : "An bhfuil tú cinnte gur mian leat do chuid athruithe a chaitheamh amach?",
|
||||
"Edit history" : "Stair eagarthóireachta",
|
||||
"Loading history …" : "Stair á luchtú …",
|
||||
"This post has no edit history." : "Níl aon stair eagarthóireachta ag an bpost seo.",
|
||||
"Current version" : "Leagan reatha",
|
||||
"Edited by" : "Eagarthóireacht déanta ag",
|
||||
"Failed to load edit history" : "Theip ar stair eagarthóireachta a lódáil",
|
||||
"Version {index}" : "Leagan {index}",
|
||||
"Add reaction" : "Cuir imoibriú leis",
|
||||
"React with {emoji}" : "Freagair le {emoji}",
|
||||
"You reacted with {emoji}" : "D'imoibrigh tú le {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["D'fhreagair %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}"],
|
||||
"Write your reply …" : "Scríobh do fhreagra…",
|
||||
"Post reply" : "Freagra poist",
|
||||
"Submit reply" : "Cuir freagra isteach",
|
||||
"Are you sure you want to discard your reply?" : "An bhfuil tú cinnte gur mian leat do fhreagra a chaitheamh amach?",
|
||||
"In thread" : "Sa snáithe",
|
||||
"Thread unavailable" : "Snáithe ar fáil",
|
||||
"Pinned thread" : "Snáithe bioráilte",
|
||||
"Locked thread" : "Snáithe faoi ghlas",
|
||||
"Uncategorized" : "Gan catagóir",
|
||||
"_%n post_::_%n posts_" : ["%n post","%n poist","%n poist","%n poist","%n poist"],
|
||||
"_%n reply_::_%n replies_" : ["%n freagra","%n freagraí","%n freagraí","%n freagraí","%n freagraí"],
|
||||
"_%n view_::_%n views_" : ["%n radharc","%n radharic","%n radharic","%n radharic","%n radharc"],
|
||||
"Views" : "Radhairc",
|
||||
"Title" : "Teideal",
|
||||
"Enter thread title …" : "Cuir isteach teideal an tsnáithe …",
|
||||
"Write your first post …" : "Scríobh do chéad phost …",
|
||||
"Write your thread content …" : "Scríobh ábhar do shnáithe …",
|
||||
"Create thread" : "Cruthaigh snáithe",
|
||||
"Are you sure you want to discard this thread?" : "An bhfuil tú cinnte gur mian leat an snáithe seo a chaitheamh amach?",
|
||||
"Saving draft …" : "Dréacht á shábháil…",
|
||||
"Draft saved" : "Sábháladh an dréacht",
|
||||
"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",
|
||||
"Bookmark threads to quickly find them later." : "Cuir snáitheanna i leabharmharcanna le go bhfaighidh tú iad go tapa níos déanaí.",
|
||||
"Retry" : "Bain triail eile as",
|
||||
"An unexpected error occurred" : "Tharla earráid gan choinne",
|
||||
"Failed to load bookmarks" : "Theip ar leabharmharcanna a lódáil",
|
||||
"No categories yet" : "Gan aon chatagóirí fós",
|
||||
"Categories will appear here once they are created." : "Beidh catagóirí le feiceáil anseo a luaithe a bheidh siad cruthaithe.",
|
||||
"No categories in this section" : "Níl aon chatagóirí sa chuid seo",
|
||||
@@ -168,8 +189,6 @@ OC.L10N.register(
|
||||
"Error loading category" : "Earráid ag lódáil na catagóire",
|
||||
"No threads yet" : "Gan aon snáitheanna fós",
|
||||
"Be the first to start a discussion in this category." : "Bí ar an gcéad duine chun plé a thosú sa chatagóir seo.",
|
||||
"Retry" : "Bain triail eile as",
|
||||
"An unexpected error occurred" : "Tharla earráid gan choinne",
|
||||
"No category ID or slug provided" : "Níor soláthraíodh aon aitheantas catagóire ná seilide",
|
||||
"Failed to load threads" : "Theip ar snáitheanna a luchtú",
|
||||
"Create New Thread" : "Cruthaigh Snáithe Nua",
|
||||
@@ -179,17 +198,17 @@ OC.L10N.register(
|
||||
"Failed to create thread" : "Theip ar an snáithe a chruthú",
|
||||
"No category specified" : "Gan catagóir sonraithe",
|
||||
"Error" : "Earráid",
|
||||
"First post" : "An chéad phost",
|
||||
"First activity" : "An chéad ghníomhaíocht",
|
||||
"Threads ({count})" : "Snáitheanna ({count})",
|
||||
"Replies ({count})" : "Freagraí ({count})",
|
||||
"No threads" : "Gan snáitheanna",
|
||||
"This user has not created any threads yet" : "Níor chruthaigh an t-úsáideoir seo aon snáitheanna go fóill",
|
||||
"No replies" : "Gan freagraí",
|
||||
"This user has not posted any replies yet" : "Níl aon fhreagraí curtha suas ag an úsáideoir seo go fóill",
|
||||
"This user has not written any replies yet" : "Níl aon fhreagraí scríofa ag an úsáideoir seo go fóill",
|
||||
"Failed to load user profile" : "Theip ar phróifíl an úsáideora a lódáil",
|
||||
"Enter search query …" : "Cuir isteach fiosrúchán cuardaigh …",
|
||||
"Search in threads" : "Cuardaigh i snáitheanna",
|
||||
"Search in posts" : "Cuardaigh i bpoist",
|
||||
"Search in replies" : "Cuardaigh sna freagraí",
|
||||
"Syntax help" : "Cabhair le comhréir",
|
||||
"Search syntax" : "Comhréir cuardaigh",
|
||||
"Match exact phrase" : "Meaitseáil frása cruinn",
|
||||
@@ -200,11 +219,11 @@ OC.L10N.register(
|
||||
"Searching …" : "Ag cuardach…",
|
||||
"Search Error" : "Earráid Chuardaigh",
|
||||
"Enter a search query" : "Cuir isteach fiosrúchán cuardaigh",
|
||||
"Use the search box above to find threads and posts" : "Úsáid an bosca cuardaigh thuas chun snáitheanna agus poist a aimsiú",
|
||||
"Use the search box above to find threads and replies" : "Úsáid an bosca cuardaigh thuas chun snáitheanna agus freagraí a aimsiú",
|
||||
"No results found" : "Níor aimsíodh aon torthaí",
|
||||
"Try different keywords or check your syntax" : "Bain triail as eochairfhocail éagsúla nó seiceáil do chomhréir",
|
||||
"_%n thread found_::_%n threads found_" : ["%n snáithe aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe"],
|
||||
"_%n post found_::_%n posts found_" : ["%n post aimsithe","%n poist aimsithe","%n poist aimsithe","%n poist aimsithe","%n poist aimsithe"],
|
||||
"_%n reply found_::_%n replies found_" : ["%n freagra aimsithe","%n freagraí aimsithe","%n freagraí aimsithe","%n freagraí aimsithe","%n freagraí aimsithe"],
|
||||
"Please enter a search query" : "Cuir isteach fiosrúchán cuardaigh le do thoil",
|
||||
"Please select at least one search scope" : "Roghnaigh raon cuardaigh amháin ar a laghad",
|
||||
"Failed to search" : "Theip ar an gcuardach",
|
||||
@@ -213,10 +232,10 @@ OC.L10N.register(
|
||||
"Back to {category}" : "Ar ais go dtí {category}",
|
||||
"Reply" : "Freagra",
|
||||
"Error loading thread" : "Earráid ag luchtú an snáithe",
|
||||
"No posts yet" : "Gan aon phoist fós",
|
||||
"Be the first to post in this thread." : "Bí ar an gcéad duine chun postáil sa snáithe seo.",
|
||||
"No replies yet" : "Gan aon fhreagraí fós",
|
||||
"Be the first to reply in this thread." : "Bí ar an gcéad duine chun freagra a thabhairt sa snáithe seo.",
|
||||
"by" : "le",
|
||||
"This thread is locked. Only moderators can post replies." : "Tá an snáithe seo faoi ghlas. Ní féidir ach le modhnóirí freagraí a phostáil.",
|
||||
"This thread is locked. Only moderators can add replies." : "Tá an snáithe seo faoi ghlas. Ní féidir ach le modhnóirí freagraí a chur leis.",
|
||||
"You must be signed in to reply to this thread." : "Ní mór duit a bheith logáilte isteach chun freagra a thabhairt ar an snáithe seo.",
|
||||
"Sign in to reply" : "Sínigh isteach le freagra a thabhairt",
|
||||
"Lock thread" : "Glasáil snáithe",
|
||||
@@ -231,21 +250,28 @@ OC.L10N.register(
|
||||
"Subscribed" : "Suibscríofa",
|
||||
"Subscribed to thread" : "Liostáilte leis an snáithe",
|
||||
"Unsubscribed from thread" : "Díliostáilte ón snáithe",
|
||||
"Bookmark" : "Leabharmharc",
|
||||
"Remove bookmark" : "Bain leabharmharc",
|
||||
"Thread bookmarked" : "Snáithe curtha i leabharmharc",
|
||||
"Bookmark removed" : "Baineadh an leabharmharc",
|
||||
"Edit title" : "Cuir teideal in eagar",
|
||||
"Save title" : "Sábháil teideal",
|
||||
"Thread title updated" : "Teideal an tsnáithe nuashonraithe",
|
||||
"Move thread" : "Bog snáithe",
|
||||
"Thread moved successfully" : "Bogadh an snáithe go rathúil",
|
||||
"No thread ID or slug provided" : "Níor soláthraíodh aon ID snáithe ná slug",
|
||||
"Failed to load posts" : "Theip ar phoist a lódáil",
|
||||
"Post updated" : "Post nuashonraithe",
|
||||
"Failed to update post" : "Theip ar an bpost a nuashonrú",
|
||||
"Failed to load replies" : "Theip ar lódáil na freagraí",
|
||||
"Thread updated" : "Nuashonraithe ag an snáithe",
|
||||
"Reply updated" : "Freagra nuashonraithe",
|
||||
"Failed to update thread" : "Theip ar an snáithe a nuashonrú",
|
||||
"Failed to update reply" : "Theip ar an bhfreagra a nuashonrú",
|
||||
"Thread deleted" : "Scriosadh an snáithe",
|
||||
"Post deleted" : "Scriosadh an post",
|
||||
"Failed to delete post" : "Theip ar an bpost a scriosadh",
|
||||
"Reply deleted" : "Scriosadh an freagra",
|
||||
"Failed to delete reply" : "Theip ar an bhfreagra a scriosadh",
|
||||
"Failed to update thread lock status" : "Theip ar stádas glasála snáithe a nuashonrú",
|
||||
"Failed to update thread pin status" : "Theip ar stádas bioráin an snáithe a nuashonrú",
|
||||
"Failed to update subscription" : "Theip ar an síntiús a nuashonrú",
|
||||
"Failed to update bookmark" : "Theip ar an leabharmharc a nuashonrú",
|
||||
"Failed to update thread title" : "Theip ar theideal an tsnáithe a nuashonrú",
|
||||
"Failed to move thread" : "Theip ar bhogadh an snáithe",
|
||||
"Preferences" : "Roghanna",
|
||||
@@ -259,17 +285,17 @@ OC.L10N.register(
|
||||
"Files" : "Comhaid",
|
||||
"Configure file upload settings" : "Cumraigh socruithe uaslódála comhad",
|
||||
"Upload directory" : "Uaslódáil eolaire",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Uaslódálfar comhaid atá ceangailte le poist chuig an eolaire seo i do chomhaid Nextcloud",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Uaslódálfar comhaid atá ceangailte le snáitheanna nó freagraí chuig an eolaire seo i do chomhaid Nextcloud",
|
||||
"Browse" : "Brabhsáil",
|
||||
"Preferences saved" : "Roghanna sábháilte",
|
||||
"Signature" : "Sínithe",
|
||||
"Your signature appears at the bottom of your posts" : "Feictear do shíniú ag bun do phoist",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Feictear do shíniú ag bun do shnáitheanna nó do fhreagraí",
|
||||
"You can use BBCode formatting in your signature" : "Is féidir leat formáidiú BBCode a úsáid i do shíniú",
|
||||
"Enter your signature …" : "Cuir isteach do shíniú …",
|
||||
"Failed to save preferences" : "Theip ar na roghanna a shábháil",
|
||||
"Select upload directory" : "Roghnaigh eolaire uaslódála",
|
||||
"BBCode management" : "Bainistíocht BBCode",
|
||||
"Manage custom BBCode tags for post formatting" : "Bainistigh clibeanna saincheaptha BBCode le haghaidh formáidiú post",
|
||||
"Manage custom BBCode tags for formatting" : "Bainistigh clibeanna saincheaptha BBCode le haghaidh formáidithe",
|
||||
"Error loading BBCodes" : "Earráid ag luchtú BBCóid",
|
||||
"Create BBCode" : "Cruthaigh BBCode",
|
||||
"Enable" : "Cumasaigh",
|
||||
|
||||
72
l10n/ga.json
72
l10n/ga.json
@@ -36,12 +36,15 @@
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Ná bíodh drogall ort plé nua a thosú nó freagra a thabhairt ar shnáitheanna atá ann cheana féin. Go n-éirí leat ag postáil!",
|
||||
"Forum" : "Fóram",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count}freagra nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}"],
|
||||
"{user} mentioned you in {thread}" : "Luaigh {user} thú i {thread}",
|
||||
"Welcome to the forum!" : "Fáilte romhat chuig an bhfóram!",
|
||||
"Deleted user" : "Úsáideoir scriosta",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Fóram atá tiomáinte ag an bpobal atá tógtha isteach i do chás Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cruthaigh plé, roinn smaointe agus comhoibrigh le do phobal go díreach i Nextcloud.\n\n**⚠️ Fógra Forbartha Luath:**\nTá an aip seo i gcéimeanna luatha forbartha. Cé go bhfuil sí feidhmiúil, d'fhéadfadh fabhtanna nó gnéithe neamhiomlána teacht ort. Tuairiscigh aon fhadhbanna ar GitHub agus smaoinigh ar chúltaca de do shonraí a dhéanamh go rialta.\n\n**Príomhghnéithe:**\n- **Plé bunaithe ar shnáitheanna** - Cruthaigh agus freagair snáitheanna plé eagraithe\n- **Eagrú Catagóirí** - Struchtúraigh do fhóram le catagóirí agus ceanntásca saincheaptha\n- **Formáidiú Téacs Saibhir** - Úsáid BBCode chun poist a fhormáidiú le cló trom, iodálach, naisc, íomhánna, bloic chód agus níos mó\n- **Ceangaltáin Chomhad** - Ceangail comhaid ó do stóras Nextcloud le poist\n- **Imoibrithe Poist** - Imoibriú le poist le himoibrithe emoji\n- **Rianú Léite/Gan Léite** - Coinnigh súil ar na snáitheanna atá léite agat\n- **Cuardaigh** - Aimsigh plé go tapa le cuardach ionsuite\n- **Próifílí Úsáideoirí** - Féach ar stair agus staitisticí post úsáideoirí\n- **Ceadanna Bunaithe ar Ról** - Rialú rochtana agus modhnóireachta le róil sholúbtha\n- **Rochtain Aoi**: Rochtain phoiblí roghnach d'úsáideoirí neamhúdaraithe le ceadanna inchumraithe\n- **Uirlisí Riaracháin** - Bainistigh catagóirí, róil, BBCóid agus socruithe fóraim\n- **Uirlisí Modhnóireachta** - Snáitheanna agus poist a phionáil, a ghlasáil agus a bhainistiú\n\n**Foirfe do:**\n- Plé foirne agus comhoibriú\n- Fóraim phobail\n- Bealaí tacaíochta\n- Bunachair eolais\n- Plé tionscadail\n- Cumarsáid inmheánach\n\nComhtháthaíonn an fóram go gan uaim le do chás Nextcloud, ag baint úsáide as d'úsáideoirí agus do ghrúpaí atá ann cheana féin le haghaidh fíordheimhnithe agus rialú rochtana.",
|
||||
"Loading …" : "Á lódáil…",
|
||||
"Search" : "Cuardach",
|
||||
"Home" : "Baile",
|
||||
"Bookmarks" : "Leabharmharcanna",
|
||||
"User preferences" : "Roghanna úsáideora",
|
||||
"Dashboard" : "Deais",
|
||||
"Forum settings" : "Socruithe an fhóraim",
|
||||
@@ -128,34 +131,52 @@
|
||||
"Quote reply" : "Freagra luachana",
|
||||
"Edit" : "Cuir in eagar",
|
||||
"Delete" : "Scrios",
|
||||
"View edit history" : "Féach ar stair eagarthóireachta",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "An bhfuil tú cinnte gur mian leat an post seo a scriosadh? Ní féidir an gníomh seo a chealú.",
|
||||
"Unread" : "Neamhléite",
|
||||
"Edit your post …" : "Cuir do phost in eagar …",
|
||||
"Edit your reply …" : "Cuir d’fhreagra in eagar …",
|
||||
"Save" : "Sábháil",
|
||||
"Are you sure you want to discard your changes?" : "An bhfuil tú cinnte gur mian leat do chuid athruithe a chaitheamh amach?",
|
||||
"Edit history" : "Stair eagarthóireachta",
|
||||
"Loading history …" : "Stair á luchtú …",
|
||||
"This post has no edit history." : "Níl aon stair eagarthóireachta ag an bpost seo.",
|
||||
"Current version" : "Leagan reatha",
|
||||
"Edited by" : "Eagarthóireacht déanta ag",
|
||||
"Failed to load edit history" : "Theip ar stair eagarthóireachta a lódáil",
|
||||
"Version {index}" : "Leagan {index}",
|
||||
"Add reaction" : "Cuir imoibriú leis",
|
||||
"React with {emoji}" : "Freagair le {emoji}",
|
||||
"You reacted with {emoji}" : "D'imoibrigh tú le {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}","D'imoibrigh tusa agus %n eile le {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["D'fhreagair %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}","D'imoibrigh %n duine le {emoji}"],
|
||||
"Write your reply …" : "Scríobh do fhreagra…",
|
||||
"Post reply" : "Freagra poist",
|
||||
"Submit reply" : "Cuir freagra isteach",
|
||||
"Are you sure you want to discard your reply?" : "An bhfuil tú cinnte gur mian leat do fhreagra a chaitheamh amach?",
|
||||
"In thread" : "Sa snáithe",
|
||||
"Thread unavailable" : "Snáithe ar fáil",
|
||||
"Pinned thread" : "Snáithe bioráilte",
|
||||
"Locked thread" : "Snáithe faoi ghlas",
|
||||
"Uncategorized" : "Gan catagóir",
|
||||
"_%n post_::_%n posts_" : ["%n post","%n poist","%n poist","%n poist","%n poist"],
|
||||
"_%n reply_::_%n replies_" : ["%n freagra","%n freagraí","%n freagraí","%n freagraí","%n freagraí"],
|
||||
"_%n view_::_%n views_" : ["%n radharc","%n radharic","%n radharic","%n radharic","%n radharc"],
|
||||
"Views" : "Radhairc",
|
||||
"Title" : "Teideal",
|
||||
"Enter thread title …" : "Cuir isteach teideal an tsnáithe …",
|
||||
"Write your first post …" : "Scríobh do chéad phost …",
|
||||
"Write your thread content …" : "Scríobh ábhar do shnáithe …",
|
||||
"Create thread" : "Cruthaigh snáithe",
|
||||
"Are you sure you want to discard this thread?" : "An bhfuil tú cinnte gur mian leat an snáithe seo a chaitheamh amach?",
|
||||
"Saving draft …" : "Dréacht á shábháil…",
|
||||
"Draft saved" : "Sábháladh an dréacht",
|
||||
"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",
|
||||
"Bookmark threads to quickly find them later." : "Cuir snáitheanna i leabharmharcanna le go bhfaighidh tú iad go tapa níos déanaí.",
|
||||
"Retry" : "Bain triail eile as",
|
||||
"An unexpected error occurred" : "Tharla earráid gan choinne",
|
||||
"Failed to load bookmarks" : "Theip ar leabharmharcanna a lódáil",
|
||||
"No categories yet" : "Gan aon chatagóirí fós",
|
||||
"Categories will appear here once they are created." : "Beidh catagóirí le feiceáil anseo a luaithe a bheidh siad cruthaithe.",
|
||||
"No categories in this section" : "Níl aon chatagóirí sa chuid seo",
|
||||
@@ -166,8 +187,6 @@
|
||||
"Error loading category" : "Earráid ag lódáil na catagóire",
|
||||
"No threads yet" : "Gan aon snáitheanna fós",
|
||||
"Be the first to start a discussion in this category." : "Bí ar an gcéad duine chun plé a thosú sa chatagóir seo.",
|
||||
"Retry" : "Bain triail eile as",
|
||||
"An unexpected error occurred" : "Tharla earráid gan choinne",
|
||||
"No category ID or slug provided" : "Níor soláthraíodh aon aitheantas catagóire ná seilide",
|
||||
"Failed to load threads" : "Theip ar snáitheanna a luchtú",
|
||||
"Create New Thread" : "Cruthaigh Snáithe Nua",
|
||||
@@ -177,17 +196,17 @@
|
||||
"Failed to create thread" : "Theip ar an snáithe a chruthú",
|
||||
"No category specified" : "Gan catagóir sonraithe",
|
||||
"Error" : "Earráid",
|
||||
"First post" : "An chéad phost",
|
||||
"First activity" : "An chéad ghníomhaíocht",
|
||||
"Threads ({count})" : "Snáitheanna ({count})",
|
||||
"Replies ({count})" : "Freagraí ({count})",
|
||||
"No threads" : "Gan snáitheanna",
|
||||
"This user has not created any threads yet" : "Níor chruthaigh an t-úsáideoir seo aon snáitheanna go fóill",
|
||||
"No replies" : "Gan freagraí",
|
||||
"This user has not posted any replies yet" : "Níl aon fhreagraí curtha suas ag an úsáideoir seo go fóill",
|
||||
"This user has not written any replies yet" : "Níl aon fhreagraí scríofa ag an úsáideoir seo go fóill",
|
||||
"Failed to load user profile" : "Theip ar phróifíl an úsáideora a lódáil",
|
||||
"Enter search query …" : "Cuir isteach fiosrúchán cuardaigh …",
|
||||
"Search in threads" : "Cuardaigh i snáitheanna",
|
||||
"Search in posts" : "Cuardaigh i bpoist",
|
||||
"Search in replies" : "Cuardaigh sna freagraí",
|
||||
"Syntax help" : "Cabhair le comhréir",
|
||||
"Search syntax" : "Comhréir cuardaigh",
|
||||
"Match exact phrase" : "Meaitseáil frása cruinn",
|
||||
@@ -198,11 +217,11 @@
|
||||
"Searching …" : "Ag cuardach…",
|
||||
"Search Error" : "Earráid Chuardaigh",
|
||||
"Enter a search query" : "Cuir isteach fiosrúchán cuardaigh",
|
||||
"Use the search box above to find threads and posts" : "Úsáid an bosca cuardaigh thuas chun snáitheanna agus poist a aimsiú",
|
||||
"Use the search box above to find threads and replies" : "Úsáid an bosca cuardaigh thuas chun snáitheanna agus freagraí a aimsiú",
|
||||
"No results found" : "Níor aimsíodh aon torthaí",
|
||||
"Try different keywords or check your syntax" : "Bain triail as eochairfhocail éagsúla nó seiceáil do chomhréir",
|
||||
"_%n thread found_::_%n threads found_" : ["%n snáithe aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe","%n snáitheanna aimsithe"],
|
||||
"_%n post found_::_%n posts found_" : ["%n post aimsithe","%n poist aimsithe","%n poist aimsithe","%n poist aimsithe","%n poist aimsithe"],
|
||||
"_%n reply found_::_%n replies found_" : ["%n freagra aimsithe","%n freagraí aimsithe","%n freagraí aimsithe","%n freagraí aimsithe","%n freagraí aimsithe"],
|
||||
"Please enter a search query" : "Cuir isteach fiosrúchán cuardaigh le do thoil",
|
||||
"Please select at least one search scope" : "Roghnaigh raon cuardaigh amháin ar a laghad",
|
||||
"Failed to search" : "Theip ar an gcuardach",
|
||||
@@ -211,10 +230,10 @@
|
||||
"Back to {category}" : "Ar ais go dtí {category}",
|
||||
"Reply" : "Freagra",
|
||||
"Error loading thread" : "Earráid ag luchtú an snáithe",
|
||||
"No posts yet" : "Gan aon phoist fós",
|
||||
"Be the first to post in this thread." : "Bí ar an gcéad duine chun postáil sa snáithe seo.",
|
||||
"No replies yet" : "Gan aon fhreagraí fós",
|
||||
"Be the first to reply in this thread." : "Bí ar an gcéad duine chun freagra a thabhairt sa snáithe seo.",
|
||||
"by" : "le",
|
||||
"This thread is locked. Only moderators can post replies." : "Tá an snáithe seo faoi ghlas. Ní féidir ach le modhnóirí freagraí a phostáil.",
|
||||
"This thread is locked. Only moderators can add replies." : "Tá an snáithe seo faoi ghlas. Ní féidir ach le modhnóirí freagraí a chur leis.",
|
||||
"You must be signed in to reply to this thread." : "Ní mór duit a bheith logáilte isteach chun freagra a thabhairt ar an snáithe seo.",
|
||||
"Sign in to reply" : "Sínigh isteach le freagra a thabhairt",
|
||||
"Lock thread" : "Glasáil snáithe",
|
||||
@@ -229,21 +248,28 @@
|
||||
"Subscribed" : "Suibscríofa",
|
||||
"Subscribed to thread" : "Liostáilte leis an snáithe",
|
||||
"Unsubscribed from thread" : "Díliostáilte ón snáithe",
|
||||
"Bookmark" : "Leabharmharc",
|
||||
"Remove bookmark" : "Bain leabharmharc",
|
||||
"Thread bookmarked" : "Snáithe curtha i leabharmharc",
|
||||
"Bookmark removed" : "Baineadh an leabharmharc",
|
||||
"Edit title" : "Cuir teideal in eagar",
|
||||
"Save title" : "Sábháil teideal",
|
||||
"Thread title updated" : "Teideal an tsnáithe nuashonraithe",
|
||||
"Move thread" : "Bog snáithe",
|
||||
"Thread moved successfully" : "Bogadh an snáithe go rathúil",
|
||||
"No thread ID or slug provided" : "Níor soláthraíodh aon ID snáithe ná slug",
|
||||
"Failed to load posts" : "Theip ar phoist a lódáil",
|
||||
"Post updated" : "Post nuashonraithe",
|
||||
"Failed to update post" : "Theip ar an bpost a nuashonrú",
|
||||
"Failed to load replies" : "Theip ar lódáil na freagraí",
|
||||
"Thread updated" : "Nuashonraithe ag an snáithe",
|
||||
"Reply updated" : "Freagra nuashonraithe",
|
||||
"Failed to update thread" : "Theip ar an snáithe a nuashonrú",
|
||||
"Failed to update reply" : "Theip ar an bhfreagra a nuashonrú",
|
||||
"Thread deleted" : "Scriosadh an snáithe",
|
||||
"Post deleted" : "Scriosadh an post",
|
||||
"Failed to delete post" : "Theip ar an bpost a scriosadh",
|
||||
"Reply deleted" : "Scriosadh an freagra",
|
||||
"Failed to delete reply" : "Theip ar an bhfreagra a scriosadh",
|
||||
"Failed to update thread lock status" : "Theip ar stádas glasála snáithe a nuashonrú",
|
||||
"Failed to update thread pin status" : "Theip ar stádas bioráin an snáithe a nuashonrú",
|
||||
"Failed to update subscription" : "Theip ar an síntiús a nuashonrú",
|
||||
"Failed to update bookmark" : "Theip ar an leabharmharc a nuashonrú",
|
||||
"Failed to update thread title" : "Theip ar theideal an tsnáithe a nuashonrú",
|
||||
"Failed to move thread" : "Theip ar bhogadh an snáithe",
|
||||
"Preferences" : "Roghanna",
|
||||
@@ -257,17 +283,17 @@
|
||||
"Files" : "Comhaid",
|
||||
"Configure file upload settings" : "Cumraigh socruithe uaslódála comhad",
|
||||
"Upload directory" : "Uaslódáil eolaire",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Uaslódálfar comhaid atá ceangailte le poist chuig an eolaire seo i do chomhaid Nextcloud",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Uaslódálfar comhaid atá ceangailte le snáitheanna nó freagraí chuig an eolaire seo i do chomhaid Nextcloud",
|
||||
"Browse" : "Brabhsáil",
|
||||
"Preferences saved" : "Roghanna sábháilte",
|
||||
"Signature" : "Sínithe",
|
||||
"Your signature appears at the bottom of your posts" : "Feictear do shíniú ag bun do phoist",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Feictear do shíniú ag bun do shnáitheanna nó do fhreagraí",
|
||||
"You can use BBCode formatting in your signature" : "Is féidir leat formáidiú BBCode a úsáid i do shíniú",
|
||||
"Enter your signature …" : "Cuir isteach do shíniú …",
|
||||
"Failed to save preferences" : "Theip ar na roghanna a shábháil",
|
||||
"Select upload directory" : "Roghnaigh eolaire uaslódála",
|
||||
"BBCode management" : "Bainistíocht BBCode",
|
||||
"Manage custom BBCode tags for post formatting" : "Bainistigh clibeanna saincheaptha BBCode le haghaidh formáidiú post",
|
||||
"Manage custom BBCode tags for formatting" : "Bainistigh clibeanna saincheaptha BBCode le haghaidh formáidithe",
|
||||
"Error loading BBCodes" : "Earráid ag luchtú BBCóid",
|
||||
"Create BBCode" : "Cruthaigh BBCode",
|
||||
"Enable" : "Cumasaigh",
|
||||
|
||||
72
l10n/gl.js
72
l10n/gl.js
@@ -38,12 +38,15 @@ OC.L10N.register(
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Síntase libre de iniciar un novo debate ou de responder a fíos existentes. Feliz publicación!",
|
||||
"Forum" : "Foro",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta en {thread}","{count} novas respostas en {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mencionouno a Vde. en {thread}",
|
||||
"Welcome to the forum!" : "Dámoslle a benvida ao foro!",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cree debates, comparta ideas e colabore directamente coa súa comunidade en Nextcloud.\n\n**⚠️ Aviso sobre o desenvolvemento inicial:**\nEsta aplicación está en fases iniciais de desenvolvemento. Aínda que é funcional, pode atopar erros ou funcións incompletas. Informe de calquera problema en GitHub e considere facer copias de seguranza dos seus datos regularmente.\n\n**Características principais:**\n- **Debates baseados en fíos** - Crear e responder a fíos de debate organizados\n- **Organización por categorías** - Estruture o seu foro con categorías e cabeceiras personalizábeis\n- **Formato de texto enriquecido** - Use BBCode para formatar publicacións en grosa, cursiva, ligazóns, imaxes, bloques de código e máis\n- **Ficheiros anexos** - Anexe ficheiros do seu almacenamento Nextcloud ás publicacións\n- **Reaccións á publicación** - Reaccione ás publicacións con «emojis» de reacción\n- **Seguimento de lido/non lido** - Leve o control de que fíos leu\n- **Buscar** - Atope debates rapidamente coa busca integrada\n- **Perfís de usuario** - Ver o historial de publicacións e estatísticas de usuarios\n- **Permisos baseados en roles** - Controle o acceso e moderación con roles flexíbeis\n- **Acceso de convidados**: Acceso público opcional para usuarios non autenticados con permisos configurábeis\n- **Ferramentas de administración** - Xestione categorías, roles, BBCodes e os axustes do foro\n- **Ferramentas de moderación** - Fixar, bloquear e xestionar fíos e publicacións\n\n**Perfecto para:**\n- Debates e colaboración en equipo\n- Foros comunitarios\n- Canles de asistencia\n- Bases de coñecemento\n- Debates sobre proxectos\n- Comunicación interna\n\nO foro intégrase sen problemas coa súa instancia de Nextcloud, empregando os seus usuarios e grupos existentes para a autenticación e o control de acceso.",
|
||||
"Loading …" : "Cargando…",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"User preferences" : "Preferencias do usuario",
|
||||
"Dashboard" : "Taboleiro",
|
||||
"Forum settings" : "Axustes do Foro",
|
||||
@@ -130,34 +133,52 @@ OC.L10N.register(
|
||||
"Quote reply" : "Responder á cita",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"View edit history" : "Ver o historial de edicións",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Confirma que quere eliminar esta publicación? Esta acción non é posíbel desfacela.",
|
||||
"Unread" : "Sen ler",
|
||||
"Edit your post …" : "Edite a súa publicación…",
|
||||
"Edit your reply …" : "Edite a súa resposta…",
|
||||
"Save" : "Gardar",
|
||||
"Are you sure you want to discard your changes?" : "Confirma que quere desbotar os seus cambios?",
|
||||
"Edit history" : "Historial da edicións",
|
||||
"Loading history …" : "Cargando o historial…",
|
||||
"This post has no edit history." : "Esta publicación non ten historial de edicións.",
|
||||
"Current version" : "Versión actual",
|
||||
"Edited by" : "Editada por",
|
||||
"Failed to load edit history" : "Produciuse un fallo ao cargar o historial de edicións",
|
||||
"Version {index}" : "Versión {index}",
|
||||
"Add reaction" : "Engadir reacción",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"You reacted with {emoji}" : "Vde. reaccionou con {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vde. e %n persoa máis reaccionaron con {emoji}","Vde. e %n persoas máis reaccionaron con {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n persoa reaccionou con {emoji}","%n persoas reaccionaron con {emoji}"],
|
||||
"Write your reply …" : "Escriba a súa resposta…",
|
||||
"Post reply" : "Publicar a resposta",
|
||||
"Submit reply" : "Enviar a resposta",
|
||||
"Are you sure you want to discard your reply?" : "Confirma que quere desbotar a súa resposta?",
|
||||
"In thread" : "No fío",
|
||||
"Thread unavailable" : "Fío non dispoñíbel",
|
||||
"Pinned thread" : "Fío fixado",
|
||||
"Locked thread" : "Fío bloqueado",
|
||||
"Uncategorized" : "Sen categorizar",
|
||||
"_%n post_::_%n posts_" : ["%n publicación","%n publicacións"],
|
||||
"_%n reply_::_%n replies_" : ["%n resposta","%n respostas"],
|
||||
"_%n view_::_%n views_" : ["%n vista","%n vistas"],
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Titulo",
|
||||
"Enter thread title …" : "Introduza o título do fío…",
|
||||
"Write your first post …" : "Escriba a súa primeira publicación…",
|
||||
"Write your thread content …" : "Escriba o contido do seu fío…",
|
||||
"Create thread" : "Crear un fío",
|
||||
"Are you sure you want to discard this thread?" : "Confirma que quere desbotar este fío?",
|
||||
"Saving draft …" : "Gardando o borrador…",
|
||||
"Draft saved" : "Gardouse o borrador",
|
||||
"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. ",
|
||||
"Bookmark threads to quickly find them later." : "Marque os fíos para atopalos axiña máis adiante.",
|
||||
"Retry" : "Volver tentar",
|
||||
"An unexpected error occurred" : "Produciuse un erro non agardado",
|
||||
"Failed to load bookmarks" : "Produciuse un fallo ao cargar os marcadores",
|
||||
"No categories yet" : "Aínda non hai categorías",
|
||||
"Categories will appear here once they are created." : "As categorías aparecerán aquí unha vez creadas.",
|
||||
"No categories in this section" : "Non hai ningunha categoría nesta sección",
|
||||
@@ -168,8 +189,6 @@ OC.L10N.register(
|
||||
"Error loading category" : "Produciuse un erro ao cargar a categoría",
|
||||
"No threads yet" : "Aínda non hai ningún fío",
|
||||
"Be the first to start a discussion in this category." : "Sexa o primeiro en iniciar un debate nesta categoría.",
|
||||
"Retry" : "Volver tentar",
|
||||
"An unexpected error occurred" : "Produciuse un erro non agardado",
|
||||
"No category ID or slug provided" : "Non forneceu ningún ID ou URL semántico",
|
||||
"Failed to load threads" : "Produciuse un fallo ao cargar os fíos",
|
||||
"Create New Thread" : "Crear un novo fío",
|
||||
@@ -179,17 +198,17 @@ OC.L10N.register(
|
||||
"Failed to create thread" : "Produciuse un fallo ao crear o fío",
|
||||
"No category specified" : "Non se especificou ningunha categoría",
|
||||
"Error" : "Erro",
|
||||
"First post" : "Primeira publicación",
|
||||
"First activity" : "First activity",
|
||||
"Threads ({count})" : "Fíos ({count})",
|
||||
"Replies ({count})" : "Respostas ({count})",
|
||||
"No threads" : "Non hai ningún fío",
|
||||
"This user has not created any threads yet" : "Este usuario aínda non creou ningún fío",
|
||||
"No replies" : "Non hai ningunha resposta",
|
||||
"This user has not posted any replies yet" : "Este usuario aínda non publicou ningunha resposta",
|
||||
"This user has not written any replies yet" : "Este usuario aínda non escribiu ningunha resposta",
|
||||
"Failed to load user profile" : "Produciuse un fallo ao cargar o perfil do usuario",
|
||||
"Enter search query …" : "Introduza a consulta de busca…",
|
||||
"Search in threads" : "Buscar nos fíos",
|
||||
"Search in posts" : "Buscar nas publicacións",
|
||||
"Search in replies" : "Buscar nas respostas",
|
||||
"Syntax help" : "Axuda coa sintaxe",
|
||||
"Search syntax" : "Sintaxe de busca",
|
||||
"Match exact phrase" : "Buscar frase exacta",
|
||||
@@ -200,11 +219,11 @@ OC.L10N.register(
|
||||
"Searching …" : "Buscando…",
|
||||
"Search Error" : "Erro de busca",
|
||||
"Enter a search query" : "Introduza unha consulta de busca…",
|
||||
"Use the search box above to find threads and posts" : "Empregue a caixa de buscas de enriba para atopar fíos e publicacións",
|
||||
"Use the search box above to find threads and replies" : "Empregue a caixa de busca de enriba para atopar fíos e respostas",
|
||||
"No results found" : "Non se atopou ningún resultado",
|
||||
"Try different keywords or check your syntax" : "Probe con diferentes palabras clave ou comprobe a sintaxe",
|
||||
"_%n thread found_::_%n threads found_" : ["Atopouse %n fío","Atopáronse %n fíos"],
|
||||
"_%n post found_::_%n posts found_" : ["Atopouse %n publicación","Atopáronse %n publicacións"],
|
||||
"_%n reply found_::_%n replies found_" : ["Atopouse %n resposta","Atopáronse %n respostas"],
|
||||
"Please enter a search query" : "Introduza unha consulta de busca",
|
||||
"Please select at least one search scope" : "Seleccione polo menos un ámbito de busca",
|
||||
"Failed to search" : "Produciuse un fallo na busca",
|
||||
@@ -213,10 +232,10 @@ OC.L10N.register(
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"Reply" : "Responder",
|
||||
"Error loading thread" : "Produciuse un erro ao cargar o fío",
|
||||
"No posts yet" : "Aínda non hai ningunha publicación",
|
||||
"Be the first to post in this thread." : "Sexa o primeiro en publicar neste fío.",
|
||||
"No replies yet" : "Aínda non hai respostas",
|
||||
"Be the first to reply in this thread." : "Sexao primeiro en responder neste fío.",
|
||||
"by" : "por",
|
||||
"This thread is locked. Only moderators can post replies." : "Este fío está bloqueado. Só os moderadores poden publicar respostas.",
|
||||
"This thread is locked. Only moderators can add replies." : "Este fío está bloqueado. Só os moderadores poden engadir respostas.",
|
||||
"You must be signed in to reply to this thread." : "Debe acceder para poder responder a este fío.",
|
||||
"Sign in to reply" : "Acceder para responder",
|
||||
"Lock thread" : "Bloquear o fío",
|
||||
@@ -231,21 +250,28 @@ OC.L10N.register(
|
||||
"Subscribed" : "Subscrito",
|
||||
"Subscribed to thread" : "Subscribirse ao fío",
|
||||
"Unsubscribed from thread" : "Desubscribirse ao fío",
|
||||
"Bookmark" : "Marcador",
|
||||
"Remove bookmark" : "Retirar o marcador",
|
||||
"Thread bookmarked" : "Fío marcado",
|
||||
"Bookmark removed" : "Marcador retirado",
|
||||
"Edit title" : "Editar o título",
|
||||
"Save title" : "Gardar o título",
|
||||
"Thread title updated" : "Título do fío actualizado",
|
||||
"Move thread" : "Mover o fío",
|
||||
"Thread moved successfully" : "O fío foi movido satisfactoriamente",
|
||||
"No thread ID or slug provided" : "Non foi fornecido ningún ID ou URL semántico",
|
||||
"Failed to load posts" : "Produciuse un fallo ao cargar as publicacións",
|
||||
"Post updated" : "Publicación actualizada",
|
||||
"Failed to update post" : "Produciuse un fallo ao actualizar a publicación",
|
||||
"Failed to load replies" : "Produciuse un fallo ao cargar as respostas",
|
||||
"Thread updated" : "Fío actualizado",
|
||||
"Reply updated" : "Resposta actualizada",
|
||||
"Failed to update thread" : "Produciuse un fallo ao actualizar o fío",
|
||||
"Failed to update reply" : "Produciuse un fallo ao actualizar a resposta",
|
||||
"Thread deleted" : "Fío eliminado",
|
||||
"Post deleted" : "Publicación eliminada",
|
||||
"Failed to delete post" : "Produciuse un fallo ao eliminar a publicación",
|
||||
"Reply deleted" : "Resposta eliminada",
|
||||
"Failed to delete reply" : "Produciuse un fallo ao eliminar a resposta",
|
||||
"Failed to update thread lock status" : "Produciuse un fallo ao actualizar o estado de bloqueado do fío",
|
||||
"Failed to update thread pin status" : "Produciuse un fallo ao actualizar o estado de fixado do fío",
|
||||
"Failed to update subscription" : "Produciuse un fallo ao actualizar a subscrición",
|
||||
"Failed to update bookmark" : "Produciuse un fallo ao actualizar o marcador",
|
||||
"Failed to update thread title" : "Produciuse un fallo ao actualizar o título do fío",
|
||||
"Failed to move thread" : "Produciuse un fallo ao mover o fío",
|
||||
"Preferences" : "Preferencias",
|
||||
@@ -259,17 +285,17 @@ OC.L10N.register(
|
||||
"Files" : "Ficheiros",
|
||||
"Configure file upload settings" : "Configurar os axustes de envío de ficheiros",
|
||||
"Upload directory" : "Directorio ao que enviar",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Os ficheiros anexos ás publicacións enviaranse a este directorio nos seus ficheiros de Nextcloud",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Os ficheiros anexos a fíos ou respostas enviaranse a este directorio nos seus ficheiros de Nextcloud",
|
||||
"Browse" : "Examinar",
|
||||
"Preferences saved" : "Preferencias gardadas",
|
||||
"Signature" : "Sinatura",
|
||||
"Your signature appears at the bottom of your posts" : "A súa sinatura aparece ao final das súas publicacións",
|
||||
"Your signature appears at the bottom of your threads or replies" : "A súa sinatura aparece ao final dos seus fíos ou respostas",
|
||||
"You can use BBCode formatting in your signature" : "Pode empregar o formato BBCode na súa sinatura",
|
||||
"Enter your signature …" : "Introduza a súa sinatura…",
|
||||
"Failed to save preferences" : "Produciuse un fallo ao gardar as preferencias",
|
||||
"Select upload directory" : "Seleccionar o directorio ao que enviar",
|
||||
"BBCode management" : "Xestión de BBCode",
|
||||
"Manage custom BBCode tags for post formatting" : "Xestionar etiquetas personalizadas de BBCode para o formatado de publicacións",
|
||||
"Manage custom BBCode tags for formatting" : "Xestionar etiquetas personalizadas de BBCode para o formatado",
|
||||
"Error loading BBCodes" : "Produciuse un erro ao cargar BBCodes",
|
||||
"Create BBCode" : "Crear BBCode",
|
||||
"Enable" : "Activar",
|
||||
|
||||
72
l10n/gl.json
72
l10n/gl.json
@@ -36,12 +36,15 @@
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Síntase libre de iniciar un novo debate ou de responder a fíos existentes. Feliz publicación!",
|
||||
"Forum" : "Foro",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta en {thread}","{count} novas respostas en {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mencionouno a Vde. en {thread}",
|
||||
"Welcome to the forum!" : "Dámoslle a benvida ao foro!",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cree debates, comparta ideas e colabore directamente coa súa comunidade en Nextcloud.\n\n**⚠️ Aviso sobre o desenvolvemento inicial:**\nEsta aplicación está en fases iniciais de desenvolvemento. Aínda que é funcional, pode atopar erros ou funcións incompletas. Informe de calquera problema en GitHub e considere facer copias de seguranza dos seus datos regularmente.\n\n**Características principais:**\n- **Debates baseados en fíos** - Crear e responder a fíos de debate organizados\n- **Organización por categorías** - Estruture o seu foro con categorías e cabeceiras personalizábeis\n- **Formato de texto enriquecido** - Use BBCode para formatar publicacións en grosa, cursiva, ligazóns, imaxes, bloques de código e máis\n- **Ficheiros anexos** - Anexe ficheiros do seu almacenamento Nextcloud ás publicacións\n- **Reaccións á publicación** - Reaccione ás publicacións con «emojis» de reacción\n- **Seguimento de lido/non lido** - Leve o control de que fíos leu\n- **Buscar** - Atope debates rapidamente coa busca integrada\n- **Perfís de usuario** - Ver o historial de publicacións e estatísticas de usuarios\n- **Permisos baseados en roles** - Controle o acceso e moderación con roles flexíbeis\n- **Acceso de convidados**: Acceso público opcional para usuarios non autenticados con permisos configurábeis\n- **Ferramentas de administración** - Xestione categorías, roles, BBCodes e os axustes do foro\n- **Ferramentas de moderación** - Fixar, bloquear e xestionar fíos e publicacións\n\n**Perfecto para:**\n- Debates e colaboración en equipo\n- Foros comunitarios\n- Canles de asistencia\n- Bases de coñecemento\n- Debates sobre proxectos\n- Comunicación interna\n\nO foro intégrase sen problemas coa súa instancia de Nextcloud, empregando os seus usuarios e grupos existentes para a autenticación e o control de acceso.",
|
||||
"Loading …" : "Cargando…",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Bookmarks" : "Marcadores",
|
||||
"User preferences" : "Preferencias do usuario",
|
||||
"Dashboard" : "Taboleiro",
|
||||
"Forum settings" : "Axustes do Foro",
|
||||
@@ -128,34 +131,52 @@
|
||||
"Quote reply" : "Responder á cita",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"View edit history" : "Ver o historial de edicións",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Confirma que quere eliminar esta publicación? Esta acción non é posíbel desfacela.",
|
||||
"Unread" : "Sen ler",
|
||||
"Edit your post …" : "Edite a súa publicación…",
|
||||
"Edit your reply …" : "Edite a súa resposta…",
|
||||
"Save" : "Gardar",
|
||||
"Are you sure you want to discard your changes?" : "Confirma que quere desbotar os seus cambios?",
|
||||
"Edit history" : "Historial da edicións",
|
||||
"Loading history …" : "Cargando o historial…",
|
||||
"This post has no edit history." : "Esta publicación non ten historial de edicións.",
|
||||
"Current version" : "Versión actual",
|
||||
"Edited by" : "Editada por",
|
||||
"Failed to load edit history" : "Produciuse un fallo ao cargar o historial de edicións",
|
||||
"Version {index}" : "Versión {index}",
|
||||
"Add reaction" : "Engadir reacción",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"You reacted with {emoji}" : "Vde. reaccionou con {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vde. e %n persoa máis reaccionaron con {emoji}","Vde. e %n persoas máis reaccionaron con {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n persoa reaccionou con {emoji}","%n persoas reaccionaron con {emoji}"],
|
||||
"Write your reply …" : "Escriba a súa resposta…",
|
||||
"Post reply" : "Publicar a resposta",
|
||||
"Submit reply" : "Enviar a resposta",
|
||||
"Are you sure you want to discard your reply?" : "Confirma que quere desbotar a súa resposta?",
|
||||
"In thread" : "No fío",
|
||||
"Thread unavailable" : "Fío non dispoñíbel",
|
||||
"Pinned thread" : "Fío fixado",
|
||||
"Locked thread" : "Fío bloqueado",
|
||||
"Uncategorized" : "Sen categorizar",
|
||||
"_%n post_::_%n posts_" : ["%n publicación","%n publicacións"],
|
||||
"_%n reply_::_%n replies_" : ["%n resposta","%n respostas"],
|
||||
"_%n view_::_%n views_" : ["%n vista","%n vistas"],
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Titulo",
|
||||
"Enter thread title …" : "Introduza o título do fío…",
|
||||
"Write your first post …" : "Escriba a súa primeira publicación…",
|
||||
"Write your thread content …" : "Escriba o contido do seu fío…",
|
||||
"Create thread" : "Crear un fío",
|
||||
"Are you sure you want to discard this thread?" : "Confirma que quere desbotar este fío?",
|
||||
"Saving draft …" : "Gardando o borrador…",
|
||||
"Draft saved" : "Gardouse o borrador",
|
||||
"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. ",
|
||||
"Bookmark threads to quickly find them later." : "Marque os fíos para atopalos axiña máis adiante.",
|
||||
"Retry" : "Volver tentar",
|
||||
"An unexpected error occurred" : "Produciuse un erro non agardado",
|
||||
"Failed to load bookmarks" : "Produciuse un fallo ao cargar os marcadores",
|
||||
"No categories yet" : "Aínda non hai categorías",
|
||||
"Categories will appear here once they are created." : "As categorías aparecerán aquí unha vez creadas.",
|
||||
"No categories in this section" : "Non hai ningunha categoría nesta sección",
|
||||
@@ -166,8 +187,6 @@
|
||||
"Error loading category" : "Produciuse un erro ao cargar a categoría",
|
||||
"No threads yet" : "Aínda non hai ningún fío",
|
||||
"Be the first to start a discussion in this category." : "Sexa o primeiro en iniciar un debate nesta categoría.",
|
||||
"Retry" : "Volver tentar",
|
||||
"An unexpected error occurred" : "Produciuse un erro non agardado",
|
||||
"No category ID or slug provided" : "Non forneceu ningún ID ou URL semántico",
|
||||
"Failed to load threads" : "Produciuse un fallo ao cargar os fíos",
|
||||
"Create New Thread" : "Crear un novo fío",
|
||||
@@ -177,17 +196,17 @@
|
||||
"Failed to create thread" : "Produciuse un fallo ao crear o fío",
|
||||
"No category specified" : "Non se especificou ningunha categoría",
|
||||
"Error" : "Erro",
|
||||
"First post" : "Primeira publicación",
|
||||
"First activity" : "First activity",
|
||||
"Threads ({count})" : "Fíos ({count})",
|
||||
"Replies ({count})" : "Respostas ({count})",
|
||||
"No threads" : "Non hai ningún fío",
|
||||
"This user has not created any threads yet" : "Este usuario aínda non creou ningún fío",
|
||||
"No replies" : "Non hai ningunha resposta",
|
||||
"This user has not posted any replies yet" : "Este usuario aínda non publicou ningunha resposta",
|
||||
"This user has not written any replies yet" : "Este usuario aínda non escribiu ningunha resposta",
|
||||
"Failed to load user profile" : "Produciuse un fallo ao cargar o perfil do usuario",
|
||||
"Enter search query …" : "Introduza a consulta de busca…",
|
||||
"Search in threads" : "Buscar nos fíos",
|
||||
"Search in posts" : "Buscar nas publicacións",
|
||||
"Search in replies" : "Buscar nas respostas",
|
||||
"Syntax help" : "Axuda coa sintaxe",
|
||||
"Search syntax" : "Sintaxe de busca",
|
||||
"Match exact phrase" : "Buscar frase exacta",
|
||||
@@ -198,11 +217,11 @@
|
||||
"Searching …" : "Buscando…",
|
||||
"Search Error" : "Erro de busca",
|
||||
"Enter a search query" : "Introduza unha consulta de busca…",
|
||||
"Use the search box above to find threads and posts" : "Empregue a caixa de buscas de enriba para atopar fíos e publicacións",
|
||||
"Use the search box above to find threads and replies" : "Empregue a caixa de busca de enriba para atopar fíos e respostas",
|
||||
"No results found" : "Non se atopou ningún resultado",
|
||||
"Try different keywords or check your syntax" : "Probe con diferentes palabras clave ou comprobe a sintaxe",
|
||||
"_%n thread found_::_%n threads found_" : ["Atopouse %n fío","Atopáronse %n fíos"],
|
||||
"_%n post found_::_%n posts found_" : ["Atopouse %n publicación","Atopáronse %n publicacións"],
|
||||
"_%n reply found_::_%n replies found_" : ["Atopouse %n resposta","Atopáronse %n respostas"],
|
||||
"Please enter a search query" : "Introduza unha consulta de busca",
|
||||
"Please select at least one search scope" : "Seleccione polo menos un ámbito de busca",
|
||||
"Failed to search" : "Produciuse un fallo na busca",
|
||||
@@ -211,10 +230,10 @@
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"Reply" : "Responder",
|
||||
"Error loading thread" : "Produciuse un erro ao cargar o fío",
|
||||
"No posts yet" : "Aínda non hai ningunha publicación",
|
||||
"Be the first to post in this thread." : "Sexa o primeiro en publicar neste fío.",
|
||||
"No replies yet" : "Aínda non hai respostas",
|
||||
"Be the first to reply in this thread." : "Sexao primeiro en responder neste fío.",
|
||||
"by" : "por",
|
||||
"This thread is locked. Only moderators can post replies." : "Este fío está bloqueado. Só os moderadores poden publicar respostas.",
|
||||
"This thread is locked. Only moderators can add replies." : "Este fío está bloqueado. Só os moderadores poden engadir respostas.",
|
||||
"You must be signed in to reply to this thread." : "Debe acceder para poder responder a este fío.",
|
||||
"Sign in to reply" : "Acceder para responder",
|
||||
"Lock thread" : "Bloquear o fío",
|
||||
@@ -229,21 +248,28 @@
|
||||
"Subscribed" : "Subscrito",
|
||||
"Subscribed to thread" : "Subscribirse ao fío",
|
||||
"Unsubscribed from thread" : "Desubscribirse ao fío",
|
||||
"Bookmark" : "Marcador",
|
||||
"Remove bookmark" : "Retirar o marcador",
|
||||
"Thread bookmarked" : "Fío marcado",
|
||||
"Bookmark removed" : "Marcador retirado",
|
||||
"Edit title" : "Editar o título",
|
||||
"Save title" : "Gardar o título",
|
||||
"Thread title updated" : "Título do fío actualizado",
|
||||
"Move thread" : "Mover o fío",
|
||||
"Thread moved successfully" : "O fío foi movido satisfactoriamente",
|
||||
"No thread ID or slug provided" : "Non foi fornecido ningún ID ou URL semántico",
|
||||
"Failed to load posts" : "Produciuse un fallo ao cargar as publicacións",
|
||||
"Post updated" : "Publicación actualizada",
|
||||
"Failed to update post" : "Produciuse un fallo ao actualizar a publicación",
|
||||
"Failed to load replies" : "Produciuse un fallo ao cargar as respostas",
|
||||
"Thread updated" : "Fío actualizado",
|
||||
"Reply updated" : "Resposta actualizada",
|
||||
"Failed to update thread" : "Produciuse un fallo ao actualizar o fío",
|
||||
"Failed to update reply" : "Produciuse un fallo ao actualizar a resposta",
|
||||
"Thread deleted" : "Fío eliminado",
|
||||
"Post deleted" : "Publicación eliminada",
|
||||
"Failed to delete post" : "Produciuse un fallo ao eliminar a publicación",
|
||||
"Reply deleted" : "Resposta eliminada",
|
||||
"Failed to delete reply" : "Produciuse un fallo ao eliminar a resposta",
|
||||
"Failed to update thread lock status" : "Produciuse un fallo ao actualizar o estado de bloqueado do fío",
|
||||
"Failed to update thread pin status" : "Produciuse un fallo ao actualizar o estado de fixado do fío",
|
||||
"Failed to update subscription" : "Produciuse un fallo ao actualizar a subscrición",
|
||||
"Failed to update bookmark" : "Produciuse un fallo ao actualizar o marcador",
|
||||
"Failed to update thread title" : "Produciuse un fallo ao actualizar o título do fío",
|
||||
"Failed to move thread" : "Produciuse un fallo ao mover o fío",
|
||||
"Preferences" : "Preferencias",
|
||||
@@ -257,17 +283,17 @@
|
||||
"Files" : "Ficheiros",
|
||||
"Configure file upload settings" : "Configurar os axustes de envío de ficheiros",
|
||||
"Upload directory" : "Directorio ao que enviar",
|
||||
"Files attached to posts will be uploaded to this directory in your Nextcloud files" : "Os ficheiros anexos ás publicacións enviaranse a este directorio nos seus ficheiros de Nextcloud",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Os ficheiros anexos a fíos ou respostas enviaranse a este directorio nos seus ficheiros de Nextcloud",
|
||||
"Browse" : "Examinar",
|
||||
"Preferences saved" : "Preferencias gardadas",
|
||||
"Signature" : "Sinatura",
|
||||
"Your signature appears at the bottom of your posts" : "A súa sinatura aparece ao final das súas publicacións",
|
||||
"Your signature appears at the bottom of your threads or replies" : "A súa sinatura aparece ao final dos seus fíos ou respostas",
|
||||
"You can use BBCode formatting in your signature" : "Pode empregar o formato BBCode na súa sinatura",
|
||||
"Enter your signature …" : "Introduza a súa sinatura…",
|
||||
"Failed to save preferences" : "Produciuse un fallo ao gardar as preferencias",
|
||||
"Select upload directory" : "Seleccionar o directorio ao que enviar",
|
||||
"BBCode management" : "Xestión de BBCode",
|
||||
"Manage custom BBCode tags for post formatting" : "Xestionar etiquetas personalizadas de BBCode para o formatado de publicacións",
|
||||
"Manage custom BBCode tags for formatting" : "Xestionar etiquetas personalizadas de BBCode para o formatado",
|
||||
"Error loading BBCodes" : "Produciuse un erro ao cargar BBCodes",
|
||||
"Create BBCode" : "Crear BBCode",
|
||||
"Enable" : "Activar",
|
||||
|
||||
@@ -38,8 +38,10 @@ OC.L10N.register(
|
||||
"Welcome to the forum!" : "ברוכים הבאים לפורום!",
|
||||
"Deleted user" : "משתמש מחוק",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "פורום מונחה-קהילה מובנה ישירות להתקנת ה Nextcloud שלכם.",
|
||||
"Loading …" : "בטעינה…",
|
||||
"Search" : "חיפוש",
|
||||
"Home" : "בית",
|
||||
"Bookmarks" : "סימניות",
|
||||
"User preferences" : "העדפות משתמש",
|
||||
"Dashboard" : "לוח בקרה",
|
||||
"Forum settings" : "הגדרות פורום",
|
||||
@@ -112,19 +114,22 @@ OC.L10N.register(
|
||||
"Delete" : "מחיקה",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "האם אתם בטוחים שתרצו למחוק את הפוסט הזה? הפעולה בלתי ניתנת להפיכה.",
|
||||
"Unread" : "לא נקרא",
|
||||
"Edit your post …" : "עריכת פוסט …",
|
||||
"Save" : "שמירה",
|
||||
"Are you sure you want to discard your changes?" : "האם אתם בטוחים שתרצו לבטל את השינויים שלכם?",
|
||||
"Current version" : "גרסה נוכחית",
|
||||
"Uncategorized" : "ללא קטגוריה",
|
||||
"Views" : "תצוגות",
|
||||
"Saving draft …" : "הטיוטה נשמרת…",
|
||||
"Draft saved" : "הטיוטה נשמרה",
|
||||
"Unsaved changes" : "שינויים שלא נשמרו",
|
||||
"Refresh" : "רענון",
|
||||
"Loading …" : "בטעינה…",
|
||||
"Retry" : "ניסיון חוזר",
|
||||
"Error" : "שגיאה",
|
||||
"Searching …" : "מתבצע חיפוש…",
|
||||
"Back to {category}" : "חזרה אל {category}",
|
||||
"by" : "מאת",
|
||||
"Subscribe" : "הרשמה",
|
||||
"Bookmark" : "סימנייה",
|
||||
"Edit title" : "עריכת כותרת",
|
||||
"Move thread" : "העברת שרשור",
|
||||
"Preferences" : "העדפות",
|
||||
|
||||
@@ -36,8 +36,10 @@
|
||||
"Welcome to the forum!" : "ברוכים הבאים לפורום!",
|
||||
"Deleted user" : "משתמש מחוק",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "פורום מונחה-קהילה מובנה ישירות להתקנת ה Nextcloud שלכם.",
|
||||
"Loading …" : "בטעינה…",
|
||||
"Search" : "חיפוש",
|
||||
"Home" : "בית",
|
||||
"Bookmarks" : "סימניות",
|
||||
"User preferences" : "העדפות משתמש",
|
||||
"Dashboard" : "לוח בקרה",
|
||||
"Forum settings" : "הגדרות פורום",
|
||||
@@ -110,19 +112,22 @@
|
||||
"Delete" : "מחיקה",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "האם אתם בטוחים שתרצו למחוק את הפוסט הזה? הפעולה בלתי ניתנת להפיכה.",
|
||||
"Unread" : "לא נקרא",
|
||||
"Edit your post …" : "עריכת פוסט …",
|
||||
"Save" : "שמירה",
|
||||
"Are you sure you want to discard your changes?" : "האם אתם בטוחים שתרצו לבטל את השינויים שלכם?",
|
||||
"Current version" : "גרסה נוכחית",
|
||||
"Uncategorized" : "ללא קטגוריה",
|
||||
"Views" : "תצוגות",
|
||||
"Saving draft …" : "הטיוטה נשמרת…",
|
||||
"Draft saved" : "הטיוטה נשמרה",
|
||||
"Unsaved changes" : "שינויים שלא נשמרו",
|
||||
"Refresh" : "רענון",
|
||||
"Loading …" : "בטעינה…",
|
||||
"Retry" : "ניסיון חוזר",
|
||||
"Error" : "שגיאה",
|
||||
"Searching …" : "מתבצע חיפוש…",
|
||||
"Back to {category}" : "חזרה אל {category}",
|
||||
"by" : "מאת",
|
||||
"Subscribe" : "הרשמה",
|
||||
"Bookmark" : "סימנייה",
|
||||
"Edit title" : "עריכת כותרת",
|
||||
"Move thread" : "העברת שרשור",
|
||||
"Preferences" : "העדפות",
|
||||
|
||||
@@ -7,8 +7,10 @@ OC.L10N.register(
|
||||
"Support" : "Podrška",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Izbrisan korisnik",
|
||||
"Loading …" : "Učitavanje…",
|
||||
"Search" : "Traži",
|
||||
"Home" : "Doma",
|
||||
"Bookmarks" : "Knjižne oznake",
|
||||
"Dashboard" : "Nadzorna ploča",
|
||||
"Users" : "Korisnici",
|
||||
"Categories" : "Kategorije",
|
||||
@@ -28,11 +30,14 @@ OC.L10N.register(
|
||||
"Edit" : "Uredi",
|
||||
"Delete" : "Izbriši",
|
||||
"Save" : "Spremi",
|
||||
"Current version" : "Trenutna verzija",
|
||||
"Uncategorized" : "Nekategorizirani",
|
||||
"Views" : "Prikazi",
|
||||
"Title" : "Naslov",
|
||||
"Saving draft …" : "Spremanje skice...",
|
||||
"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",
|
||||
@@ -40,6 +45,7 @@ OC.L10N.register(
|
||||
"by" : "od",
|
||||
"Subscribe" : "Preplata",
|
||||
"Subscribed" : "Pretplaćen",
|
||||
"Bookmark" : "Dodaj knjižnu oznaku",
|
||||
"Edit title" : "Uredi naslov",
|
||||
"Move thread" : "Premjesti dretvu",
|
||||
"Preferences" : "Preferencije",
|
||||
|
||||
@@ -5,8 +5,10 @@
|
||||
"Support" : "Podrška",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Izbrisan korisnik",
|
||||
"Loading …" : "Učitavanje…",
|
||||
"Search" : "Traži",
|
||||
"Home" : "Doma",
|
||||
"Bookmarks" : "Knjižne oznake",
|
||||
"Dashboard" : "Nadzorna ploča",
|
||||
"Users" : "Korisnici",
|
||||
"Categories" : "Kategorije",
|
||||
@@ -26,11 +28,14 @@
|
||||
"Edit" : "Uredi",
|
||||
"Delete" : "Izbriši",
|
||||
"Save" : "Spremi",
|
||||
"Current version" : "Trenutna verzija",
|
||||
"Uncategorized" : "Nekategorizirani",
|
||||
"Views" : "Prikazi",
|
||||
"Title" : "Naslov",
|
||||
"Saving draft …" : "Spremanje skice...",
|
||||
"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",
|
||||
@@ -38,6 +43,7 @@
|
||||
"by" : "od",
|
||||
"Subscribe" : "Preplata",
|
||||
"Subscribed" : "Pretplaćen",
|
||||
"Bookmark" : "Dodaj knjižnu oznaku",
|
||||
"Edit title" : "Uredi naslov",
|
||||
"Move thread" : "Premjesti dretvu",
|
||||
"Preferences" : "Preferencije",
|
||||
|
||||
10
l10n/hu.js
10
l10n/hu.js
@@ -9,8 +9,10 @@ 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",
|
||||
"Dashboard" : "Irányítópult",
|
||||
"Users" : "Felhasználók",
|
||||
"Categories" : "Kategóriák",
|
||||
@@ -41,12 +43,17 @@ OC.L10N.register(
|
||||
"Delete" : "Törlés",
|
||||
"Unread" : "Olvasatlan",
|
||||
"Save" : "Mentés",
|
||||
"Current version" : "Jelenlegi verzió",
|
||||
"React with {emoji}" : "Reagálás ezzel: {emoji}",
|
||||
"Uncategorized" : "Kategorizálatlan",
|
||||
"_%n reply_::_%n replies_" : ["%n válasz","%n válasz"],
|
||||
"Views" : "Nézetek",
|
||||
"Title" : "Cím",
|
||||
"Saving draft …" : "Piszkozat mentése…",
|
||||
"Draft saved" : "Vázlat elmentve",
|
||||
"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",
|
||||
@@ -57,6 +64,7 @@ OC.L10N.register(
|
||||
"by" : "szerzők:",
|
||||
"Subscribe" : "Feliratkozás",
|
||||
"Subscribed" : "Feliratkozva",
|
||||
"Bookmark" : "Könyvjelző",
|
||||
"Edit title" : "Cím szerkesztése",
|
||||
"Move thread" : "Szál áthelyezése",
|
||||
"Preferences" : "Beállítások",
|
||||
|
||||
10
l10n/hu.json
10
l10n/hu.json
@@ -7,8 +7,10 @@
|
||||
"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",
|
||||
"Dashboard" : "Irányítópult",
|
||||
"Users" : "Felhasználók",
|
||||
"Categories" : "Kategóriák",
|
||||
@@ -39,12 +41,17 @@
|
||||
"Delete" : "Törlés",
|
||||
"Unread" : "Olvasatlan",
|
||||
"Save" : "Mentés",
|
||||
"Current version" : "Jelenlegi verzió",
|
||||
"React with {emoji}" : "Reagálás ezzel: {emoji}",
|
||||
"Uncategorized" : "Kategorizálatlan",
|
||||
"_%n reply_::_%n replies_" : ["%n válasz","%n válasz"],
|
||||
"Views" : "Nézetek",
|
||||
"Title" : "Cím",
|
||||
"Saving draft …" : "Piszkozat mentése…",
|
||||
"Draft saved" : "Vázlat elmentve",
|
||||
"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",
|
||||
@@ -55,6 +62,7 @@
|
||||
"by" : "szerzők:",
|
||||
"Subscribe" : "Feliratkozás",
|
||||
"Subscribed" : "Feliratkozva",
|
||||
"Bookmark" : "Könyvjelző",
|
||||
"Edit title" : "Cím szerkesztése",
|
||||
"Move thread" : "Szál áthelyezése",
|
||||
"Preferences" : "Beállítások",
|
||||
|
||||
@@ -6,8 +6,10 @@ OC.L10N.register(
|
||||
"Guest" : "Tamu",
|
||||
"General" : "Umum",
|
||||
"Forum" : "Forum",
|
||||
"Loading …" : "Memuat …",
|
||||
"Search" : "Cari",
|
||||
"Home" : "Beranda",
|
||||
"Bookmarks" : "Markah",
|
||||
"Dashboard" : "Dasbor",
|
||||
"Users" : "Pengguna",
|
||||
"Categories" : "Kategori",
|
||||
@@ -30,8 +32,8 @@ OC.L10N.register(
|
||||
"Save" : "Simpan",
|
||||
"Uncategorized" : "Tidak terkategori",
|
||||
"Views" : "Tampilan",
|
||||
"Unsaved changes" : "Perubahan belum disimpan",
|
||||
"Refresh" : "Muat ulang",
|
||||
"Loading …" : "Memuat …",
|
||||
"Retry" : "Ulangi",
|
||||
"Error" : "Galat",
|
||||
"Back to {category}" : "Kembali ke {category}",
|
||||
|
||||
@@ -4,8 +4,10 @@
|
||||
"Guest" : "Tamu",
|
||||
"General" : "Umum",
|
||||
"Forum" : "Forum",
|
||||
"Loading …" : "Memuat …",
|
||||
"Search" : "Cari",
|
||||
"Home" : "Beranda",
|
||||
"Bookmarks" : "Markah",
|
||||
"Dashboard" : "Dasbor",
|
||||
"Users" : "Pengguna",
|
||||
"Categories" : "Kategori",
|
||||
@@ -28,8 +30,8 @@
|
||||
"Save" : "Simpan",
|
||||
"Uncategorized" : "Tidak terkategori",
|
||||
"Views" : "Tampilan",
|
||||
"Unsaved changes" : "Perubahan belum disimpan",
|
||||
"Refresh" : "Muat ulang",
|
||||
"Loading …" : "Memuat …",
|
||||
"Retry" : "Ulangi",
|
||||
"Error" : "Galat",
|
||||
"Back to {category}" : "Kembali ke {category}",
|
||||
|
||||
@@ -9,8 +9,10 @@ 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",
|
||||
"Dashboard" : "Stjórnborð",
|
||||
"Users" : "Notendur",
|
||||
"Categories" : "Flokkar",
|
||||
@@ -34,10 +36,14 @@ OC.L10N.register(
|
||||
"Delete" : "Eyða",
|
||||
"Unread" : "Ólesið",
|
||||
"Save" : "Vista",
|
||||
"Current version" : "Fyrirliggjandi útgáfa",
|
||||
"Uncategorized" : "Óflokkað",
|
||||
"Views" : "Skoðun",
|
||||
"Saving draft …" : "Vista drög …",
|
||||
"Draft saved" : "Drög vistuð",
|
||||
"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 …",
|
||||
@@ -45,6 +51,7 @@ OC.L10N.register(
|
||||
"by" : "af",
|
||||
"Subscribe" : "Gerast áskrifandi",
|
||||
"Subscribed" : "Í áskrift",
|
||||
"Bookmark" : "Bókamerki",
|
||||
"Edit title" : "Breyta titli",
|
||||
"Move thread" : "Færa spjallþráð",
|
||||
"Preferences" : "Kjörstillingar",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user