mirror of
https://github.com/chenasraf/nextcloud-forum.git
synced 2026-05-18 01:28:58 +00:00
Compare commits
92 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| eb5a400f90 | |||
| b6ce286c41 | |||
| 04d1d1c658 | |||
| c38a929a36 | |||
| 47288753a2 | |||
| c807929c94 | |||
| a85dbaed91 | |||
|
|
33e6055d47 | ||
| d2baf2a813 | |||
| 5dc7d3b7c1 | |||
| 9029882fdb | |||
| 69bfd56ff6 | |||
| 8476b772e3 | |||
|
|
c43a0a0f89 | ||
| 3c7236f956 | |||
|
|
fcf40da4aa | ||
| 71efe00265 | |||
| 843f81a087 | |||
|
|
f0f06cef25 | ||
| 248c875319 | |||
| 8b973c3ad5 | |||
| f4530ae2a3 | |||
| 3ed74eea8f | |||
| 49ad2c9810 | |||
| 09f6ea4a3b | |||
| e795ec2667 | |||
| be51e8a1a5 | |||
| 53875b1eef | |||
| 0f9d5ea9a5 | |||
| 4708d8cf87 | |||
| 20a15b42d9 | |||
| 7a1853935e | |||
| 04ec7ffcf8 | |||
| c9a76e5cd9 | |||
| 94787052ef | |||
| e20bfdadab | |||
| 328b37be6e | |||
| c7f84d4a18 | |||
| d09987600b | |||
| dcdcde31ed | |||
| f66169288e | |||
| 7a17dbc524 | |||
| c1443014b5 | |||
| 4c2e47d86b | |||
| 8408402148 | |||
| 3d113f1f31 | |||
| 48b7679e3b | |||
| 5f0317b153 | |||
| 56dc0049b8 | |||
| 7519088e2b | |||
| 0f3be447fa | |||
| f73d902962 | |||
| 4a9ae9bfc6 | |||
| 37012590a1 | |||
| 00b80b817d | |||
| 3472e95065 | |||
| 7fde88a158 | |||
| 5ebeb56636 | |||
| a66bcd4612 | |||
| 36d8ecd5bb | |||
| 257a12dfc4 | |||
| b67813fa34 | |||
| d6c6626bad | |||
| 9837fc4683 | |||
| a3b0582d2c | |||
| 53c50f5297 | |||
| 4e867cdf0a | |||
| 7c5bf4a82b | |||
| cf28213bac | |||
| 8ecddc032f | |||
| 6647378e29 | |||
| 0f71247cfa | |||
| 83b7c3392e | |||
| 49c12011fa | |||
| d53724407b | |||
| be51645ba4 | |||
| f3b5fa3273 | |||
| c46c96021e | |||
| caf05dae9d | |||
| e071f79300 | |||
| b90ab6151f | |||
| e22bf1de83 | |||
| e0521cadd3 | |||
| e2fd6383d3 | |||
| d9cb3a6d9b | |||
| 34fa0dbec1 | |||
| 749c30c2f2 | |||
| 53c1b980a9 | |||
| 7c521bcbe4 | |||
|
|
387be93d3a | ||
| b2bf402e20 | |||
| c6d757bee6 |
118
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
118
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@@ -94,25 +94,125 @@ body:
|
||||
description: Which browser are you using? (if applicable)
|
||||
placeholder: e.g., Firefox 120, Chrome 119, Safari 17
|
||||
|
||||
- type: textarea
|
||||
id: logs
|
||||
- type: markdown
|
||||
attributes:
|
||||
label: Relevant Logs
|
||||
value: |
|
||||
## 📋 Debugging Information
|
||||
|
||||
The following information helps us investigate and fix issues quickly. Please provide as much detail as possible.
|
||||
|
||||
- type: textarea
|
||||
id: migration-status
|
||||
attributes:
|
||||
label: Migration Status
|
||||
description: |
|
||||
Please paste any relevant logs from:
|
||||
- Nextcloud log (Settings → Logging)
|
||||
- Browser console (F12 → Console tab)
|
||||
- PHP error logs
|
||||
**How to check migration status:**
|
||||
|
||||
This shows which database migrations have been executed for the Forum app.
|
||||
|
||||
**For Docker installations:**
|
||||
```bash
|
||||
docker exec --user www-data -i nextcloud-aio-nextcloud php occ migrations:status forum
|
||||
```
|
||||
|
||||
**For standard installations:**
|
||||
```bash
|
||||
php occ migrations:status forum
|
||||
```
|
||||
|
||||
Or from the Nextcloud directory:
|
||||
```bash
|
||||
sudo -u www-data php occ migrations:status forum
|
||||
```
|
||||
|
||||
**Note:** If you suspect data is missing (roles, categories, etc.), try running the repair command:
|
||||
```bash
|
||||
php occ forum:repair-seeds
|
||||
```
|
||||
See the [Administration section](https://github.com/chenasraf/nextcloud-forum#administration) in the README for more details.
|
||||
placeholder: Paste the migration status output here...
|
||||
render: shell
|
||||
|
||||
- type: textarea
|
||||
id: nextcloud-logs
|
||||
attributes:
|
||||
label: Nextcloud Server Logs
|
||||
description: |
|
||||
**How to get server logs:**
|
||||
|
||||
Look for errors related to the Forum app (last 20-50 lines recommended).
|
||||
|
||||
**Via Web UI:**
|
||||
- Go to Nextcloud Settings → Administration → Logging (or `/settings/admin/logging`)
|
||||
- Look for entries containing "forum"
|
||||
|
||||
**For Docker installations:**
|
||||
```bash
|
||||
docker exec --user www-data -i nextcloud-aio-nextcloud tail -100 /var/www/html/data/nextcloud.log | grep -i forum
|
||||
```
|
||||
|
||||
**For standard installations:**
|
||||
```bash
|
||||
tail -100 /path/to/nextcloud/data/nextcloud.log | grep -i forum
|
||||
```
|
||||
|
||||
Or from the Nextcloud directory:
|
||||
```bash
|
||||
sudo -u www-data tail -100 data/nextcloud.log | grep -i forum
|
||||
```
|
||||
placeholder: Paste Nextcloud server logs here...
|
||||
render: shell
|
||||
|
||||
- type: textarea
|
||||
id: browser-console
|
||||
attributes:
|
||||
label: Browser Console Errors
|
||||
description: |
|
||||
**How to check browser console:**
|
||||
1. Open the page where the issue occurs
|
||||
2. Press **F12** (or right-click → Inspect → Console tab)
|
||||
3. Look for red error messages
|
||||
4. Copy any errors related to the Forum app
|
||||
|
||||
**Tip:** You can right-click on an error and select "Copy message" or "Copy stack trace"
|
||||
placeholder: Paste browser console errors here...
|
||||
render: javascript
|
||||
|
||||
- type: textarea
|
||||
id: network-errors
|
||||
attributes:
|
||||
label: Network Request Errors
|
||||
description: |
|
||||
**How to check network requests:**
|
||||
1. Open the page where the issue occurs
|
||||
2. Press **F12** → Go to the **Network** tab
|
||||
3. Reproduce the issue
|
||||
4. Look for failed requests (shown in red or with 4xx/5xx status codes)
|
||||
5. Click on the failed request
|
||||
6. Copy the following information:
|
||||
- **Request URL** (e.g., `/apps/forum/api/...`)
|
||||
- **Status Code** (e.g., 500, 404, 403)
|
||||
- **Response** tab content (the error message/data returned)
|
||||
|
||||
**Example format:**
|
||||
```
|
||||
Request: POST /apps/forum/api/threads
|
||||
Status: 500 Internal Server Error
|
||||
Response: {"error": "Database connection failed"}
|
||||
```
|
||||
placeholder: Paste network error details here...
|
||||
render: shell
|
||||
|
||||
- type: textarea
|
||||
id: screenshots
|
||||
attributes:
|
||||
label: Screenshots
|
||||
description: If applicable, add screenshots to help explain your problem
|
||||
description: |
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
You can drag and drop images directly into this field.
|
||||
|
||||
- type: textarea
|
||||
id: additional
|
||||
attributes:
|
||||
label: Additional Context
|
||||
description: Add any other context about the problem here
|
||||
description: Add any other context about the problem here (e.g., recent changes, specific configuration, workarounds attempted)
|
||||
|
||||
2
.github/ISSUE_TEMPLATE/config.yml
vendored
2
.github/ISSUE_TEMPLATE/config.yml
vendored
@@ -1,4 +1,4 @@
|
||||
blank_issues_enabled: false
|
||||
blank_issues_enabled: true
|
||||
contact_links:
|
||||
- name: Nextcloud Community Forum
|
||||
url: https://help.nextcloud.com
|
||||
|
||||
201
.github/workflows/phpunit-mysql.yml
vendored
Normal file
201
.github/workflows/phpunit-mysql.yml
vendored
Normal file
@@ -0,0 +1,201 @@
|
||||
# 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
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
name: PHPUnit MySQL
|
||||
|
||||
on: pull_request
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: phpunit-mysql-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||
steps:
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Get supported server versions
|
||||
id: versions
|
||||
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
|
||||
|
||||
- name: Build test matrix
|
||||
id: set-matrix
|
||||
run: |
|
||||
# Get server branches from version matrix
|
||||
BRANCHES='${{ steps.versions.outputs.branches }}'
|
||||
|
||||
# Build minimal matrix: min Nextcloud with PHP 8.2, max Nextcloud with PHP 8.3
|
||||
MATRIX=$(jq -nc \
|
||||
--argjson branches "$BRANCHES" \
|
||||
'{include: [{"php-versions": "8.2", "mysql-versions": "8.4", "server-versions": $branches[0]}, {"php-versions": "8.3", "mysql-versions": "8.4", "server-versions": $branches[-1]}]}'
|
||||
)
|
||||
|
||||
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
|
||||
echo "Generated matrix: $MATRIX"
|
||||
|
||||
changes:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
outputs:
|
||||
src: ${{ steps.changes.outputs.src}}
|
||||
|
||||
steps:
|
||||
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
|
||||
id: changes
|
||||
continue-on-error: true
|
||||
with:
|
||||
filters: |
|
||||
src:
|
||||
- '.github/workflows/**'
|
||||
- 'appinfo/**'
|
||||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
- 'composer.lock'
|
||||
|
||||
phpunit-mysql:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs: [changes, matrix]
|
||||
if: needs.changes.outputs.src != 'false'
|
||||
|
||||
strategy:
|
||||
matrix: ${{ fromJson(needs.matrix.outputs.matrix) }}
|
||||
|
||||
name: MySQL ${{ matrix.mysql-versions }} PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }}
|
||||
|
||||
services:
|
||||
mysql:
|
||||
image: ghcr.io/nextcloud/continuous-integration-mysql-${{ matrix.mysql-versions }}:latest
|
||||
ports:
|
||||
- 4444:3306/tcp
|
||||
env:
|
||||
MYSQL_ROOT_PASSWORD: rootpassword
|
||||
options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 10
|
||||
|
||||
steps:
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
with:
|
||||
persist-credentials: false
|
||||
path: app-checkout
|
||||
|
||||
- name: Detect app ID from appinfo/info.xml
|
||||
run: |
|
||||
APP_ID=$(grep -oP '(?<=<id>)[^<]+' app-checkout/appinfo/info.xml | head -1)
|
||||
echo "APP_NAME=$APP_ID" >> $GITHUB_ENV
|
||||
echo "Detected app ID: $APP_ID"
|
||||
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
repository: nextcloud/server
|
||||
ref: ${{ matrix.server-versions }}
|
||||
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
with:
|
||||
persist-credentials: false
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@0f7f1d08e3e32076e51cae65eb0b0c871405b16e # v2.34.1
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
# https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
|
||||
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, mysql, pdo_mysql
|
||||
coverage: none
|
||||
ini-file: development
|
||||
# Temporary workaround for missing pcntl_* in PHP 8.3
|
||||
ini-values: disable_functions=
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Enable ONLY_FULL_GROUP_BY MySQL option
|
||||
run: |
|
||||
echo "SET GLOBAL sql_mode=(SELECT CONCAT(@@sql_mode,',ONLY_FULL_GROUP_BY'));" | mysql -h 127.0.0.1 -P 4444 -u root -prootpassword
|
||||
echo 'SELECT @@sql_mode;' | mysql -h 127.0.0.1 -P 4444 -u root -prootpassword
|
||||
|
||||
- name: Check composer file existence
|
||||
id: check_composer
|
||||
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
|
||||
with:
|
||||
files: apps/${{ env.APP_NAME }}/composer.json
|
||||
|
||||
- name: Set up dependencies
|
||||
# Only run if phpunit config file exists
|
||||
if: steps.check_composer.outputs.files_exists == 'true'
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer remove nextcloud/ocp --dev --no-scripts
|
||||
composer i
|
||||
|
||||
- name: Set up Nextcloud
|
||||
env:
|
||||
DB_PORT: 4444
|
||||
run: |
|
||||
mkdir data
|
||||
./occ maintenance:install --verbose --database=mysql --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin
|
||||
./occ app:enable --force ${{ env.APP_NAME }}
|
||||
|
||||
- name: Check PHPUnit script is defined
|
||||
id: check_phpunit
|
||||
continue-on-error: true
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer run --list | grep '^ test:unit ' | wc -l | grep 1
|
||||
|
||||
- name: PHPUnit
|
||||
# Only run if phpunit config file exists
|
||||
if: steps.check_phpunit.outcome == 'success'
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer run test:unit
|
||||
|
||||
- name: Print logs
|
||||
if: always()
|
||||
run: |
|
||||
cat data/nextcloud.log
|
||||
|
||||
- name: Skipped
|
||||
# Fail the action when unit tests are not specified
|
||||
if: steps.check_phpunit.outcome == 'failure'
|
||||
run: |
|
||||
echo 'PHPUnit tests are not specified in composer.json scripts'
|
||||
exit 1
|
||||
|
||||
summary:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest
|
||||
needs: [changes, phpunit-mysql]
|
||||
|
||||
if: always()
|
||||
|
||||
name: phpunit-mysql-summary
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-mysql.result != 'success' }}; then exit 1; fi
|
||||
216
.github/workflows/phpunit-pgsql.yml
vendored
Normal file
216
.github/workflows/phpunit-pgsql.yml
vendored
Normal file
@@ -0,0 +1,216 @@
|
||||
# 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
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
name: PHPUnit PostgreSQL
|
||||
|
||||
on: pull_request
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: phpunit-pgsql-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||
steps:
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Get supported server versions
|
||||
id: versions
|
||||
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
|
||||
|
||||
- name: Build test matrix
|
||||
id: set-matrix
|
||||
run: |
|
||||
# Get server branches from version matrix
|
||||
BRANCHES='${{ steps.versions.outputs.branches }}'
|
||||
|
||||
# Build minimal matrix: only latest Nextcloud with PHP 8.3
|
||||
MATRIX=$(jq -nc \
|
||||
--argjson branches "$BRANCHES" \
|
||||
'{include: [{"php-versions": "8.3", "server-versions": $branches[-1]}]}'
|
||||
)
|
||||
|
||||
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
|
||||
echo "Generated matrix: $MATRIX"
|
||||
|
||||
changes:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
outputs:
|
||||
src: ${{ steps.changes.outputs.src }}
|
||||
|
||||
steps:
|
||||
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
|
||||
id: changes
|
||||
continue-on-error: true
|
||||
with:
|
||||
filters: |
|
||||
src:
|
||||
- '.github/workflows/**'
|
||||
- 'appinfo/**'
|
||||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
- 'composer.lock'
|
||||
|
||||
phpunit-pgsql:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs: [changes, matrix]
|
||||
if: needs.changes.outputs.src != 'false'
|
||||
|
||||
strategy:
|
||||
matrix: ${{ fromJson(needs.matrix.outputs.matrix) }}
|
||||
|
||||
name: PostgreSQL PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }}
|
||||
|
||||
services:
|
||||
postgres:
|
||||
image: ghcr.io/nextcloud/continuous-integration-postgres-16:latest # zizmor: ignore[unpinned-images]
|
||||
ports:
|
||||
- 4444:5432/tcp
|
||||
env:
|
||||
POSTGRES_USER: root
|
||||
POSTGRES_PASSWORD: rootpassword
|
||||
POSTGRES_DB: nextcloud
|
||||
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5
|
||||
|
||||
steps:
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
path: app-checkout
|
||||
|
||||
- name: Detect app ID from appinfo/info.xml
|
||||
run: |
|
||||
APP_ID=$(grep -oP '(?<=<id>)[^<]+' app-checkout/appinfo/info.xml | head -1)
|
||||
echo "APP_NAME=$APP_ID" >> $GITHUB_ENV
|
||||
echo "Detected app ID: $APP_ID"
|
||||
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
repository: nextcloud/server
|
||||
ref: ${{ matrix.server-versions }}
|
||||
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2.35.5
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
# https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
|
||||
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, pgsql, pdo_pgsql
|
||||
coverage: none
|
||||
ini-file: development
|
||||
# Temporary workaround for missing pcntl_* in PHP 8.3
|
||||
ini-values: disable_functions=
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Check composer file existence
|
||||
id: check_composer
|
||||
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
|
||||
with:
|
||||
files: apps/${{ env.APP_NAME }}/composer.json
|
||||
|
||||
- name: Set up dependencies
|
||||
# Only run if phpunit config file exists
|
||||
if: steps.check_composer.outputs.files_exists == 'true'
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer remove nextcloud/ocp --dev --no-scripts
|
||||
composer i
|
||||
|
||||
- name: Set up Nextcloud
|
||||
env:
|
||||
DB_PORT: 4444
|
||||
run: |
|
||||
mkdir data
|
||||
./occ maintenance:install --verbose --database=pgsql --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin
|
||||
./occ app:enable --force ${{ env.APP_NAME }}
|
||||
|
||||
- name: Check PHPUnit script is defined
|
||||
id: check_phpunit
|
||||
continue-on-error: true
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer run --list | grep '^ test:unit ' | wc -l | grep 1
|
||||
|
||||
- name: PHPUnit
|
||||
# Only run if phpunit config file exists
|
||||
if: steps.check_phpunit.outcome == 'success'
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer run test:unit
|
||||
|
||||
- name: Check PHPUnit integration script is defined
|
||||
id: check_integration
|
||||
continue-on-error: true
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer run --list | grep '^ test:integration ' | wc -l | grep 1
|
||||
|
||||
- name: Run Nextcloud
|
||||
# Only run if phpunit integration config file exists
|
||||
if: steps.check_integration.outcome == 'success'
|
||||
run: php -S localhost:8080 &
|
||||
|
||||
- name: PHPUnit integration
|
||||
# Only run if phpunit integration config file exists
|
||||
if: steps.check_integration.outcome == 'success'
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer run test:integration
|
||||
|
||||
- name: Print logs
|
||||
if: always()
|
||||
run: |
|
||||
cat data/nextcloud.log
|
||||
|
||||
- name: Skipped
|
||||
# Fail the action when neither unit nor integration tests ran
|
||||
if: steps.check_phpunit.outcome == 'failure' && steps.check_integration.outcome == 'failure'
|
||||
run: |
|
||||
echo 'Neither PHPUnit nor PHPUnit integration tests are specified in composer.json scripts'
|
||||
exit 1
|
||||
|
||||
summary:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest
|
||||
needs: [changes, phpunit-pgsql]
|
||||
|
||||
if: always()
|
||||
|
||||
name: phpunit-pgsql-summary
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-pgsql.result != 'success' }}; then exit 1; fi
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -12,7 +12,6 @@
|
||||
/js
|
||||
/css
|
||||
.DS_Store
|
||||
composer.lock
|
||||
build/
|
||||
tsconfig.app.tsbuildinfo
|
||||
.env
|
||||
|
||||
@@ -2,9 +2,16 @@ module.exports = {
|
||||
'*.{ts,vue}': ['eslint --fix'],
|
||||
'*.{scss,vue,ts,md}': ['prettier --write'],
|
||||
'*.json': (files) => {
|
||||
const filtered = files.filter(file => !file.includes('openapi.json'));
|
||||
return filtered.length > 0 ? `prettier --write ${filtered.join(' ')}` : [];
|
||||
const filtered = files.filter(file => !file.includes('openapi.json'))
|
||||
return filtered.length > 0 ? `prettier --write ${filtered.join(' ')}` : []
|
||||
},
|
||||
'*.php': (files) => {
|
||||
const nonGenFiles = files.filter(file => !file.includes('/gen/'))
|
||||
const commands = []
|
||||
if (nonGenFiles.length > 0) {
|
||||
commands.push('make php-cs-fixer', 'make test')
|
||||
}
|
||||
return commands
|
||||
},
|
||||
'*.php': [() => 'make php-cs-fixer'],
|
||||
'*Controller.php': [() => 'make openapi', () => 'git add openapi.json'],
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
{".":"0.8.0"}
|
||||
{".":"0.12.0"}
|
||||
|
||||
121
CHANGELOG.md
121
CHANGELOG.md
@@ -1,5 +1,126 @@
|
||||
# Changelog
|
||||
|
||||
## [0.12.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.11.1...v0.12.0) (2025-11-25)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add optional guest access with role-based permissions ([d2baf2a](https://github.com/chenasraf/nextcloud-forum/commit/d2baf2a81338ee8db6316c8bffc9c5b78a312ac6))
|
||||
* allow moving thread to a different category (admin/moderator) ([c807929](https://github.com/chenasraf/nextcloud-forum/commit/c807929c94089f9e0c66714a948e0387a08002ed))
|
||||
* allow updating thread title (author/admin/moderator) ([a85dbae](https://github.com/chenasraf/nextcloud-forum/commit/a85dbaed91b3589f1fb2f8ef195bf3cf40936e8c))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* default sort order for new categories ([c38a929](https://github.com/chenasraf/nextcloud-forum/commit/c38a929a366a78062268a3c7cca2c68ff7e38dda))
|
||||
* don't show loader when reordering categories/headers ([b6ce286](https://github.com/chenasraf/nextcloud-forum/commit/b6ce286c412f0146f5530ad29abf6012e1481bf3))
|
||||
* **l10n:** Update translations from Transifex ([33e6055](https://github.com/chenasraf/nextcloud-forum/commit/33e6055d47aa56a85414d5ad66cc6a2cf986752d))
|
||||
* lock slug input when editing category ([4728875](https://github.com/chenasraf/nextcloud-forum/commit/47288753a2cb9a5e42cc5a6a18d6e050d53964d5))
|
||||
* use same header create/edit dialog everywhere ([04d1d1c](https://github.com/chenasraf/nextcloud-forum/commit/04d1d1c65885a7b5d668d69455f5e457ffb4f1a2))
|
||||
|
||||
## [0.11.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.11.0...v0.11.1) (2025-11-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **CSP:** set CSP to allow all images to load in the forum ([9029882](https://github.com/chenasraf/nextcloud-forum/commit/9029882fdb1c8da2e527acfee2a13a3e38c66244))
|
||||
|
||||
## [0.11.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.10.1...v0.11.0) (2025-11-24)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **AdminRoleEdit:** allow checking/unchecking multiple categories ([8b973c3](https://github.com/chenasraf/nextcloud-forum/commit/8b973c3ad5349bb91b4039b86edd4416f136fc7b))
|
||||
* **Category Admin:** refresh categories/headers in sidebar afer modifying ([3ed74ee](https://github.com/chenasraf/nextcloud-forum/commit/3ed74eea8f85d062e8a95749d8b487ee42066c2f))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **AdminDashboard:** improve contributors sorting ([248c875](https://github.com/chenasraf/nextcloud-forum/commit/248c8753198b801c71ad94ede35d06b0bbd4aed1))
|
||||
* **Categories:** admin should always see all categories ([f4530ae](https://github.com/chenasraf/nextcloud-forum/commit/f4530ae2a3c01ba2d1f36c3c9e32ead2502580d0))
|
||||
* **l10n:** translation source string issues ([843f81a](https://github.com/chenasraf/nextcloud-forum/commit/843f81a08725b3109067b6f1f3ad2f538209ee26))
|
||||
* **l10n:** unify same messages with different placeholders ([8476b77](https://github.com/chenasraf/nextcloud-forum/commit/8476b772e305c9893b4d796c0dc3e9df1151fe09))
|
||||
* **l10n:** unusable pluralization ([3c7236f](https://github.com/chenasraf/nextcloud-forum/commit/3c7236f956736e5e249e72344ed2c973a6e65540))
|
||||
* **l10n:** Update translations from Transifex ([c43a0a0](https://github.com/chenasraf/nextcloud-forum/commit/c43a0a0f893378eb430e94209396d51f7c7fd830))
|
||||
* **l10n:** Update translations from Transifex ([fcf40da](https://github.com/chenasraf/nextcloud-forum/commit/fcf40da4aaed59d0a6d6ee58f039c73f4c5eba98))
|
||||
* **l10n:** Update translations from Transifex ([f0f06ce](https://github.com/chenasraf/nextcloud-forum/commit/f0f06cef258fc658e935d3375bbe92d8000b6d33))
|
||||
|
||||
## [0.10.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.10.0...v0.10.1) (2025-11-23)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **Seed:** don't seed admin category permission ([09f6ea4](https://github.com/chenasraf/nextcloud-forum/commit/09f6ea4a3b56bdf723f7b90a204a2450d1b4137e))
|
||||
* **Seed:** improve seed idempotency ([e795ec2](https://github.com/chenasraf/nextcloud-forum/commit/e795ec266736f413c71ebd3f9f3c9081e86cf082))
|
||||
|
||||
## [0.10.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.9.2...v0.10.0) (2025-11-23)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **Roles:** admin always has full permissions ([c9a76e5](https://github.com/chenasraf/nextcloud-forum/commit/c9a76e5cd97df0c82bb79825799eeba7ce66086e))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **AdminDashboard:** exclude thread posts from post count ([53875b1](https://github.com/chenasraf/nextcloud-forum/commit/53875b1eefaddcbe8c4024c98834e44c3a01aeb0))
|
||||
* modal actions spacing ([0f9d5ea](https://github.com/chenasraf/nextcloud-forum/commit/0f9d5ea9a5a99dda9bb351ed98d91ae880ddf64f))
|
||||
* **Roles:** prevent deleting system roles on backend ([328b37b](https://github.com/chenasraf/nextcloud-forum/commit/328b37be6eec2b0001517ef74779565457de7213))
|
||||
* **UserEventListener:** add User role to newly created users ([c7f84d4](https://github.com/chenasraf/nextcloud-forum/commit/c7f84d4a186ab7832d5fa96c2143bef30ddf3a85))
|
||||
|
||||
## [0.9.2](https://github.com/chenasraf/nextcloud-forum/compare/v0.9.1...v0.9.2) (2025-11-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **l10n:** bbcode help dialog strings ([d6c6626](https://github.com/chenasraf/nextcloud-forum/commit/d6c6626badf90636aae4f59fbe4765a5f786f5ab))
|
||||
* **l10n:** plural tokens + text alignment strings ([8408402](https://github.com/chenasraf/nextcloud-forum/commit/8408402148c9935b50df1f75915cffba7d76b043))
|
||||
* **l10n:** update translation source strings ([3d113f1](https://github.com/chenasraf/nextcloud-forum/commit/3d113f1f31887b7849753d07712a548392f574d6))
|
||||
* post counts in threads/categories ([257a12d](https://github.com/chenasraf/nextcloud-forum/commit/257a12dfc43d7784d7e63ab79a8545d80022251e))
|
||||
* **PostController:** exclude first posts from post_count fields ([a66bcd4](https://github.com/chenasraf/nextcloud-forum/commit/a66bcd4612a1889624e608e9e0207d7e09fc32df))
|
||||
* **SeedHelper:** subscribe author to welcome thread ([b67813f](https://github.com/chenasraf/nextcloud-forum/commit/b67813fa34746de8f999b16e609c6ee7a9458e9b))
|
||||
|
||||
## [0.9.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.9.0...v0.9.1) (2025-11-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **l10n:** fix welcome post & bbcode example strings ([a3b0582](https://github.com/chenasraf/nextcloud-forum/commit/a3b0582d2cce2c22cd5070f3c335a732c25c5e67))
|
||||
|
||||
## [0.9.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.8.2...v0.9.0) (2025-11-21)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* 404 pages ([7c5bf4a](https://github.com/chenasraf/nextcloud-forum/commit/7c5bf4a82b88c3dc64604f73aa66b9742b0f2ee8))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **Notifications:** test-notifier command ([8ecddc0](https://github.com/chenasraf/nextcloud-forum/commit/8ecddc032f11eae72ba6a12447313d87b2d01570))
|
||||
* **RepairSeeds:** output logs ([4e867cd](https://github.com/chenasraf/nextcloud-forum/commit/4e867cdf0a91c9d246b87cd2c829a37bbbeefd56))
|
||||
|
||||
## [0.8.2](https://github.com/chenasraf/nextcloud-forum/compare/v0.8.1...v0.8.2) (2025-11-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **AdminCategoryList:** pluralization string ([53c1b98](https://github.com/chenasraf/nextcloud-forum/commit/53c1b980a960cf9a27cee68b4da6d4560b426b9c))
|
||||
* initial seed ([749c30c](https://github.com/chenasraf/nextcloud-forum/commit/749c30c2f276813e19dfa91a81bc12573429c784))
|
||||
* **l10n:** update bbcode-including strings ([49c1201](https://github.com/chenasraf/nextcloud-forum/commit/49c12011fa4e5dd08f905b3d921f434b9adfc244))
|
||||
* **l10n:** Update pluralization strings ([d537244](https://github.com/chenasraf/nextcloud-forum/commit/d53724407bd709993c6036b27fd17ced5c82d926))
|
||||
* **l10n:** update string with literal name ([83b7c33](https://github.com/chenasraf/nextcloud-forum/commit/83b7c3392e8c328391430c3b1945a77ecc6b1a33))
|
||||
* **l10n:** Update translations from Transifex ([387be93](https://github.com/chenasraf/nextcloud-forum/commit/387be93d3ad5c744fcaca7bb6073293431727e35))
|
||||
* **Seeds:** log seed statuses in console ([d9cb3a6](https://github.com/chenasraf/nextcloud-forum/commit/d9cb3a6d9b715fe59f383323c3ab30424b25b430))
|
||||
* **Seeds:** update seed output & add repair command ([e2fd638](https://github.com/chenasraf/nextcloud-forum/commit/e2fd6383d31609076981c38ccf9062a5d505cb19))
|
||||
|
||||
## [0.8.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.8.0...v0.8.1) (2025-11-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* migration ([c6d757b](https://github.com/chenasraf/nextcloud-forum/commit/c6d757bee606280061a3ba359d3137b95838f444))
|
||||
|
||||
## [0.8.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.7.0...v0.8.0) (2025-11-21)
|
||||
|
||||
|
||||
|
||||
39
Makefile
39
Makefile
@@ -42,6 +42,10 @@ composer_bin := $(if $(composer),$(composer),php $(composer_phar))
|
||||
pnpm_wrapper=$(build_tools_directory)/pnpm.sh
|
||||
pnpm_cmd=$(if $(pnpm),$(pnpm),$(pnpm_wrapper))
|
||||
|
||||
# Optional: Set path to Nextcloud installation for local testing
|
||||
# Can be overridden by environment variable: NEXTCLOUD_ROOT=/path make test
|
||||
NEXTCLOUD_ROOT ?=
|
||||
|
||||
# Default target: install deps & build JS (and PHP if composer.json exists)
|
||||
all: build
|
||||
|
||||
@@ -198,11 +202,38 @@ appstore:
|
||||
tar czf $(appstore_package_name).tar.gz $(app_name)
|
||||
|
||||
# test:
|
||||
# - Run PHP unit tests (standard + optional integration config)
|
||||
# - Run PHP unit tests locally with a configured Nextcloud installation
|
||||
# - Requires: A fully configured and installed Nextcloud instance with database
|
||||
# - Auto-detects Nextcloud installation or uses NEXTCLOUD_ROOT (Makefile var or env var)
|
||||
# - RECOMMENDED: Use 'make test-docker' instead (works in any environment)
|
||||
.PHONY: test
|
||||
test: composer
|
||||
$(CURDIR)/vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
|
||||
( test ! -f tests/phpunit.integration.xml ) || $(CURDIR)/vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
|
||||
@NC_ROOT="$(NEXTCLOUD_ROOT)"; \
|
||||
if [ -n "$$NC_ROOT" ]; then \
|
||||
NC_ROOT=$$(echo "$$NC_ROOT" | sed "s|^\\\~|$$HOME|" | sed "s|^~|$$HOME|"); \
|
||||
fi; \
|
||||
if [ -z "$$NC_ROOT" ]; then \
|
||||
if [ -d "$(CURDIR)/../../../tests/bootstrap.php" ]; then \
|
||||
NC_ROOT="$(CURDIR)/../../.."; \
|
||||
fi; \
|
||||
fi; \
|
||||
if [ -z "$$NC_ROOT" ]; then \
|
||||
echo "\x1b[33mCould not find Nextcloud installation.\x1b[0m"; \
|
||||
echo ""; \
|
||||
echo "Local testing requires a fully configured Nextcloud instance."; \
|
||||
echo ""; \
|
||||
echo "Options:"; \
|
||||
echo " 1. Use Docker tests (recommended): \x1b[32mmake test-docker\x1b[0m"; \
|
||||
echo " 2. Set NEXTCLOUD_ROOT in Makefile (line 47) or as env var:"; \
|
||||
echo " \x1b[32mNEXTCLOUD_ROOT=/path/to/nextcloud make test\x1b[0m"; \
|
||||
echo ""; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
echo "\x1b[32mUsing Nextcloud root: $$NC_ROOT\x1b[0m"; \
|
||||
NEXTCLOUD_ROOT="$$NC_ROOT" $(CURDIR)/vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml; \
|
||||
if [ -f tests/phpunit.integration.xml ]; then \
|
||||
NEXTCLOUD_ROOT="$$NC_ROOT" $(CURDIR)/vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml; \
|
||||
fi
|
||||
|
||||
# test-docker:
|
||||
# - Run PHP unit tests inside a Nextcloud Docker container
|
||||
@@ -234,7 +265,7 @@ test-docker:
|
||||
exit 1; \
|
||||
fi; \
|
||||
echo "\x1b[33mRunning tests in container $$CONTAINER_ID for app $$APP_DIR\x1b[0m"; \
|
||||
docker exec $$CONTAINER_ID phpunit -c apps-shared/$$APP_DIR/tests/phpunit.xml
|
||||
docker exec $$CONTAINER_ID phpunit -c apps-shared/$$APP_DIR/tests/phpunit.docker.xml
|
||||
|
||||
# lint:
|
||||
# - Lint JS via pnpm and PHP via composer script "lint"
|
||||
|
||||
128
README.md
128
README.md
@@ -5,7 +5,9 @@ SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
# Nextcloud Forum
|
||||
|
||||

|
||||
[](https://github.com/chenasraf/nextcloud-forum/releases/latest)
|
||||
[](https://github.com/chenasraf/nextcloud-forum/actions/workflows/phpunit-mysql.yml)
|
||||
[](https://github.com/chenasraf/nextcloud-forum/actions/workflows/phpunit-pgsql.yml)
|
||||
|
||||
A full-featured forum application for Nextcloud, allowing users to create discussion categories,
|
||||
threads, and posts within their Nextcloud instance.
|
||||
@@ -16,8 +18,8 @@ threads, and posts within their Nextcloud instance.
|
||||
|
||||
**This app is in early stages of development.** While functional, you may encounter bugs or
|
||||
incomplete features. Please report any issues on
|
||||
[GitHub](https://github.com/chenasraf/nextcloud-forum/issues) and consider backing up your data
|
||||
regularly.
|
||||
[GitHub](https://github.com/chenasraf/nextcloud-forum/issues/new/choose) and consider backing up
|
||||
your data regularly.
|
||||
|
||||
## Features
|
||||
|
||||
@@ -27,10 +29,16 @@ regularly.
|
||||
- **File Attachments**: Attach files from Nextcloud to posts with secure permission-based access
|
||||
- **Reactions**: React to posts with emoji reactions
|
||||
- **User Roles & Permissions**: Fine-grained permission system for moderators and administrators
|
||||
- **Guest Access**: Optional public access for unauthenticated users with configurable permissions
|
||||
- **Read Markers**: Track unread posts and threads
|
||||
- **Search**: Full-text search across threads and posts
|
||||
- **Modern UI**: Built with Vue 3 and Nextcloud Vue components
|
||||
|
||||
## Documentation
|
||||
|
||||
For detailed usage instructions, administration guides, and more, visit the
|
||||
[Forum Wiki](https://github.com/chenasraf/nextcloud-forum/wiki).
|
||||
|
||||
## Installation
|
||||
|
||||
### From the Nextcloud App Store
|
||||
@@ -53,6 +61,16 @@ tar xfv forum-vX.X.X.tar.gz
|
||||
php occ app:enable forum
|
||||
```
|
||||
|
||||
## Administration
|
||||
|
||||
### OCC Commands
|
||||
|
||||
The Forum app provides several OCC commands for administration and maintenance, including commands
|
||||
for repairing installations, rebuilding statistics, and managing user roles.
|
||||
|
||||
For a complete list of available commands, usage examples, and detailed documentation, see the
|
||||
[OCC Commands Wiki page](https://github.com/chenasraf/nextcloud-forum/wiki/OCC-Commands).
|
||||
|
||||
## Contributing
|
||||
|
||||
I am developing this app on my free time, so any support, whether code, issues, or just stars is
|
||||
@@ -88,55 +106,17 @@ Most development processes are automated:
|
||||
While automation handles most workflows, the following commands are available for local development
|
||||
and debugging:
|
||||
|
||||
#### Build the App
|
||||
|
||||
```bash
|
||||
make
|
||||
```
|
||||
|
||||
Installs dependencies and compiles frontend/backend assets.
|
||||
|
||||
#### Run Tests
|
||||
|
||||
```bash
|
||||
make test
|
||||
```
|
||||
|
||||
Runs unit and integration tests (if available).
|
||||
|
||||
#### Format & Lint
|
||||
|
||||
```bash
|
||||
make format # Auto-fix code style
|
||||
make lint # Check code quality
|
||||
```
|
||||
|
||||
#### Generate OpenAPI Docs
|
||||
|
||||
```bash
|
||||
make openapi
|
||||
```
|
||||
|
||||
Output is saved to `build/openapi/openapi.json`.
|
||||
|
||||
#### Packaging for Release
|
||||
|
||||
```bash
|
||||
make appstore # Production build for Nextcloud app store
|
||||
make source # Full source package
|
||||
make distclean # Clean build artifacts and dependencies
|
||||
```
|
||||
|
||||
#### Sign Releases
|
||||
|
||||
After uploading the archive to GitHub:
|
||||
|
||||
```bash
|
||||
make sign
|
||||
```
|
||||
|
||||
Downloads the `.tar.gz` release, verifies it, and prints a SHA-512 signature using your key at
|
||||
`~/.nextcloud/certificates/forum.key`.
|
||||
| Command | Description | Notes |
|
||||
| ---------------- | ---------------------------------------------------------- | ----------------------------------------------------------------------------------- |
|
||||
| `make` | Installs dependencies and compiles frontend/backend assets | |
|
||||
| `make test` | Runs unit and integration tests | |
|
||||
| `make format` | Auto-fix code style | |
|
||||
| `make lint` | Check code quality | |
|
||||
| `make openapi` | Generate OpenAPI documentation | Output saved to `openapi.json` |
|
||||
| `make appstore` | Production build for Nextcloud app store | |
|
||||
| `make source` | Create full source package | |
|
||||
| `make distclean` | Clean build artifacts and dependencies | |
|
||||
| `make sign` | Sign release archive with SHA-512 signature | Run after uploading `.tar.gz` to GitHub. Uses `~/.nextcloud/certificates/forum.key` |
|
||||
|
||||
---
|
||||
|
||||
@@ -175,50 +155,6 @@ it for you. It also injects:
|
||||
|
||||
You don’t pass a name for migrations.
|
||||
|
||||
#### Examples
|
||||
|
||||
Create a Vue component:
|
||||
|
||||
```bash
|
||||
pnpm gen component UserListItem
|
||||
# → src/components/UserListItem.vue
|
||||
```
|
||||
|
||||
Create a Vue page:
|
||||
|
||||
```bash
|
||||
pnpm gen view Settings
|
||||
# → src/views/Settings.vue
|
||||
```
|
||||
|
||||
Create an API controller:
|
||||
|
||||
```bash
|
||||
pnpm gen api Users
|
||||
# → lib/Controller/UsersController.php
|
||||
```
|
||||
|
||||
Create a service:
|
||||
|
||||
```bash
|
||||
pnpm gen service MyService
|
||||
# → lib/Service/MyService.php
|
||||
```
|
||||
|
||||
Create a queued job:
|
||||
|
||||
```bash
|
||||
pnpm gen task-queued UpdateUsers
|
||||
# → lib/Cron/UpdateUsers.php
|
||||
```
|
||||
|
||||
Create a migration (no name):
|
||||
|
||||
```bash
|
||||
pnpm gen migration
|
||||
# → lib/Migration/Version{NEXT}.php (with injected {version} and {dt})
|
||||
```
|
||||
|
||||
## Resources
|
||||
|
||||
### Nextcloud Development
|
||||
|
||||
@@ -8,12 +8,12 @@
|
||||
<name>Forum</name>
|
||||
<summary>A community-driven forum built right into your Nextcloud instance</summary>
|
||||
<description><![CDATA[
|
||||
Create discussions, share ideas, and collaborate with your community directly in Nextcloud.
|
||||
Create discussions, share ideas and collaborate with your community directly in Nextcloud.
|
||||
|
||||
**⚠️ Early Development Notice:**
|
||||
This 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.
|
||||
|
||||
**Key Features:**
|
||||
**Key features:**
|
||||
- **Thread-based Discussions** - Create and reply to organized discussion threads
|
||||
- **Category Organization** - Structure your forum with customizable categories and headers
|
||||
- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more
|
||||
@@ -23,10 +23,11 @@ This app is in early stages of development. While functional, you may encounter
|
||||
- **Search** - Find discussions quickly with built-in search
|
||||
- **User Profiles** - View user post history and statistics
|
||||
- **Role-Based Permissions** - Control access and moderation with flexible roles
|
||||
- **Admin Tools** - Manage categories, roles, BBCodes, and forum settings
|
||||
- **Moderation Tools** - Pin, lock, and manage threads and posts
|
||||
- **Guest Access**: Optional public access for unauthenticated users with configurable permissions
|
||||
- **Admin Tools** - Manage categories, roles, BBCodes and forum settings
|
||||
- **Moderation Tools** - Pin, lock and manage threads and posts
|
||||
|
||||
**Perfect For:**
|
||||
**Perfect for:**
|
||||
- Team discussions and collaboration
|
||||
- Community forums
|
||||
- Support channels
|
||||
@@ -36,13 +37,13 @@ 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.8.0</version>
|
||||
<version>0.12.0</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="contact@casraf.dev" homepage="https://casraf.dev">Chen Asraf</author>
|
||||
<namespace>Forum</namespace>
|
||||
<documentation>
|
||||
<user>https://github.com/chenasraf/nextcloud-forum/blob/master/README.md</user>
|
||||
<admin>https://github.com/chenasraf/nextcloud-forum#installation</admin>
|
||||
<user>https://github.com/chenasraf/nextcloud-forum/wiki/Users</user>
|
||||
<admin>https://github.com/chenasraf/nextcloud-forum/wiki/Administration</admin>
|
||||
<developer>https://github.com/chenasraf/nextcloud-forum#development</developer>
|
||||
</documentation>
|
||||
<category>social</category>
|
||||
@@ -59,11 +60,12 @@ The forum integrates seamlessly with your Nextcloud instance, using your existin
|
||||
<job>OCA\Forum\Cron\RebuildStatsTask</job>
|
||||
</background-jobs>
|
||||
<commands>
|
||||
<command>OCA\Forum\Command\TestNotifier</command>
|
||||
<command>OCA\Forum\Command\RebuildUserStats</command>
|
||||
<command>OCA\Forum\Command\RebuildThreadStats</command>
|
||||
<command>OCA\Forum\Command\RebuildAllStats</command>
|
||||
<command>OCA\Forum\Command\RebuildThreadStats</command>
|
||||
<command>OCA\Forum\Command\RebuildUserStats</command>
|
||||
<command>OCA\Forum\Command\RepairSeeds</command>
|
||||
<command>OCA\Forum\Command\SetRole</command>
|
||||
<command>OCA\Forum\Command\TestNotifier</command>
|
||||
</commands>
|
||||
<navigations>
|
||||
<navigation role="all">
|
||||
|
||||
3039
composer.lock
generated
Normal file
3039
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
31
l10n/af.js
Normal file
31
l10n/af.js
Normal file
@@ -0,0 +1,31 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Admin",
|
||||
"User" : "Gebruiker",
|
||||
"Search" : "Soek",
|
||||
"Home" : "Tuis",
|
||||
"Users" : "Gebruikers",
|
||||
"Collapse" : "Vou In",
|
||||
"Page not found" : "Blad nie gevind nie",
|
||||
"Delete" : "Skrap",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Stoor",
|
||||
"Retry" : "Herprobeer",
|
||||
"Back to {category}" : "Terug na {category}",
|
||||
"by" : "deur",
|
||||
"Subscribe" : "Teken in",
|
||||
"Disable" : "Deaktiveer",
|
||||
"Description" : "Beskrywing",
|
||||
"Update" : "Werk by",
|
||||
"New" : "Nuut",
|
||||
"Settings saved" : "Instellings gestoor",
|
||||
"Reset" : "Herstel",
|
||||
"Category" : "Kategorie",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Aksies",
|
||||
"Active" : "Aktief",
|
||||
"Deleted" : "Geskrap"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
29
l10n/af.json
Normal file
29
l10n/af.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Admin",
|
||||
"User" : "Gebruiker",
|
||||
"Search" : "Soek",
|
||||
"Home" : "Tuis",
|
||||
"Users" : "Gebruikers",
|
||||
"Collapse" : "Vou In",
|
||||
"Page not found" : "Blad nie gevind nie",
|
||||
"Delete" : "Skrap",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Stoor",
|
||||
"Retry" : "Herprobeer",
|
||||
"Back to {category}" : "Terug na {category}",
|
||||
"by" : "deur",
|
||||
"Subscribe" : "Teken in",
|
||||
"Disable" : "Deaktiveer",
|
||||
"Description" : "Beskrywing",
|
||||
"Update" : "Werk by",
|
||||
"New" : "Nuut",
|
||||
"Settings saved" : "Instellings gestoor",
|
||||
"Reset" : "Herstel",
|
||||
"Category" : "Kategorie",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Aksies",
|
||||
"Active" : "Aktief",
|
||||
"Deleted" : "Geskrap"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
80
l10n/ar.js
Normal file
80
l10n/ar.js
Normal file
@@ -0,0 +1,80 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "المنتدى",
|
||||
"Admin" : "مدير",
|
||||
"Moderator" : "مشرف",
|
||||
"User" : "المُستخدِم",
|
||||
"General" : "عامٌّ",
|
||||
"Support" : "المساعدة",
|
||||
"Bold text" : "نص داكن",
|
||||
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
|
||||
"Deleted user" : "مستخدم محذوف",
|
||||
"Search" : "بحث",
|
||||
"Home" : "الرئيسية",
|
||||
"Dashboard" : "الرئيسية",
|
||||
"Users" : "المستخدمين",
|
||||
"Categories" : "التصنيفات",
|
||||
"Expand" : "توسيع",
|
||||
"Collapse" : "طوي",
|
||||
"Code" : "الرمز",
|
||||
"Quote" : "عرض الأسعار",
|
||||
"Font size" : "حجم الخط",
|
||||
"List" : "قائمة",
|
||||
"Insert emoji" : "أدخِل \"إيموجي\" emoji",
|
||||
"Page not found" : "الصفحة غير موجودة",
|
||||
"Back" : "عودة",
|
||||
"Edit" : "تحرير",
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "غير مقروء",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "حفظ",
|
||||
"React with {emoji}" : "تفاعل باستخدام {emoji}",
|
||||
"Uncategorized" : "غير مُصنّفة",
|
||||
"Views" : "مشاهدات",
|
||||
"Title" : "العنوان",
|
||||
"Refresh" : "إنعاش",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Retry" : "أعِدِ المحاولة",
|
||||
"Error" : "خطأ",
|
||||
"Searching …" : "يتم الآن البحث…",
|
||||
"No results found" : "لا توجد أي نتائج",
|
||||
"Back to {category}" : "عودة إلى {category}",
|
||||
"Reply" : "الرَّدّ",
|
||||
"by" : "من قِبَل",
|
||||
"Subscribe" : "إشترك",
|
||||
"Subscribed" : "مشترك",
|
||||
"Preferences" : "التفضيلات",
|
||||
"Notifications" : "الإشعارات",
|
||||
"Enable" : "تمكين",
|
||||
"Disable" : "تعطيل",
|
||||
"Description" : "الوصف",
|
||||
"Enabled" : "مُفعّل",
|
||||
"Update" : "تحديث",
|
||||
"Create" : "إنشاء",
|
||||
"Name" : "الاسم",
|
||||
"Sort order" : "ترتيب الفرز",
|
||||
"New" : "جديد",
|
||||
"Permissions" : "الصلاحيّات",
|
||||
"Move up" : "نقلٌ للأعلي",
|
||||
"Move down" : "نقلٌ للأسفل",
|
||||
"Last 7 days" : "آخر 7 أيام",
|
||||
"General settings" : "الإعدادات العامة",
|
||||
"Appearance" : "المظهر",
|
||||
"Settings saved" : "تمّ حفظ الإعدادات",
|
||||
"Failed to save settings" : "فشل في حفظ الإعدادات",
|
||||
"Reset" : "إعادة تعيين",
|
||||
"Category" : "التصنيف",
|
||||
"Allow" : "سماح",
|
||||
"ID" : "معرف ID",
|
||||
"Created" : "أُنشِئَ",
|
||||
"Actions" : "الإجراءات",
|
||||
"No description" : "بدون وصف",
|
||||
"User management" : "إدارة المستخدِمين",
|
||||
"Loading users …" : "تحميل المستخدِمين جارٍ ...",
|
||||
"No users found" : "لا يوجد مستخدمون",
|
||||
"Status" : "الحاله",
|
||||
"Active" : "نَشِط",
|
||||
"Deleted" : "محذوف"
|
||||
},
|
||||
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");
|
||||
78
l10n/ar.json
Normal file
78
l10n/ar.json
Normal file
@@ -0,0 +1,78 @@
|
||||
{ "translations": {
|
||||
"Forum" : "المنتدى",
|
||||
"Admin" : "مدير",
|
||||
"Moderator" : "مشرف",
|
||||
"User" : "المُستخدِم",
|
||||
"General" : "عامٌّ",
|
||||
"Support" : "المساعدة",
|
||||
"Bold text" : "نص داكن",
|
||||
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
|
||||
"Deleted user" : "مستخدم محذوف",
|
||||
"Search" : "بحث",
|
||||
"Home" : "الرئيسية",
|
||||
"Dashboard" : "الرئيسية",
|
||||
"Users" : "المستخدمين",
|
||||
"Categories" : "التصنيفات",
|
||||
"Expand" : "توسيع",
|
||||
"Collapse" : "طوي",
|
||||
"Code" : "الرمز",
|
||||
"Quote" : "عرض الأسعار",
|
||||
"Font size" : "حجم الخط",
|
||||
"List" : "قائمة",
|
||||
"Insert emoji" : "أدخِل \"إيموجي\" emoji",
|
||||
"Page not found" : "الصفحة غير موجودة",
|
||||
"Back" : "عودة",
|
||||
"Edit" : "تحرير",
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "غير مقروء",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "حفظ",
|
||||
"React with {emoji}" : "تفاعل باستخدام {emoji}",
|
||||
"Uncategorized" : "غير مُصنّفة",
|
||||
"Views" : "مشاهدات",
|
||||
"Title" : "العنوان",
|
||||
"Refresh" : "إنعاش",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Retry" : "أعِدِ المحاولة",
|
||||
"Error" : "خطأ",
|
||||
"Searching …" : "يتم الآن البحث…",
|
||||
"No results found" : "لا توجد أي نتائج",
|
||||
"Back to {category}" : "عودة إلى {category}",
|
||||
"Reply" : "الرَّدّ",
|
||||
"by" : "من قِبَل",
|
||||
"Subscribe" : "إشترك",
|
||||
"Subscribed" : "مشترك",
|
||||
"Preferences" : "التفضيلات",
|
||||
"Notifications" : "الإشعارات",
|
||||
"Enable" : "تمكين",
|
||||
"Disable" : "تعطيل",
|
||||
"Description" : "الوصف",
|
||||
"Enabled" : "مُفعّل",
|
||||
"Update" : "تحديث",
|
||||
"Create" : "إنشاء",
|
||||
"Name" : "الاسم",
|
||||
"Sort order" : "ترتيب الفرز",
|
||||
"New" : "جديد",
|
||||
"Permissions" : "الصلاحيّات",
|
||||
"Move up" : "نقلٌ للأعلي",
|
||||
"Move down" : "نقلٌ للأسفل",
|
||||
"Last 7 days" : "آخر 7 أيام",
|
||||
"General settings" : "الإعدادات العامة",
|
||||
"Appearance" : "المظهر",
|
||||
"Settings saved" : "تمّ حفظ الإعدادات",
|
||||
"Failed to save settings" : "فشل في حفظ الإعدادات",
|
||||
"Reset" : "إعادة تعيين",
|
||||
"Category" : "التصنيف",
|
||||
"Allow" : "سماح",
|
||||
"ID" : "معرف ID",
|
||||
"Created" : "أُنشِئَ",
|
||||
"Actions" : "الإجراءات",
|
||||
"No description" : "بدون وصف",
|
||||
"User management" : "إدارة المستخدِمين",
|
||||
"Loading users …" : "تحميل المستخدِمين جارٍ ...",
|
||||
"No users found" : "لا يوجد مستخدمون",
|
||||
"Status" : "الحاله",
|
||||
"Active" : "نَشِط",
|
||||
"Deleted" : "محذوف"
|
||||
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
|
||||
}
|
||||
73
l10n/ast.js
Normal file
73
l10n/ast.js
Normal file
@@ -0,0 +1,73 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foru",
|
||||
"Admin" : "Alministración",
|
||||
"Moderator" : "Llendador",
|
||||
"User" : "Usuariu",
|
||||
"General" : "Xeneral",
|
||||
"Support" : "Sofitu",
|
||||
"Bold text" : "Testu en negrina",
|
||||
"Underlined text" : "Testu solliniáu",
|
||||
"Deleted user" : "Usuariu desaniciáu",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Aniciu",
|
||||
"Dashboard" : "Panel",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categories",
|
||||
"Expand" : "Espander",
|
||||
"Collapse" : "Contrayer",
|
||||
"Code" : "Códigu",
|
||||
"List" : "Llista",
|
||||
"Page not found" : "Nun s'atopó la páxina",
|
||||
"Back" : "Atrás",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Desaniciar",
|
||||
"Unread" : "Ensin lleer",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Ensin categoría",
|
||||
"Views" : "Vistes",
|
||||
"Title" : "Títulu",
|
||||
"Refresh" : "Anovar",
|
||||
"Loading …" : "Cargando…",
|
||||
"Retry" : "Retentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando…",
|
||||
"No results found" : "Nun s'atopó nengún resultáu",
|
||||
"Back to {category}" : "Volver a «{category}»",
|
||||
"Reply" : "Responder",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Soscribise",
|
||||
"Preferences" : "Preferencies",
|
||||
"Notifications" : "Avisos",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Desactivar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Activóse",
|
||||
"Update" : "Anovar",
|
||||
"Create" : "Crear",
|
||||
"Name" : "Nome",
|
||||
"New" : "Nuevu",
|
||||
"Permissions" : "Permisos",
|
||||
"Move up" : "Xubir",
|
||||
"Move down" : "Baxar",
|
||||
"Last 7 days" : "Los últimos 7 díes",
|
||||
"All time" : "Tol tiempu",
|
||||
"General settings" : "Configuración xeneral",
|
||||
"Appearance" : "Aspeutu",
|
||||
"Settings saved" : "Guardóse la configuración",
|
||||
"Failed to save settings" : "Nun se pue guardar la configuración",
|
||||
"Reset" : "Reafitar",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Aiciones",
|
||||
"User management" : "Xestión d'usuarios",
|
||||
"Loading users …" : "Cargando los usuarios…",
|
||||
"No users found" : "Nun s'atopó nengún usuariu",
|
||||
"Status" : "Estáu",
|
||||
"Active" : "Activa",
|
||||
"Deleted" : "Desanicióse"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
71
l10n/ast.json
Normal file
71
l10n/ast.json
Normal file
@@ -0,0 +1,71 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foru",
|
||||
"Admin" : "Alministración",
|
||||
"Moderator" : "Llendador",
|
||||
"User" : "Usuariu",
|
||||
"General" : "Xeneral",
|
||||
"Support" : "Sofitu",
|
||||
"Bold text" : "Testu en negrina",
|
||||
"Underlined text" : "Testu solliniáu",
|
||||
"Deleted user" : "Usuariu desaniciáu",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Aniciu",
|
||||
"Dashboard" : "Panel",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categories",
|
||||
"Expand" : "Espander",
|
||||
"Collapse" : "Contrayer",
|
||||
"Code" : "Códigu",
|
||||
"List" : "Llista",
|
||||
"Page not found" : "Nun s'atopó la páxina",
|
||||
"Back" : "Atrás",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Desaniciar",
|
||||
"Unread" : "Ensin lleer",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Ensin categoría",
|
||||
"Views" : "Vistes",
|
||||
"Title" : "Títulu",
|
||||
"Refresh" : "Anovar",
|
||||
"Loading …" : "Cargando…",
|
||||
"Retry" : "Retentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando…",
|
||||
"No results found" : "Nun s'atopó nengún resultáu",
|
||||
"Back to {category}" : "Volver a «{category}»",
|
||||
"Reply" : "Responder",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Soscribise",
|
||||
"Preferences" : "Preferencies",
|
||||
"Notifications" : "Avisos",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Desactivar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Activóse",
|
||||
"Update" : "Anovar",
|
||||
"Create" : "Crear",
|
||||
"Name" : "Nome",
|
||||
"New" : "Nuevu",
|
||||
"Permissions" : "Permisos",
|
||||
"Move up" : "Xubir",
|
||||
"Move down" : "Baxar",
|
||||
"Last 7 days" : "Los últimos 7 díes",
|
||||
"All time" : "Tol tiempu",
|
||||
"General settings" : "Configuración xeneral",
|
||||
"Appearance" : "Aspeutu",
|
||||
"Settings saved" : "Guardóse la configuración",
|
||||
"Failed to save settings" : "Nun se pue guardar la configuración",
|
||||
"Reset" : "Reafitar",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Aiciones",
|
||||
"User management" : "Xestión d'usuarios",
|
||||
"Loading users …" : "Cargando los usuarios…",
|
||||
"No users found" : "Nun s'atopó nengún usuariu",
|
||||
"Status" : "Estáu",
|
||||
"Active" : "Activa",
|
||||
"Deleted" : "Desanicióse"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
35
l10n/az.js
Normal file
35
l10n/az.js
Normal file
@@ -0,0 +1,35 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "İnzibatçı",
|
||||
"User" : "User",
|
||||
"General" : "Ümumi",
|
||||
"Search" : "Axtarış",
|
||||
"Home" : "Ev",
|
||||
"Users" : "İstifadəçilər",
|
||||
"Categories" : "Kateqoriyalar",
|
||||
"Collapse" : "Yığılma",
|
||||
"Back" : "Geri",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Delete" : "Sil",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Saxla",
|
||||
"Refresh" : "Yenilə",
|
||||
"Error" : "Səhv",
|
||||
"by" : "onunla",
|
||||
"Subscribe" : "Abunə",
|
||||
"Disable" : "Dayandır",
|
||||
"Description" : "Açıqlanma",
|
||||
"Enabled" : "İşə salınıb",
|
||||
"Update" : "Yenilənmə",
|
||||
"Name" : "Ad",
|
||||
"New" : "Yeni",
|
||||
"Settings saved" : "Parametrlər yaddaşa verildi",
|
||||
"Reset" : "Sıfırla",
|
||||
"Category" : "Kateqoriya",
|
||||
"Actions" : "İşlər",
|
||||
"Status" : "Status",
|
||||
"Deleted" : "Silinib"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
33
l10n/az.json
Normal file
33
l10n/az.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "İnzibatçı",
|
||||
"User" : "User",
|
||||
"General" : "Ümumi",
|
||||
"Search" : "Axtarış",
|
||||
"Home" : "Ev",
|
||||
"Users" : "İstifadəçilər",
|
||||
"Categories" : "Kateqoriyalar",
|
||||
"Collapse" : "Yığılma",
|
||||
"Back" : "Geri",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Delete" : "Sil",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Saxla",
|
||||
"Refresh" : "Yenilə",
|
||||
"Error" : "Səhv",
|
||||
"by" : "onunla",
|
||||
"Subscribe" : "Abunə",
|
||||
"Disable" : "Dayandır",
|
||||
"Description" : "Açıqlanma",
|
||||
"Enabled" : "İşə salınıb",
|
||||
"Update" : "Yenilənmə",
|
||||
"Name" : "Ad",
|
||||
"New" : "Yeni",
|
||||
"Settings saved" : "Parametrlər yaddaşa verildi",
|
||||
"Reset" : "Sıfırla",
|
||||
"Category" : "Kateqoriya",
|
||||
"Actions" : "İşlər",
|
||||
"Status" : "Status",
|
||||
"Deleted" : "Silinib"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
89
l10n/be.js
Normal file
89
l10n/be.js
Normal file
@@ -0,0 +1,89 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Форум",
|
||||
"Welcome to the forum!" : "Вітаем на форуме!",
|
||||
"Admin" : "Адміністратар",
|
||||
"Moderator" : "Мадэратар",
|
||||
"User" : "Карыстальнік",
|
||||
"General" : "Агульныя",
|
||||
"Support" : "Падтрымка",
|
||||
"Attachment" : "Далучэнне",
|
||||
"Welcome to Nextcloud Forums" : "Вітаем на Форумах Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Вітаем на Форумах Nextcloud!",
|
||||
"Bold text" : "Тоўсты тэкст",
|
||||
"Italic text" : "Тэкст курсівам",
|
||||
"Underlined text" : "Падкрэслены тэкст",
|
||||
"Deleted user" : "Выдалены карыстальнік",
|
||||
"Search" : "Пошук",
|
||||
"Home" : "Дадому",
|
||||
"Dashboard" : "Панэль кіравання",
|
||||
"Users" : "Карыстальнікі",
|
||||
"Roles" : "Ролі",
|
||||
"Categories" : "Катэгорыі",
|
||||
"Expand" : "Разгарнуць",
|
||||
"Collapse" : "Згарнуць",
|
||||
"Code" : "Код",
|
||||
"Font size" : "Памер шрыфта",
|
||||
"Font color" : "Колер шрыфта",
|
||||
"Align left" : "Выраўнаваць па левым краі",
|
||||
"Align center" : "Выраўнаваць па цэнтры",
|
||||
"Align right" : "Выраўнаваць па правым краі",
|
||||
"List" : "Спіс",
|
||||
"Example" : "Прыклад",
|
||||
"Insert emoji" : "Уставіць эмодзі",
|
||||
"_Post_::_Posts_" : ["Допіс","Допісы","Допісы","Допісы"],
|
||||
"No description available" : "Апісанне недаступна",
|
||||
"Page not found" : "Старонка не знойдзена",
|
||||
"Back" : "Назад",
|
||||
"Edit" : "Рэдагаваць",
|
||||
"Delete" : "Выдаліць",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Вы ўпэўнены, што хочаце выдаліць гэты допіс? Гэта дзеянне нельга адрабіць.",
|
||||
"Unread" : "Непрачытанае",
|
||||
"Cancel" : "Скасаваць",
|
||||
"Save" : "Захаваць",
|
||||
"Add reaction" : "Дадаць рэакцыю",
|
||||
"React with {emoji}" : "Адрэагаваць з {emoji}",
|
||||
"_%n post_::_%n posts_" : ["%n допіс","%n допісы","%n допісаў","%n допісаў"],
|
||||
"Replies" : "Адказы",
|
||||
"Title" : "Загаловак",
|
||||
"Refresh" : "Абнавіць",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Retry" : "Паўтарыць спробу",
|
||||
"In {category}" : "У {category}",
|
||||
"Error" : "Памылка",
|
||||
"First post" : "Першы допіс",
|
||||
"Searching …" : "Пошук …",
|
||||
"No results found" : "Вынікаў не знойдзена",
|
||||
"Back to {category}" : "Назад да {category}",
|
||||
"Reply" : "Адказаць",
|
||||
"Notifications" : "Апавяшчэнні",
|
||||
"Enable" : "Уключыць",
|
||||
"Disable" : "Адключыць",
|
||||
"Tag" : "Тэг",
|
||||
"Description" : "Апісанне",
|
||||
"Enabled" : "Уключаны",
|
||||
"Update" : "Абнавіць",
|
||||
"Create" : "Ствараць",
|
||||
"Name" : "Назва",
|
||||
"Enter category name" : "Увядзіце назву катэгорыі",
|
||||
"New" : "Новы",
|
||||
"Permissions" : "Дазволы",
|
||||
"Move up" : "Перамясціць уверх",
|
||||
"Move down" : "Перамясціць уніз",
|
||||
"Last 7 days" : "Апошнія 7 дзён",
|
||||
"General settings" : "Агульныя налады",
|
||||
"Appearance" : "Знешні выгляд",
|
||||
"Settings saved" : "Налады захаваны",
|
||||
"Failed to save settings" : "Не ўдалося захаваць налады",
|
||||
"Reset" : "Скінуць",
|
||||
"Category" : "Катэгорыя",
|
||||
"Allow" : "Дазволіць",
|
||||
"ID" : "Ідэнтыфікатар",
|
||||
"Actions" : "Дзеянні",
|
||||
"Posts" : "Допісы",
|
||||
"Status" : "Статус",
|
||||
"Active" : "Актыўны",
|
||||
"Deleted" : "Выдалены"
|
||||
},
|
||||
"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);");
|
||||
87
l10n/be.json
Normal file
87
l10n/be.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Форум",
|
||||
"Welcome to the forum!" : "Вітаем на форуме!",
|
||||
"Admin" : "Адміністратар",
|
||||
"Moderator" : "Мадэратар",
|
||||
"User" : "Карыстальнік",
|
||||
"General" : "Агульныя",
|
||||
"Support" : "Падтрымка",
|
||||
"Attachment" : "Далучэнне",
|
||||
"Welcome to Nextcloud Forums" : "Вітаем на Форумах Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Вітаем на Форумах Nextcloud!",
|
||||
"Bold text" : "Тоўсты тэкст",
|
||||
"Italic text" : "Тэкст курсівам",
|
||||
"Underlined text" : "Падкрэслены тэкст",
|
||||
"Deleted user" : "Выдалены карыстальнік",
|
||||
"Search" : "Пошук",
|
||||
"Home" : "Дадому",
|
||||
"Dashboard" : "Панэль кіравання",
|
||||
"Users" : "Карыстальнікі",
|
||||
"Roles" : "Ролі",
|
||||
"Categories" : "Катэгорыі",
|
||||
"Expand" : "Разгарнуць",
|
||||
"Collapse" : "Згарнуць",
|
||||
"Code" : "Код",
|
||||
"Font size" : "Памер шрыфта",
|
||||
"Font color" : "Колер шрыфта",
|
||||
"Align left" : "Выраўнаваць па левым краі",
|
||||
"Align center" : "Выраўнаваць па цэнтры",
|
||||
"Align right" : "Выраўнаваць па правым краі",
|
||||
"List" : "Спіс",
|
||||
"Example" : "Прыклад",
|
||||
"Insert emoji" : "Уставіць эмодзі",
|
||||
"_Post_::_Posts_" : ["Допіс","Допісы","Допісы","Допісы"],
|
||||
"No description available" : "Апісанне недаступна",
|
||||
"Page not found" : "Старонка не знойдзена",
|
||||
"Back" : "Назад",
|
||||
"Edit" : "Рэдагаваць",
|
||||
"Delete" : "Выдаліць",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Вы ўпэўнены, што хочаце выдаліць гэты допіс? Гэта дзеянне нельга адрабіць.",
|
||||
"Unread" : "Непрачытанае",
|
||||
"Cancel" : "Скасаваць",
|
||||
"Save" : "Захаваць",
|
||||
"Add reaction" : "Дадаць рэакцыю",
|
||||
"React with {emoji}" : "Адрэагаваць з {emoji}",
|
||||
"_%n post_::_%n posts_" : ["%n допіс","%n допісы","%n допісаў","%n допісаў"],
|
||||
"Replies" : "Адказы",
|
||||
"Title" : "Загаловак",
|
||||
"Refresh" : "Абнавіць",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Retry" : "Паўтарыць спробу",
|
||||
"In {category}" : "У {category}",
|
||||
"Error" : "Памылка",
|
||||
"First post" : "Першы допіс",
|
||||
"Searching …" : "Пошук …",
|
||||
"No results found" : "Вынікаў не знойдзена",
|
||||
"Back to {category}" : "Назад да {category}",
|
||||
"Reply" : "Адказаць",
|
||||
"Notifications" : "Апавяшчэнні",
|
||||
"Enable" : "Уключыць",
|
||||
"Disable" : "Адключыць",
|
||||
"Tag" : "Тэг",
|
||||
"Description" : "Апісанне",
|
||||
"Enabled" : "Уключаны",
|
||||
"Update" : "Абнавіць",
|
||||
"Create" : "Ствараць",
|
||||
"Name" : "Назва",
|
||||
"Enter category name" : "Увядзіце назву катэгорыі",
|
||||
"New" : "Новы",
|
||||
"Permissions" : "Дазволы",
|
||||
"Move up" : "Перамясціць уверх",
|
||||
"Move down" : "Перамясціць уніз",
|
||||
"Last 7 days" : "Апошнія 7 дзён",
|
||||
"General settings" : "Агульныя налады",
|
||||
"Appearance" : "Знешні выгляд",
|
||||
"Settings saved" : "Налады захаваны",
|
||||
"Failed to save settings" : "Не ўдалося захаваць налады",
|
||||
"Reset" : "Скінуць",
|
||||
"Category" : "Катэгорыя",
|
||||
"Allow" : "Дазволіць",
|
||||
"ID" : "Ідэнтыфікатар",
|
||||
"Actions" : "Дзеянні",
|
||||
"Posts" : "Допісы",
|
||||
"Status" : "Статус",
|
||||
"Active" : "Актыўны",
|
||||
"Deleted" : "Выдалены"
|
||||
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
|
||||
}
|
||||
77
l10n/bg.js
Normal file
77
l10n/bg.js
Normal file
@@ -0,0 +1,77 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Форум",
|
||||
"Admin" : "Админ",
|
||||
"User" : "Потребител",
|
||||
"General" : "Общи",
|
||||
"Support" : "Поддръжка",
|
||||
"Bold text" : "Удебелен текст",
|
||||
"Underlined text" : "Подчертан текст",
|
||||
"Deleted user" : "Изтрит потребител",
|
||||
"Search" : "Търсене",
|
||||
"Home" : "Начало",
|
||||
"Dashboard" : "Табло",
|
||||
"Categories" : "Категории",
|
||||
"Expand" : "Разгъване",
|
||||
"Collapse" : "Сгъване",
|
||||
"Code" : "Код",
|
||||
"Quote" : "Оферта",
|
||||
"Font size" : "Размер на шрифта",
|
||||
"List" : "Списък",
|
||||
"Insert emoji" : "Вмъкване на емотикон",
|
||||
"Page not found" : "Страницата не е намерена",
|
||||
"Back" : "Назад",
|
||||
"Edit" : "Промяна",
|
||||
"Delete" : "Изтриване",
|
||||
"Unread" : "Непрочетено",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Запиши",
|
||||
"React with {emoji}" : "Реагирайте с {emoji}",
|
||||
"Uncategorized" : "Некатегоризирани",
|
||||
"Views" : "Изгледи",
|
||||
"Title" : "Заглавие",
|
||||
"Refresh" : "Опресняване",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Retry" : "Опитай отново",
|
||||
"Error" : "Грешка",
|
||||
"Searching …" : "Търсене ...",
|
||||
"No results found" : "Няма намерени резултати",
|
||||
"Back to {category}" : "Обратно към {category}",
|
||||
"by" : "от",
|
||||
"Subscribe" : "Абониране",
|
||||
"Subscribed" : "Абониран",
|
||||
"Preferences" : "Предпочитания",
|
||||
"Notifications" : "Известия",
|
||||
"Enable" : "Включена",
|
||||
"Disable" : "Изключване",
|
||||
"Tag" : "Етикет",
|
||||
"Description" : "Описание",
|
||||
"Enabled" : "Включено",
|
||||
"Update" : "Обновяване",
|
||||
"Create" : "Създаване",
|
||||
"Name" : "Име",
|
||||
"Sort order" : "Сортиране на реда",
|
||||
"New" : "Нов",
|
||||
"Permissions" : "Права",
|
||||
"Move up" : "Преместване нагоре",
|
||||
"Move down" : "Преместване надолу",
|
||||
"Total users" : "Общо потребители",
|
||||
"Last 7 days" : "Последните 7 дни",
|
||||
"General settings" : "Общи настройки",
|
||||
"Appearance" : "Изглед",
|
||||
"Settings saved" : "Настройките са запазени",
|
||||
"Failed to save settings" : "Неуспешно запазване на настройките",
|
||||
"Reset" : "Възстановяване",
|
||||
"Category" : "Категория",
|
||||
"Allow" : "Да",
|
||||
"ID" : "ID /Идентификатор/",
|
||||
"Actions" : "Действия",
|
||||
"No description" : "Без описание",
|
||||
"No users found" : "Няма намерени потребители",
|
||||
"Joined" : "Присъединен",
|
||||
"Status" : "Състояние",
|
||||
"Active" : "Активен",
|
||||
"Deleted" : "Изтрито"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
75
l10n/bg.json
Normal file
75
l10n/bg.json
Normal file
@@ -0,0 +1,75 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Форум",
|
||||
"Admin" : "Админ",
|
||||
"User" : "Потребител",
|
||||
"General" : "Общи",
|
||||
"Support" : "Поддръжка",
|
||||
"Bold text" : "Удебелен текст",
|
||||
"Underlined text" : "Подчертан текст",
|
||||
"Deleted user" : "Изтрит потребител",
|
||||
"Search" : "Търсене",
|
||||
"Home" : "Начало",
|
||||
"Dashboard" : "Табло",
|
||||
"Categories" : "Категории",
|
||||
"Expand" : "Разгъване",
|
||||
"Collapse" : "Сгъване",
|
||||
"Code" : "Код",
|
||||
"Quote" : "Оферта",
|
||||
"Font size" : "Размер на шрифта",
|
||||
"List" : "Списък",
|
||||
"Insert emoji" : "Вмъкване на емотикон",
|
||||
"Page not found" : "Страницата не е намерена",
|
||||
"Back" : "Назад",
|
||||
"Edit" : "Промяна",
|
||||
"Delete" : "Изтриване",
|
||||
"Unread" : "Непрочетено",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Запиши",
|
||||
"React with {emoji}" : "Реагирайте с {emoji}",
|
||||
"Uncategorized" : "Некатегоризирани",
|
||||
"Views" : "Изгледи",
|
||||
"Title" : "Заглавие",
|
||||
"Refresh" : "Опресняване",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Retry" : "Опитай отново",
|
||||
"Error" : "Грешка",
|
||||
"Searching …" : "Търсене ...",
|
||||
"No results found" : "Няма намерени резултати",
|
||||
"Back to {category}" : "Обратно към {category}",
|
||||
"by" : "от",
|
||||
"Subscribe" : "Абониране",
|
||||
"Subscribed" : "Абониран",
|
||||
"Preferences" : "Предпочитания",
|
||||
"Notifications" : "Известия",
|
||||
"Enable" : "Включена",
|
||||
"Disable" : "Изключване",
|
||||
"Tag" : "Етикет",
|
||||
"Description" : "Описание",
|
||||
"Enabled" : "Включено",
|
||||
"Update" : "Обновяване",
|
||||
"Create" : "Създаване",
|
||||
"Name" : "Име",
|
||||
"Sort order" : "Сортиране на реда",
|
||||
"New" : "Нов",
|
||||
"Permissions" : "Права",
|
||||
"Move up" : "Преместване нагоре",
|
||||
"Move down" : "Преместване надолу",
|
||||
"Total users" : "Общо потребители",
|
||||
"Last 7 days" : "Последните 7 дни",
|
||||
"General settings" : "Общи настройки",
|
||||
"Appearance" : "Изглед",
|
||||
"Settings saved" : "Настройките са запазени",
|
||||
"Failed to save settings" : "Неуспешно запазване на настройките",
|
||||
"Reset" : "Възстановяване",
|
||||
"Category" : "Категория",
|
||||
"Allow" : "Да",
|
||||
"ID" : "ID /Идентификатор/",
|
||||
"Actions" : "Действия",
|
||||
"No description" : "Без описание",
|
||||
"No users found" : "Няма намерени потребители",
|
||||
"Joined" : "Присъединен",
|
||||
"Status" : "Състояние",
|
||||
"Active" : "Активен",
|
||||
"Deleted" : "Изтрито"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
30
l10n/bn_BD.js
Normal file
30
l10n/bn_BD.js
Normal file
@@ -0,0 +1,30 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "ফোরাম",
|
||||
"Admin" : "প্রশাসন",
|
||||
"User" : "User",
|
||||
"General" : "সাধারণ",
|
||||
"Search" : "Search",
|
||||
"Home" : "বাড়ি",
|
||||
"Users" : "ব্যবহারকারী",
|
||||
"Collapse" : "ভাঙো",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Delete" : "মুছে",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"Refresh" : "নবোদ্যম",
|
||||
"Error" : "সমস্যা",
|
||||
"by" : "কর্তৃক",
|
||||
"Subscribe" : "গ্রাহক হোন",
|
||||
"Disable" : "নিষ্ক্রিয়",
|
||||
"Description" : "বিবরণ",
|
||||
"Enabled" : "কার্যকর",
|
||||
"Update" : "পরিবর্ধন",
|
||||
"Name" : "নাম",
|
||||
"New" : "নতুন",
|
||||
"Reset" : "পূণঃনির্ধানণ",
|
||||
"Actions" : "পদক্ষেপসমূহ",
|
||||
"Deleted" : "মুছে ফেলা"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
28
l10n/bn_BD.json
Normal file
28
l10n/bn_BD.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{ "translations": {
|
||||
"Forum" : "ফোরাম",
|
||||
"Admin" : "প্রশাসন",
|
||||
"User" : "User",
|
||||
"General" : "সাধারণ",
|
||||
"Search" : "Search",
|
||||
"Home" : "বাড়ি",
|
||||
"Users" : "ব্যবহারকারী",
|
||||
"Collapse" : "ভাঙো",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Delete" : "মুছে",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"Refresh" : "নবোদ্যম",
|
||||
"Error" : "সমস্যা",
|
||||
"by" : "কর্তৃক",
|
||||
"Subscribe" : "গ্রাহক হোন",
|
||||
"Disable" : "নিষ্ক্রিয়",
|
||||
"Description" : "বিবরণ",
|
||||
"Enabled" : "কার্যকর",
|
||||
"Update" : "পরিবর্ধন",
|
||||
"Name" : "নাম",
|
||||
"New" : "নতুন",
|
||||
"Reset" : "পূণঃনির্ধানণ",
|
||||
"Actions" : "পদক্ষেপসমূহ",
|
||||
"Deleted" : "মুছে ফেলা"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
43
l10n/br.js
Normal file
43
l10n/br.js
Normal file
@@ -0,0 +1,43 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Merour",
|
||||
"User" : "Implijer",
|
||||
"General" : "Hollek",
|
||||
"Search" : "Klask",
|
||||
"Home" : "Degemer",
|
||||
"Dashboard" : "Taolenn-stur",
|
||||
"Users" : "Implijer",
|
||||
"Categories" : "Rummadoù",
|
||||
"List" : "Roll",
|
||||
"Edit" : "Embann",
|
||||
"Delete" : "Dilemel",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Enrollañ",
|
||||
"Title" : "Titl",
|
||||
"Refresh" : "Freskaat",
|
||||
"Retry" : "Klaskit en dro",
|
||||
"Error" : "Fazi",
|
||||
"Searching …" : "O klask ...",
|
||||
"Back to {category}" : "Distro da {category}",
|
||||
"by" : "gant",
|
||||
"Preferences" : "Penndibaboù",
|
||||
"Notifications" : "Kemennadennoù",
|
||||
"Enable" : "Aotreañ",
|
||||
"Disable" : "Diweredekaat",
|
||||
"Description" : "Deskrivadur",
|
||||
"Update" : "Hizivaat",
|
||||
"Name" : "Anv",
|
||||
"New" : "Nevez",
|
||||
"General settings" : "Stummoù hollek",
|
||||
"Settings saved" : "Stummoù enrollet",
|
||||
"Allow" : "Aotrañ",
|
||||
"ID" : "ID",
|
||||
"Created" : "Krouet",
|
||||
"Actions" : "Oberoù",
|
||||
"Status" : "Statud",
|
||||
"Active" : "O labourat",
|
||||
"Deleted" : "Dilamet"
|
||||
},
|
||||
"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);");
|
||||
41
l10n/br.json
Normal file
41
l10n/br.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Merour",
|
||||
"User" : "Implijer",
|
||||
"General" : "Hollek",
|
||||
"Search" : "Klask",
|
||||
"Home" : "Degemer",
|
||||
"Dashboard" : "Taolenn-stur",
|
||||
"Users" : "Implijer",
|
||||
"Categories" : "Rummadoù",
|
||||
"List" : "Roll",
|
||||
"Edit" : "Embann",
|
||||
"Delete" : "Dilemel",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Enrollañ",
|
||||
"Title" : "Titl",
|
||||
"Refresh" : "Freskaat",
|
||||
"Retry" : "Klaskit en dro",
|
||||
"Error" : "Fazi",
|
||||
"Searching …" : "O klask ...",
|
||||
"Back to {category}" : "Distro da {category}",
|
||||
"by" : "gant",
|
||||
"Preferences" : "Penndibaboù",
|
||||
"Notifications" : "Kemennadennoù",
|
||||
"Enable" : "Aotreañ",
|
||||
"Disable" : "Diweredekaat",
|
||||
"Description" : "Deskrivadur",
|
||||
"Update" : "Hizivaat",
|
||||
"Name" : "Anv",
|
||||
"New" : "Nevez",
|
||||
"General settings" : "Stummoù hollek",
|
||||
"Settings saved" : "Stummoù enrollet",
|
||||
"Allow" : "Aotrañ",
|
||||
"ID" : "ID",
|
||||
"Created" : "Krouet",
|
||||
"Actions" : "Oberoù",
|
||||
"Status" : "Statud",
|
||||
"Active" : "O labourat",
|
||||
"Deleted" : "Dilamet"
|
||||
},"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"
|
||||
}
|
||||
27
l10n/bs.js
Normal file
27
l10n/bs.js
Normal file
@@ -0,0 +1,27 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Administrator",
|
||||
"User" : "User",
|
||||
"Search" : "Search",
|
||||
"Home" : "Početna stranica",
|
||||
"Users" : "Korisnici",
|
||||
"Collapse" : "Proširi",
|
||||
"Edit" : "Izmjeni",
|
||||
"Delete" : "Obriši",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Spremi",
|
||||
"Title" : "Naslov",
|
||||
"Error" : "Greška",
|
||||
"by" : "od strane",
|
||||
"Disable" : "Onemogući",
|
||||
"Description" : "Opis",
|
||||
"Enabled" : "Aktivirano",
|
||||
"Update" : "Ažuriraj",
|
||||
"Create" : "Kreiraj",
|
||||
"Name" : "Ime",
|
||||
"New" : "Novo",
|
||||
"Actions" : "Radnje"
|
||||
},
|
||||
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
|
||||
25
l10n/bs.json
Normal file
25
l10n/bs.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Administrator",
|
||||
"User" : "User",
|
||||
"Search" : "Search",
|
||||
"Home" : "Početna stranica",
|
||||
"Users" : "Korisnici",
|
||||
"Collapse" : "Proširi",
|
||||
"Edit" : "Izmjeni",
|
||||
"Delete" : "Obriši",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Spremi",
|
||||
"Title" : "Naslov",
|
||||
"Error" : "Greška",
|
||||
"by" : "od strane",
|
||||
"Disable" : "Onemogući",
|
||||
"Description" : "Opis",
|
||||
"Enabled" : "Aktivirano",
|
||||
"Update" : "Ažuriraj",
|
||||
"Create" : "Kreiraj",
|
||||
"Name" : "Ime",
|
||||
"New" : "Novo",
|
||||
"Actions" : "Radnje"
|
||||
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
|
||||
}
|
||||
82
l10n/ca.js
Normal file
82
l10n/ca.js
Normal file
@@ -0,0 +1,82 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Fòrum",
|
||||
"Admin" : "Administració",
|
||||
"Moderator" : "Moderació",
|
||||
"User" : "Usuari",
|
||||
"General" : "General",
|
||||
"Support" : "Suport",
|
||||
"Bold text" : "Text en negreta",
|
||||
"Underlined text" : "Text subratllat",
|
||||
"Deleted user" : "Usuari suprimit",
|
||||
"Search" : "Cercar",
|
||||
"Home" : "Casa",
|
||||
"Dashboard" : "Tauler",
|
||||
"Categories" : "Categories",
|
||||
"Expand" : "Expandeix",
|
||||
"Collapse" : "Replega",
|
||||
"Code" : "Codi",
|
||||
"Quote" : "Pressupost",
|
||||
"Font size" : "Mida de la lletra",
|
||||
"List" : "Llista",
|
||||
"Insert emoji" : "Insereix un emoji",
|
||||
"Page not found" : "No s'ha trobat la pàgina",
|
||||
"Back" : "Torna",
|
||||
"Edit" : "Edició",
|
||||
"Delete" : "Suprimir",
|
||||
"Unread" : "Per llegir",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Desar",
|
||||
"React with {emoji}" : "Reacciona amb {emoji}",
|
||||
"Uncategorized" : "Sense categoria",
|
||||
"Views" : "Vistes",
|
||||
"Title" : "Títol",
|
||||
"Refresh" : "Actualitza",
|
||||
"Loading …" : "S'està carregant…",
|
||||
"Retry" : "Torna-ho a provar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "S'està cercant…",
|
||||
"No results found" : "No s'ha trobat cap resultat",
|
||||
"Back to {category}" : "Torna a {category}",
|
||||
"Reply" : "Resposta",
|
||||
"by" : "per",
|
||||
"Subscribe" : "Subscriu-m'hi",
|
||||
"Subscribed" : "Subscrit",
|
||||
"Preferences" : "Preferències",
|
||||
"Notifications" : "Notificacions",
|
||||
"Enable" : "Habilitar",
|
||||
"Disable" : "Inhabilitar",
|
||||
"Tag" : "Etiqueta",
|
||||
"Description" : "Descripció",
|
||||
"Enabled" : "Habilitat",
|
||||
"Update" : "Actualitza",
|
||||
"Create" : "Crea",
|
||||
"Name" : "Nom",
|
||||
"Sort order" : "Ordenació",
|
||||
"0" : "0",
|
||||
"New" : "Crea",
|
||||
"Permissions" : "Permisos",
|
||||
"Move up" : "Mou amunt",
|
||||
"Move down" : "Mou avall",
|
||||
"Total users" : "Total d'usuaris",
|
||||
"Last 7 days" : "Darrers 7 dies",
|
||||
"All time" : "Tot el temps",
|
||||
"General settings" : "Paràmetres generals",
|
||||
"Appearance" : "Aparença",
|
||||
"Settings saved" : "S'han desat els paràmetres",
|
||||
"Failed to save settings" : "Ha fallat desar els paràmetres",
|
||||
"Reset" : "Reinicialitza",
|
||||
"Category" : "Categoria",
|
||||
"Allow" : "Permet",
|
||||
"ID" : "ID",
|
||||
"Created" : "S'ha creat",
|
||||
"Actions" : "Accions",
|
||||
"User management" : "Gestió d'usuaris",
|
||||
"Loading users …" : "S'estan carregant usuaris …",
|
||||
"No users found" : "No s'ha trobat cap usuari",
|
||||
"Joined" : "Unit",
|
||||
"Active" : "Actiu",
|
||||
"Deleted" : "Suprimit"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
80
l10n/ca.json
Normal file
80
l10n/ca.json
Normal file
@@ -0,0 +1,80 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Fòrum",
|
||||
"Admin" : "Administració",
|
||||
"Moderator" : "Moderació",
|
||||
"User" : "Usuari",
|
||||
"General" : "General",
|
||||
"Support" : "Suport",
|
||||
"Bold text" : "Text en negreta",
|
||||
"Underlined text" : "Text subratllat",
|
||||
"Deleted user" : "Usuari suprimit",
|
||||
"Search" : "Cercar",
|
||||
"Home" : "Casa",
|
||||
"Dashboard" : "Tauler",
|
||||
"Categories" : "Categories",
|
||||
"Expand" : "Expandeix",
|
||||
"Collapse" : "Replega",
|
||||
"Code" : "Codi",
|
||||
"Quote" : "Pressupost",
|
||||
"Font size" : "Mida de la lletra",
|
||||
"List" : "Llista",
|
||||
"Insert emoji" : "Insereix un emoji",
|
||||
"Page not found" : "No s'ha trobat la pàgina",
|
||||
"Back" : "Torna",
|
||||
"Edit" : "Edició",
|
||||
"Delete" : "Suprimir",
|
||||
"Unread" : "Per llegir",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Desar",
|
||||
"React with {emoji}" : "Reacciona amb {emoji}",
|
||||
"Uncategorized" : "Sense categoria",
|
||||
"Views" : "Vistes",
|
||||
"Title" : "Títol",
|
||||
"Refresh" : "Actualitza",
|
||||
"Loading …" : "S'està carregant…",
|
||||
"Retry" : "Torna-ho a provar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "S'està cercant…",
|
||||
"No results found" : "No s'ha trobat cap resultat",
|
||||
"Back to {category}" : "Torna a {category}",
|
||||
"Reply" : "Resposta",
|
||||
"by" : "per",
|
||||
"Subscribe" : "Subscriu-m'hi",
|
||||
"Subscribed" : "Subscrit",
|
||||
"Preferences" : "Preferències",
|
||||
"Notifications" : "Notificacions",
|
||||
"Enable" : "Habilitar",
|
||||
"Disable" : "Inhabilitar",
|
||||
"Tag" : "Etiqueta",
|
||||
"Description" : "Descripció",
|
||||
"Enabled" : "Habilitat",
|
||||
"Update" : "Actualitza",
|
||||
"Create" : "Crea",
|
||||
"Name" : "Nom",
|
||||
"Sort order" : "Ordenació",
|
||||
"0" : "0",
|
||||
"New" : "Crea",
|
||||
"Permissions" : "Permisos",
|
||||
"Move up" : "Mou amunt",
|
||||
"Move down" : "Mou avall",
|
||||
"Total users" : "Total d'usuaris",
|
||||
"Last 7 days" : "Darrers 7 dies",
|
||||
"All time" : "Tot el temps",
|
||||
"General settings" : "Paràmetres generals",
|
||||
"Appearance" : "Aparença",
|
||||
"Settings saved" : "S'han desat els paràmetres",
|
||||
"Failed to save settings" : "Ha fallat desar els paràmetres",
|
||||
"Reset" : "Reinicialitza",
|
||||
"Category" : "Categoria",
|
||||
"Allow" : "Permet",
|
||||
"ID" : "ID",
|
||||
"Created" : "S'ha creat",
|
||||
"Actions" : "Accions",
|
||||
"User management" : "Gestió d'usuaris",
|
||||
"Loading users …" : "S'estan carregant usuaris …",
|
||||
"No users found" : "No s'ha trobat cap usuari",
|
||||
"Joined" : "Unit",
|
||||
"Active" : "Actiu",
|
||||
"Deleted" : "Suprimit"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
396
l10n/cs.js
Normal file
396
l10n/cs.js
Normal file
@@ -0,0 +1,396 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Diskuzní fórum",
|
||||
"Welcome to the forum!" : "Vítejte ve fóru!",
|
||||
"Admin" : "Správce",
|
||||
"Administrator role with full permissions" : "Role správce s plnými oprávněními",
|
||||
"Moderator" : "Moderátor",
|
||||
"Moderator role with elevated permissions" : "Role moderátora s povýšeními oprávněními",
|
||||
"User" : "Uživatel",
|
||||
"Default user role with basic permissions" : "Výchozí uživatelská role se základními oprávněními",
|
||||
"General" : "Obecné",
|
||||
"General discussion categories" : "Obecné diskuzní kategorie",
|
||||
"General discussions" : "Obecné diskuze",
|
||||
"A place for general conversations and discussions" : "Místo pro obecné konverzace a diskuze",
|
||||
"Support" : "Podpora",
|
||||
"Ask questions about the forum, provide feedback or report issues." : "Pokládejte dotazy ohledně fóra, dávejte zpětnou vazbu nebo hlaste problémy.",
|
||||
"[icode]inline code[/icode]" : "[icode]kód v řádku[/icode]",
|
||||
"Inline code" : "Kód v řádku",
|
||||
"[spoiler=\"%1$s\"]%2$s[/spoiler]" : "[spoiler=\"%1$s\"]%2$s[/spoiler]",
|
||||
"Spoilers" : "Spoilery",
|
||||
"Attachment" : "Příloha",
|
||||
"Welcome to Nextcloud Forums" : "Vítejte v Nextcloud fórech",
|
||||
"Welcome to the Nextcloud Forums!" : "Vítejte v Nextcloud fórech!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Toto je komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud. Je možné zde probírat témata, sdílet nápady a spolupracovat s ostatními uživateli.",
|
||||
"Features:" : "Funkce:",
|
||||
"Create and reply to threads" : "Vytvářejte a odpovídejte na vlákna",
|
||||
"Organize discussions by categories" : "Uspořádávejte diskuze podle kategorií",
|
||||
"Use BBCode for rich text formatting" : "Formátujte text pomocí BBCode",
|
||||
"Attach files from your Nextcloud storage" : "Připojujte soubory ze svého Nextcloud úložiště",
|
||||
"React to posts" : "Reagujte na příspěvky",
|
||||
"Track read/unread threads" : "Udržujte si přehled o (ne)přečtených vláknech",
|
||||
"BBCode examples:" : "Příklady BBCode:",
|
||||
"Bold text" : "Tučný text",
|
||||
"Use %1$stext%2$s" : "Použijte %1$stext%2$s",
|
||||
"Italic text" : "Skloněný text",
|
||||
"Underlined text" : "Podtržený text",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Neváhejte zahájit novou diskuzi nebo odpovězte na existující vlákna. Vesele pište příspěvky!.",
|
||||
"_{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} "],
|
||||
"Deleted user" : "Smazaný uživatel",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud",
|
||||
"Search" : "Hledat",
|
||||
"Home" : "Domů",
|
||||
"User preferences" : "Předvolby uživatele",
|
||||
"Dashboard" : "Nástěnka",
|
||||
"Forum settings" : "Nastavení fóra",
|
||||
"Users" : "Uživatelé",
|
||||
"Roles" : "Role",
|
||||
"Categories" : "Kategorie",
|
||||
"BBCodes" : "BBCodes",
|
||||
"Expand" : "Rozbalit",
|
||||
"Collapse" : "Sbalit",
|
||||
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Upozornění:{bEnd} Přiložené soubory budou viditelné komukoli na fóru, nezávisle na nastavení sdílení souboru.",
|
||||
"Font style bold" : "Tučný styl písma",
|
||||
"Font style italic" : "Skloněný styl písma",
|
||||
"Font style struck through" : "Přeškrtnutý styl písma",
|
||||
"Font style underlined" : "Podtržený styl písma",
|
||||
"Code" : "Kód",
|
||||
"Email (clickable)" : "E-mail (klikatelný)",
|
||||
"{emailStart}test@example.com{emailEnd}" : "{emailStart}test@example.com{emailEnd}",
|
||||
"URL (clickable)" : "URL (klikatelné)",
|
||||
"{urlStart}Example.com{urlEnd}" : "{urlStart}Example.com{urlEnd}",
|
||||
"Image (not clickable)" : "Obrázek (neklikatelný)",
|
||||
"{imgStart}http://example.com/example.png{imgEnd}" : "{imgStart}http://example.com/example.png{imgEnd}",
|
||||
"Quote" : "Citace",
|
||||
"Embedded YouTube video" : "Vnořené video z YouTube",
|
||||
"{youtubeStart}a-video-id-123456{youtubeEnd}" : "{youtubeStart}identifikator-videa-123456{youtubeEnd}",
|
||||
"Font (name)" : "Písmo (název)",
|
||||
"Font size" : "Velikost písmen",
|
||||
"Font color" : "Barva písma",
|
||||
"Align left" : "Zarovnat vlevo",
|
||||
"Align center" : "Zarovnat na střed",
|
||||
"Align right" : "Zarovnat vpravo",
|
||||
"List" : "Seznam",
|
||||
"{listStart}{item1Start}Hello world!{item2Start}Hello moon!{item2End}{listEnd}" : "{listStart}{item1Start}Ahoj světe!{item2Start}Ahoj Měsíci!{item2End}{listEnd}",
|
||||
"List item within a list" : "Položka seznamu v seznamu",
|
||||
"{itemStart}Hello world!\\r\\n{itemStart}Hello moon!" : "{itemStart}Ahoj světe!\\r\\n{itemStart}Ahoj Měsíci!",
|
||||
"List item within a list (alias)" : "Položka seznamu v seznamu (alternativně)",
|
||||
"{liStart}Hello world!\\r\\n{liEnd}{liStart}Hello moon!{liEnd}" : "{liStart}Ahoj světe!\\r\\n{liEnd}{liStart}Ahoj Měsíci!{liEnd}",
|
||||
"BBCode help" : "Nápověda k BBCode",
|
||||
"Built-in BBCodes" : "Vestavěné BBCode kódy",
|
||||
"These BBCodes are available by default." : "Tyto BBCode kódy jsou k dispozici už ve výchozím stavu.",
|
||||
"Custom BBCodes" : "Uživatelsky určené BBCode kódy",
|
||||
"These BBCodes are custom to this forum and configured by administrators." : "Tyto BBCode kódy jsou uživatelsky určené v rámci tohoto fóra a nastavované správci.",
|
||||
"Example" : "Příklad",
|
||||
"Replacement" : "Nahrazení",
|
||||
"Loading custom BBCodes …" : "Načítání uživatelsky určených BBCode kódů …",
|
||||
"No custom BBCodes configured." : "Nenastaveny žádné uživatelsky určené BBCode kódy.",
|
||||
"Failed to load custom BBCodes" : "Nepodařilo se načíst uživatelsky určené BBCode kódy",
|
||||
"Insert emoji" : "Vložit emotikonu",
|
||||
"Pick a file to attach" : "Vyberte soubor a nasdílejte ho",
|
||||
"_Thread_::_Threads_" : ["Vlákno","Vlákna","Vláken","Vlákna"],
|
||||
"_Post_::_Posts_" : ["Příspěvek","Příspěvky","Příspěvků","Příspěvky"],
|
||||
"No description available" : "Není k dispozici žádný popis",
|
||||
"Page not found" : "Stránka nenalezena",
|
||||
"The page you are looking for could not be found." : "Stránka kterou hledáte nebylo možné nalézt.",
|
||||
"Back" : "Zpět",
|
||||
"Go to home" : "Přejít na úvodní stránku",
|
||||
"Edited" : "Upraveno",
|
||||
"Quote reply" : "Odpovědět s citací",
|
||||
"Edit" : "Upravit",
|
||||
"Delete" : "Smazat",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Opravdu chcete tento příspěvek smazat? Tuto akci nepůjde vzít zpět.",
|
||||
"Unread" : "Nastavit jako nepřečtené",
|
||||
"Edit your post …" : "Upravit váš příspěvek …",
|
||||
"Cancel" : "Zrušit",
|
||||
"Save" : "Uložit",
|
||||
"Are you sure you want to discard your changes?" : "Opravdu chcete vámi provedené změny zahodit?",
|
||||
"Add reaction" : "Přidat reakci",
|
||||
"React with {emoji}" : "Zareagovat {emoji}",
|
||||
"You reacted with {emoji}" : "Zareagovali jste s použitím {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n dalších jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n osoba zareagovala s použitím {emoji}","%n lidé zareagovali s použitím {emoji}","%n lidí zareagovalo s použitím {emoji}","%n lidé zareagovali s použitím {emoji}"],
|
||||
"Write your reply …" : "Napište svou odpověď …",
|
||||
"Post reply" : "Odeslat odpověď",
|
||||
"Are you sure you want to discard your reply?" : "Opravdu chcete svou odpověď zahodit?",
|
||||
"In thread" : "Ve vláknu",
|
||||
"Thread unavailable" : "Vlákno není k dispozici",
|
||||
"Pinned thread" : "Připnuté vlákno",
|
||||
"Locked thread" : "Uzamčené vlákno",
|
||||
"Uncategorized" : "Nezařazeno",
|
||||
"_%n post_::_%n posts_" : ["%n příspěvek","%n příspěvky","%n příspěvků","%n příspěvky"],
|
||||
"_%n view_::_%n views_" : ["%n zobrazení","%n zobrazení","%n zobrazení","%n zobrazení"],
|
||||
"Replies" : "Odpovědi",
|
||||
"Views" : "Zobrazení",
|
||||
"Title" : "Titul",
|
||||
"Enter thread title …" : "Zadejte titulek vlákna …",
|
||||
"Write your first post …" : "Napište svůj první příspěvek …",
|
||||
"Create thread" : "Vytvořit vlákno",
|
||||
"Are you sure you want to discard this thread?" : "Opravdu chcete toto vlákno zahodit?",
|
||||
"Refresh" : "Znovu načíst",
|
||||
"Loading …" : "Načítání …",
|
||||
"No categories yet" : "Zatím ještě žádné kategorie",
|
||||
"Categories will appear here once they are created." : "Kategorie se objeví, jakmile budou vytvořeny.",
|
||||
"No categories in this section" : "Žádné kategorie v této sekci",
|
||||
"Category not found" : "Kategorie nenalezena",
|
||||
"The category you are looking for does not exist or has been removed." : "Kategorie kterou hledáte neexistuje nebo byla odebrána.",
|
||||
"Back to categories" : "Zpět na kategorie",
|
||||
"New thread" : "Nové vlákno",
|
||||
"Error loading category" : "Chyba při načítání kategorie",
|
||||
"No threads yet" : "Zatím žádná vlákna",
|
||||
"Be the first to start a discussion in this category." : "Buďte první kdo začne diskutovat v této kategorii.",
|
||||
"Retry" : "Zkusit znovu",
|
||||
"_Showing %n thread_::_Showing %n threads_" : ["Zobrazuje se %n vlákno","Zobrazují se %n vlákna","Zobrazuje se %n vláken","Zobrazují se %n vlákna"],
|
||||
"An unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||
"No category ID or slug provided" : "Nezadán žádný identifikátor kategorie nebo slug",
|
||||
"Failed to load threads" : "Nepodařilo se načíst vlákna",
|
||||
"Create New Thread" : "Vytvořit nové vlákno",
|
||||
"In {category}" : "V {category}",
|
||||
"Creating thread …" : "Vytváření vlákna …",
|
||||
"Thread created" : "Vlákno vytvořeno",
|
||||
"Failed to create thread" : "Vlákno se nepodařilo vytvořit",
|
||||
"No category specified" : "Neurčena žádná kategorie",
|
||||
"Error" : "Error",
|
||||
"First post" : "První příspěvek",
|
||||
"Threads ({count})" : "Vlákna ({count})",
|
||||
"Replies ({count})" : "Odpovědi ({count})",
|
||||
"No threads" : "Žádná vlákna",
|
||||
"This user has not created any threads yet" : "Tento uživatel zatím nevytvořil žádná vlákna",
|
||||
"No replies" : "Žádné odpovědi",
|
||||
"This user has not posted any replies yet" : "Tento uživatel zatím neposlal žádné odpovědi",
|
||||
"Failed to load user profile" : "Nepodařilo se načíst uživatelský profil",
|
||||
"Enter search query …" : "Zadejte vyhledávací dotaz …",
|
||||
"Search in threads" : "Hledat ve vláknech",
|
||||
"Search in posts" : "Hledat v příspěvcích",
|
||||
"Syntax help" : "Nápověda k syntaxi",
|
||||
"Search syntax" : "Syntaxe vyhledávání",
|
||||
"Match exact phrase" : "Hledat shodu v přesné frázi",
|
||||
"Both terms required" : "Jsou zapotřebí oba pojmy",
|
||||
"Either term matches" : "Postačí shoda s jedním či druhým pojmem",
|
||||
"Group conditions with parentheses" : "Podmínky je možné seskupovat pomocí závorek",
|
||||
"Exclude term from results" : "Vynechat pojem z výsledků",
|
||||
"Searching …" : "Hledání …",
|
||||
"Search Error" : "Chyba hledání",
|
||||
"Enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Use the search box above to find threads and posts" : "Ve vláknech a příspěvcích je možné vyhledávat pomocí kolonky výše",
|
||||
"No results found" : "Nic nenalezeno",
|
||||
"Try different keywords or check your syntax" : "Zkuste jiná klíčová slova nebo zkontrolujte syntaxi",
|
||||
"_%n thread found_::_%n threads found_" : ["Nalezeno %n vlákno","Nalezena %n vlákna","Nalezeno %n vláken","Nalezena %n vlákna"],
|
||||
"_%n post found_::_%n posts found_" : ["Nalezen %n příspěvek","Nalezeny %n příspěvky","Nalezeno %n příspěvků","Nalezeny %n příspěvky"],
|
||||
"Please enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Please select at least one search scope" : "Vyberte alespoň jednu oblast vyhledávání",
|
||||
"Failed to search" : "Nepodařilo se hledat",
|
||||
"Thread not found" : "Vlákno nenalezeno",
|
||||
"The thread you are looking for does not exist or has been removed." : "Vlákno které hledáte neexistuje nebo bylo odebráno.",
|
||||
"Back to {category}" : "Zpět na {category}",
|
||||
"Reply" : "Odpověď",
|
||||
"Error loading thread" : "Chyba při načítání vlákna",
|
||||
"No posts yet" : "Zatím žádné příspěvky",
|
||||
"Be the first to post in this thread." : "Buďte první kdo začne zasílat příspěvky do tohoto vlákna.",
|
||||
"by" : "od",
|
||||
"This thread is locked. Only moderators can post replies." : "Toto vlákno je uzamčeno. Odpovědi mohou zasíat pouze moderátoři.",
|
||||
"_Showing %n post_::_Showing %n posts_" : ["Zobrazování %n příspěvku","Zobrazování %n příspěvků","Zobrazování %n příspěvků","Zobrazování %n příspěvků"],
|
||||
"Lock thread" : "Uzamknout vlákno",
|
||||
"Unlock thread" : "Odemknout vlákno",
|
||||
"Pin thread" : "Připnout vlákno",
|
||||
"Unpin thread" : "Zrušit připnutí vlákna",
|
||||
"Thread locked" : "Vlákno uzamčen",
|
||||
"Thread unlocked" : "Vlákno odemčen",
|
||||
"Thread pinned" : "Vlákno připnuto",
|
||||
"Thread unpinned" : "Připnutí vlákna zrušeno",
|
||||
"Subscribe" : "Přihlásit se k odběru",
|
||||
"Subscribed" : "Přihlášeno se k odběru",
|
||||
"Subscribed to thread" : "Přihlášeno se k odběru vlákna",
|
||||
"Unsubscribed from thread" : "Zrušeno odebírání vlákna",
|
||||
"No thread ID or slug provided" : "Nezadán žádný identifikátor vlákna nebo slug",
|
||||
"Failed to load posts" : "Nepodařilo se načíst příspěvky",
|
||||
"Post updated" : "Příspěvek aktualizován",
|
||||
"Failed to update post" : "Nepodařilo se zaktualizovat příspěvek",
|
||||
"Thread deleted" : "Vlákno smazáno",
|
||||
"Post deleted" : "Příspěvek smazán",
|
||||
"Failed to delete post" : "Příspěvek se nepodařilo smazat",
|
||||
"Failed to update thread lock status" : "Nepodařilo se zaktualizovat stav zámku vlákna",
|
||||
"Failed to update thread pin status" : "Nepodařilo se zaktualizovat stav připnutí vlákna",
|
||||
"Failed to update subscription" : "Nepodařilo se zaktualizovat přihlášení se k odběru",
|
||||
"Preferences" : "Předvolby",
|
||||
"Customize your forum experience" : "Přizpůsobte si svůj dojem z používání fóra",
|
||||
"Loading preferences …" : "Načítání předvoleb …",
|
||||
"Error loading preferences" : "Chyba při načítání předvoleb",
|
||||
"Notifications" : "Upozornění",
|
||||
"Configure how you receive notifications" : "Nastavte jak získáváte upozornění",
|
||||
"Auto-subscribe to threads I create" : "Automaticky se přihlašovat k odběru vláken, která vytvořím",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Pokud zapnuto, automaticky obdržíte upozornění na odpovědi na vlákna, která vytvoříte",
|
||||
"Preferences saved" : "Předvolby uloženy",
|
||||
"Failed to save preferences" : "Nepodařilo se uložit vaše předvolby",
|
||||
"BBCode management" : "Správa BBCode",
|
||||
"Manage custom BBCode tags for post formatting" : "Spravovat uživatelsky určené BBCode značky pro formátování příspěvků",
|
||||
"Error loading BBCodes" : "Chyba při načítání BBCode kódů",
|
||||
"Create BBCode" : "Vytvořit BBCode",
|
||||
"Enable" : "Povolit",
|
||||
"Disable" : "Vypnout",
|
||||
"Enabled BBCodes" : "Povolené BBCode kódy",
|
||||
"These BBCode tags are currently active" : "Tyto BBCode značky jsou v tuto chvíli aktivní",
|
||||
"Disabled BBCodes" : "Zakázané BBCode kódy",
|
||||
"These BBCode tags are currently inactive" : "V tuto chvíli jsou neaktivní tyto BBCode značky",
|
||||
"No enabled BBCodes" : "Žádné povolené BBCode kódy",
|
||||
"Parses Inner" : "Zpracovává vnitřní",
|
||||
"Delete BBCode" : "Smazat BBCode",
|
||||
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Opravdu chcete BBCode značku [{tag}] smazat?",
|
||||
"This action cannot be undone." : "Tuto akci není možné vzít zpět.",
|
||||
"Edit BBCode" : "Upravit BBCode",
|
||||
"Tag" : "Štítek",
|
||||
"e.g., b, i, url, color" : "např. b, i, url, color",
|
||||
"The BBCode tag name (without brackets)" : "Název BBCode značky (bez závorek)",
|
||||
"HTML replacement" : "HTML nahrazení",
|
||||
"e.g., {strongStart}{content}{strongEnd}" : "např., {strongStart}{content}{strongEnd}",
|
||||
"Use {content} for the tag content and {paramName} for parameters" : "Použijte {content} pro obsah značky a {paramName} pro parametry k ní",
|
||||
"Example usage of this BBCode tag" : "Ukázka použití této BBCode značky",
|
||||
"Description" : "Popis",
|
||||
"Brief description of what this BBCode does" : "Stručný popis toho, co tento BBCode dělá",
|
||||
"Enabled" : "Zapnuto",
|
||||
"Parse inner content" : "Zpracovat vnitřní obsah",
|
||||
"If enabled, BBCode tags inside this tag will also be parsed" : "Pokud zapnuto, značky BBCode uvnitř této značky budou zpracovány také",
|
||||
"Update" : "Aktualizovat",
|
||||
"Create" : "Vytvářet",
|
||||
"Create category" : "Vytvořit kategorii",
|
||||
"Edit category" : "Upravit kategorii",
|
||||
"Configure category details" : "Podrobnosti nastaveni kategorie",
|
||||
"Basic information" : "Základní informace",
|
||||
"Category header" : "Záhlaví kategorie",
|
||||
"-- Select a header --" : "-- Vybrat záhlaví --",
|
||||
"Name" : "Název",
|
||||
"Enter category name" : "Zadejte název kategorie",
|
||||
"Slug" : "Slug",
|
||||
"URL-friendly identifier (e.g., \"{slug}\")" : "Identifikátor vhodný pro URL (např. „{slug}“)",
|
||||
"Enter category description (optional)" : "Zadejte popis kategorie (volitelné)",
|
||||
"Sort order" : "Pořadí řazení",
|
||||
"0" : "0",
|
||||
"Lower numbers appear first" : "Nižší čísla se objeví jako první",
|
||||
"New" : "Nové",
|
||||
"Create category header" : "Vytvořit záhlaví kategorie",
|
||||
"Edit category header" : "Upravit záhlaví kategorie",
|
||||
"Header name" : "Název záhlaví",
|
||||
"Enter header name" : "Zadejte název pro záhlaví",
|
||||
"Header description" : "Popis záhlaví",
|
||||
"Enter header description (optional)" : "Zadejte popis záhlaví (volitelné)",
|
||||
"Permissions" : "Oprávnění",
|
||||
"Control which roles can access and moderate this category" : "Určete které role mohou k této kategorii přistupovat a moderovat v ní",
|
||||
"Roles that can view" : "Role, které mohou zobrazovat",
|
||||
"Select roles that can view this category and its threads" : "Vyberte role které si mohou zobrazovat tuto kategorii a její vlákna",
|
||||
"Roles that can moderate" : "Role, které mohou moderovat",
|
||||
"Select roles that can moderate (edit/delete) content in this category" : "Vyberte role které mohou moderovat (upravovat/mazat) obsah v této kategorii",
|
||||
"Select roles …" : "Vybrat role …",
|
||||
"Manage forum categories and organization" : "Spravovat kategorie fóra a organizování",
|
||||
"Error loading categories" : "Chyba při načítání kategorií",
|
||||
"No categories in this header" : "Žádné kategorie v tomto záhlaví",
|
||||
"Delete category" : "Smazat kategorii",
|
||||
"Are you sure you want to delete the category \"{name}\"?" : "Opravdu chcete kategorii „{name}“ smazat?",
|
||||
"_This category contains %n thread._::_This category contains %n threads._" : ["Tato kategorie obsahuje %n vlákno.","Tato kategorie obsahuje %n vlákna.","Tato kategorie obsahuje %n vláken.","Tato kategorie obsahuje %n vlákna."],
|
||||
"What should happen to the threads?" : "Co se má stát s těmito vlákny?",
|
||||
"Move threads to another category" : "Přesunout vlákna do jiné kategorie",
|
||||
"Delete all threads (soft delete)" : "Smazat všechna vlákna („měkké“ smazání)",
|
||||
"Threads will be hidden but not permanently deleted" : "Vlákna budou skryta, ale ještě ne smazána",
|
||||
"Select target category" : "Vyberte cílovou kategorii",
|
||||
"-- Select a category --" : "-- Vybrat kategorii --",
|
||||
"Create header" : "Vytvořit záhlaví",
|
||||
"_%n category_::_%n categories_" : ["%n kategorie","%n kategorie","%n kategorií","%n kategorie"],
|
||||
"_%n thread_::_%n threads_" : ["%n vlákno","%n vlákna","%n vláken","%n vlákna"],
|
||||
"Delete header" : "Smazat záhlaví",
|
||||
"Are you sure you want to delete the header \"{name}\"?" : "Opravdu chcete záhlaví „{name}“ smazat?",
|
||||
"_This header contains %n category._::_This header contains %n categories._" : ["Toto záhlaví obsahuje %n kategorii.","Toto záhlaví obsahuje %n kategorie.","Toto záhlaví obsahuje %n kategorií.","Toto záhlaví obsahuje %n kategorie."],
|
||||
"This action cannot be undone" : "Tuto akci není možné vzít zpět",
|
||||
"What should happen to the categories?" : "Co se má stát s těmito kategoriemi?",
|
||||
"Move categories to another header" : "Přesunout kategorie do jiného záhlaví",
|
||||
"Delete all categories" : "Smazat všechny kategorie",
|
||||
"All categories and their threads will be permanently deleted" : "Veškeré kategorie a vlákna v nich budou nevratně smazány",
|
||||
"Select target header" : "Vybrat cílové záhlaví",
|
||||
"Move up" : "Přesunout výše",
|
||||
"Move down" : "Přesunout dolů",
|
||||
"Admin dashboard" : "Přehled správce",
|
||||
"Overview of forum activity and statistics" : "Přehled aktivity na fóru a statistiky",
|
||||
"Loading statistics …" : "Načítání statistik …",
|
||||
"Error loading dashboard" : "Chyba při načítání přehledu",
|
||||
"Total statistics" : "Celkové statistiky",
|
||||
"Total users" : "Celkem uživatelů",
|
||||
"Total threads" : "Celkem vláken",
|
||||
"Total posts" : "Celkem příspěvků",
|
||||
"Total categories" : "Celkem kategorií",
|
||||
"Recent activity (last 7 days)" : "Nedávná aktivita (uplynulých 7 dnů)",
|
||||
"New users" : "Nový uživatelé",
|
||||
"New threads" : "Nová vlákna",
|
||||
"New posts" : "Nové příspěvky",
|
||||
"Top contributors" : "Nejaktivnější přispěvatelé",
|
||||
"No contributors yet" : "Zatím žádní přispěvatelé",
|
||||
"Last 7 days" : "Uplynulých 7 dnů",
|
||||
"All time" : "Na vždy",
|
||||
"General settings" : "Obecná nastavení",
|
||||
"Configure general forum settings" : "Obecná nastavení fóra",
|
||||
"Loading settings …" : "Načítání nastavení …",
|
||||
"Error loading settings" : "Chyba při načítání nastavení",
|
||||
"Appearance" : "Vzhled",
|
||||
"Customize how your forum looks to users" : "Přizpůsobit jako vaše fórum vypadá pro uživatele",
|
||||
"Forum title" : "Titulek fóra",
|
||||
"Displayed at the top of the forum home page" : "Zobrazováno v horní části domovské stránky fóra",
|
||||
"Forum subtitle" : "Podtitul fóra",
|
||||
"Welcome to the forum" : "Vítejte ve fóru",
|
||||
"A brief description shown below the title" : "Stručný popis zobrazený pod titulkem",
|
||||
"Settings saved" : "Nastavení uložena",
|
||||
"Failed to save settings" : "Nastavení se nepodařilo uložit",
|
||||
"Create role" : "Vytvořit rol",
|
||||
"Edit role" : "Upravit roli",
|
||||
"Configure role permissions and category access" : "Nastavit oprávnění rolí a přístupu ke kategoriím",
|
||||
"Error loading role" : "Chyba při načítání role",
|
||||
"Enter role name" : "Zadejte název role",
|
||||
"Enter role description (optional)" : "Zadejte popis role (volitelné)",
|
||||
"System role names cannot be changed" : "Názvy systémových rolí není možné měnit",
|
||||
"Colors" : "Barvy",
|
||||
"Set colors for this role badge" : "Nastavit barvy pro odznáček této role",
|
||||
"Light mode color" : "Barva světlého režimu",
|
||||
"Dark mode color" : "Barva tmavého režim",
|
||||
"Reset" : "Vrátit na výchozí",
|
||||
"Role permissions" : "Oprávnění role",
|
||||
"Set global permissions for this role" : "Nastavit globální oprávnění pro tuto roli",
|
||||
"Can access admin tools" : "Může přistupovat k nástrojům pro správu",
|
||||
"Allow access to the admin dashboard and tools" : "Umožnit přístup k přehledu správce a nástrojům",
|
||||
"Can edit roles" : "Může upravovat role",
|
||||
"Allow creating, editing and deleting roles" : "Umožnit vytváření, upravování a mazání rolí",
|
||||
"Can edit categories" : "Může upravovat kategorie",
|
||||
"Allow creating, editing and deleting categories" : "Umožnit vytváření, upravování a mazání kategorií",
|
||||
"Category permissions" : "Oprávnění kategorie",
|
||||
"Set which categories this role can access" : "Nastavit ke kterým kategoriím tato role může přistupovat",
|
||||
"Category" : "Kategorie",
|
||||
"Can view" : "Může zobrazovat",
|
||||
"Can moderate" : "Může moderovat",
|
||||
"Allow" : "Umožnit",
|
||||
"No categories available" : "Nejsou k dispozici žádné kategorie",
|
||||
"Admin role has full access to all categories" : "Role správce má plný přístup do všech kategorií",
|
||||
"Role management" : "Správa rolí",
|
||||
"Create and manage forum roles and permissions" : "Vytvořit a spravovat role v rámci fóra a jejich oprávnění",
|
||||
"Loading roles …" : "Načítání rolí …",
|
||||
"Error loading roles" : "Chyba při načítání rolí",
|
||||
"No roles found" : "Nenalezeny žádné role",
|
||||
"Create your first role to get started" : "Začněte vytvořením první role",
|
||||
"ID" : "Identif.",
|
||||
"Created" : "Vytvořeno",
|
||||
"Actions" : "Akce",
|
||||
"No description" : "Bez popisu",
|
||||
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Opravdu chcete roli „{name}“ smazat? Tuto akci nepůjde vzít zpět.",
|
||||
"System roles cannot be deleted" : "Systémové role není možné smazat",
|
||||
"User management" : "Správa uživatelů",
|
||||
"Manage forum users, roles and permissions" : "Spravovat uživatele fóra, role a oprávnění",
|
||||
"Loading users …" : "Načítání uživatelů …",
|
||||
"Error loading users" : "Chyba při načítání uživatelů",
|
||||
"No users found" : "Nenalezeni žádní uživatelé",
|
||||
"There are no forum users yet" : "Zatím zde nejsou žádní uživatelé fóra",
|
||||
"Posts" : "Příspěvků",
|
||||
"Joined" : "Připojený",
|
||||
"Status" : "Stav",
|
||||
"Active" : "Aktivní",
|
||||
"Deleted" : "Smazáno",
|
||||
"No roles" : "Žádné role",
|
||||
"Select roles" : "Vybrat role",
|
||||
"Edit roles" : "Upravit role",
|
||||
"Edit user roles" : "Upravit role uživatelů"
|
||||
},
|
||||
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");
|
||||
394
l10n/cs.json
Normal file
394
l10n/cs.json
Normal file
@@ -0,0 +1,394 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Diskuzní fórum",
|
||||
"Welcome to the forum!" : "Vítejte ve fóru!",
|
||||
"Admin" : "Správce",
|
||||
"Administrator role with full permissions" : "Role správce s plnými oprávněními",
|
||||
"Moderator" : "Moderátor",
|
||||
"Moderator role with elevated permissions" : "Role moderátora s povýšeními oprávněními",
|
||||
"User" : "Uživatel",
|
||||
"Default user role with basic permissions" : "Výchozí uživatelská role se základními oprávněními",
|
||||
"General" : "Obecné",
|
||||
"General discussion categories" : "Obecné diskuzní kategorie",
|
||||
"General discussions" : "Obecné diskuze",
|
||||
"A place for general conversations and discussions" : "Místo pro obecné konverzace a diskuze",
|
||||
"Support" : "Podpora",
|
||||
"Ask questions about the forum, provide feedback or report issues." : "Pokládejte dotazy ohledně fóra, dávejte zpětnou vazbu nebo hlaste problémy.",
|
||||
"[icode]inline code[/icode]" : "[icode]kód v řádku[/icode]",
|
||||
"Inline code" : "Kód v řádku",
|
||||
"[spoiler=\"%1$s\"]%2$s[/spoiler]" : "[spoiler=\"%1$s\"]%2$s[/spoiler]",
|
||||
"Spoilers" : "Spoilery",
|
||||
"Attachment" : "Příloha",
|
||||
"Welcome to Nextcloud Forums" : "Vítejte v Nextcloud fórech",
|
||||
"Welcome to the Nextcloud Forums!" : "Vítejte v Nextcloud fórech!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Toto je komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud. Je možné zde probírat témata, sdílet nápady a spolupracovat s ostatními uživateli.",
|
||||
"Features:" : "Funkce:",
|
||||
"Create and reply to threads" : "Vytvářejte a odpovídejte na vlákna",
|
||||
"Organize discussions by categories" : "Uspořádávejte diskuze podle kategorií",
|
||||
"Use BBCode for rich text formatting" : "Formátujte text pomocí BBCode",
|
||||
"Attach files from your Nextcloud storage" : "Připojujte soubory ze svého Nextcloud úložiště",
|
||||
"React to posts" : "Reagujte na příspěvky",
|
||||
"Track read/unread threads" : "Udržujte si přehled o (ne)přečtených vláknech",
|
||||
"BBCode examples:" : "Příklady BBCode:",
|
||||
"Bold text" : "Tučný text",
|
||||
"Use %1$stext%2$s" : "Použijte %1$stext%2$s",
|
||||
"Italic text" : "Skloněný text",
|
||||
"Underlined text" : "Podtržený text",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Neváhejte zahájit novou diskuzi nebo odpovězte na existující vlákna. Vesele pište příspěvky!.",
|
||||
"_{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} "],
|
||||
"Deleted user" : "Smazaný uživatel",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud",
|
||||
"Search" : "Hledat",
|
||||
"Home" : "Domů",
|
||||
"User preferences" : "Předvolby uživatele",
|
||||
"Dashboard" : "Nástěnka",
|
||||
"Forum settings" : "Nastavení fóra",
|
||||
"Users" : "Uživatelé",
|
||||
"Roles" : "Role",
|
||||
"Categories" : "Kategorie",
|
||||
"BBCodes" : "BBCodes",
|
||||
"Expand" : "Rozbalit",
|
||||
"Collapse" : "Sbalit",
|
||||
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Upozornění:{bEnd} Přiložené soubory budou viditelné komukoli na fóru, nezávisle na nastavení sdílení souboru.",
|
||||
"Font style bold" : "Tučný styl písma",
|
||||
"Font style italic" : "Skloněný styl písma",
|
||||
"Font style struck through" : "Přeškrtnutý styl písma",
|
||||
"Font style underlined" : "Podtržený styl písma",
|
||||
"Code" : "Kód",
|
||||
"Email (clickable)" : "E-mail (klikatelný)",
|
||||
"{emailStart}test@example.com{emailEnd}" : "{emailStart}test@example.com{emailEnd}",
|
||||
"URL (clickable)" : "URL (klikatelné)",
|
||||
"{urlStart}Example.com{urlEnd}" : "{urlStart}Example.com{urlEnd}",
|
||||
"Image (not clickable)" : "Obrázek (neklikatelný)",
|
||||
"{imgStart}http://example.com/example.png{imgEnd}" : "{imgStart}http://example.com/example.png{imgEnd}",
|
||||
"Quote" : "Citace",
|
||||
"Embedded YouTube video" : "Vnořené video z YouTube",
|
||||
"{youtubeStart}a-video-id-123456{youtubeEnd}" : "{youtubeStart}identifikator-videa-123456{youtubeEnd}",
|
||||
"Font (name)" : "Písmo (název)",
|
||||
"Font size" : "Velikost písmen",
|
||||
"Font color" : "Barva písma",
|
||||
"Align left" : "Zarovnat vlevo",
|
||||
"Align center" : "Zarovnat na střed",
|
||||
"Align right" : "Zarovnat vpravo",
|
||||
"List" : "Seznam",
|
||||
"{listStart}{item1Start}Hello world!{item2Start}Hello moon!{item2End}{listEnd}" : "{listStart}{item1Start}Ahoj světe!{item2Start}Ahoj Měsíci!{item2End}{listEnd}",
|
||||
"List item within a list" : "Položka seznamu v seznamu",
|
||||
"{itemStart}Hello world!\\r\\n{itemStart}Hello moon!" : "{itemStart}Ahoj světe!\\r\\n{itemStart}Ahoj Měsíci!",
|
||||
"List item within a list (alias)" : "Položka seznamu v seznamu (alternativně)",
|
||||
"{liStart}Hello world!\\r\\n{liEnd}{liStart}Hello moon!{liEnd}" : "{liStart}Ahoj světe!\\r\\n{liEnd}{liStart}Ahoj Měsíci!{liEnd}",
|
||||
"BBCode help" : "Nápověda k BBCode",
|
||||
"Built-in BBCodes" : "Vestavěné BBCode kódy",
|
||||
"These BBCodes are available by default." : "Tyto BBCode kódy jsou k dispozici už ve výchozím stavu.",
|
||||
"Custom BBCodes" : "Uživatelsky určené BBCode kódy",
|
||||
"These BBCodes are custom to this forum and configured by administrators." : "Tyto BBCode kódy jsou uživatelsky určené v rámci tohoto fóra a nastavované správci.",
|
||||
"Example" : "Příklad",
|
||||
"Replacement" : "Nahrazení",
|
||||
"Loading custom BBCodes …" : "Načítání uživatelsky určených BBCode kódů …",
|
||||
"No custom BBCodes configured." : "Nenastaveny žádné uživatelsky určené BBCode kódy.",
|
||||
"Failed to load custom BBCodes" : "Nepodařilo se načíst uživatelsky určené BBCode kódy",
|
||||
"Insert emoji" : "Vložit emotikonu",
|
||||
"Pick a file to attach" : "Vyberte soubor a nasdílejte ho",
|
||||
"_Thread_::_Threads_" : ["Vlákno","Vlákna","Vláken","Vlákna"],
|
||||
"_Post_::_Posts_" : ["Příspěvek","Příspěvky","Příspěvků","Příspěvky"],
|
||||
"No description available" : "Není k dispozici žádný popis",
|
||||
"Page not found" : "Stránka nenalezena",
|
||||
"The page you are looking for could not be found." : "Stránka kterou hledáte nebylo možné nalézt.",
|
||||
"Back" : "Zpět",
|
||||
"Go to home" : "Přejít na úvodní stránku",
|
||||
"Edited" : "Upraveno",
|
||||
"Quote reply" : "Odpovědět s citací",
|
||||
"Edit" : "Upravit",
|
||||
"Delete" : "Smazat",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Opravdu chcete tento příspěvek smazat? Tuto akci nepůjde vzít zpět.",
|
||||
"Unread" : "Nastavit jako nepřečtené",
|
||||
"Edit your post …" : "Upravit váš příspěvek …",
|
||||
"Cancel" : "Zrušit",
|
||||
"Save" : "Uložit",
|
||||
"Are you sure you want to discard your changes?" : "Opravdu chcete vámi provedené změny zahodit?",
|
||||
"Add reaction" : "Přidat reakci",
|
||||
"React with {emoji}" : "Zareagovat {emoji}",
|
||||
"You reacted with {emoji}" : "Zareagovali jste s použitím {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n dalších jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n osoba zareagovala s použitím {emoji}","%n lidé zareagovali s použitím {emoji}","%n lidí zareagovalo s použitím {emoji}","%n lidé zareagovali s použitím {emoji}"],
|
||||
"Write your reply …" : "Napište svou odpověď …",
|
||||
"Post reply" : "Odeslat odpověď",
|
||||
"Are you sure you want to discard your reply?" : "Opravdu chcete svou odpověď zahodit?",
|
||||
"In thread" : "Ve vláknu",
|
||||
"Thread unavailable" : "Vlákno není k dispozici",
|
||||
"Pinned thread" : "Připnuté vlákno",
|
||||
"Locked thread" : "Uzamčené vlákno",
|
||||
"Uncategorized" : "Nezařazeno",
|
||||
"_%n post_::_%n posts_" : ["%n příspěvek","%n příspěvky","%n příspěvků","%n příspěvky"],
|
||||
"_%n view_::_%n views_" : ["%n zobrazení","%n zobrazení","%n zobrazení","%n zobrazení"],
|
||||
"Replies" : "Odpovědi",
|
||||
"Views" : "Zobrazení",
|
||||
"Title" : "Titul",
|
||||
"Enter thread title …" : "Zadejte titulek vlákna …",
|
||||
"Write your first post …" : "Napište svůj první příspěvek …",
|
||||
"Create thread" : "Vytvořit vlákno",
|
||||
"Are you sure you want to discard this thread?" : "Opravdu chcete toto vlákno zahodit?",
|
||||
"Refresh" : "Znovu načíst",
|
||||
"Loading …" : "Načítání …",
|
||||
"No categories yet" : "Zatím ještě žádné kategorie",
|
||||
"Categories will appear here once they are created." : "Kategorie se objeví, jakmile budou vytvořeny.",
|
||||
"No categories in this section" : "Žádné kategorie v této sekci",
|
||||
"Category not found" : "Kategorie nenalezena",
|
||||
"The category you are looking for does not exist or has been removed." : "Kategorie kterou hledáte neexistuje nebo byla odebrána.",
|
||||
"Back to categories" : "Zpět na kategorie",
|
||||
"New thread" : "Nové vlákno",
|
||||
"Error loading category" : "Chyba při načítání kategorie",
|
||||
"No threads yet" : "Zatím žádná vlákna",
|
||||
"Be the first to start a discussion in this category." : "Buďte první kdo začne diskutovat v této kategorii.",
|
||||
"Retry" : "Zkusit znovu",
|
||||
"_Showing %n thread_::_Showing %n threads_" : ["Zobrazuje se %n vlákno","Zobrazují se %n vlákna","Zobrazuje se %n vláken","Zobrazují se %n vlákna"],
|
||||
"An unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||
"No category ID or slug provided" : "Nezadán žádný identifikátor kategorie nebo slug",
|
||||
"Failed to load threads" : "Nepodařilo se načíst vlákna",
|
||||
"Create New Thread" : "Vytvořit nové vlákno",
|
||||
"In {category}" : "V {category}",
|
||||
"Creating thread …" : "Vytváření vlákna …",
|
||||
"Thread created" : "Vlákno vytvořeno",
|
||||
"Failed to create thread" : "Vlákno se nepodařilo vytvořit",
|
||||
"No category specified" : "Neurčena žádná kategorie",
|
||||
"Error" : "Error",
|
||||
"First post" : "První příspěvek",
|
||||
"Threads ({count})" : "Vlákna ({count})",
|
||||
"Replies ({count})" : "Odpovědi ({count})",
|
||||
"No threads" : "Žádná vlákna",
|
||||
"This user has not created any threads yet" : "Tento uživatel zatím nevytvořil žádná vlákna",
|
||||
"No replies" : "Žádné odpovědi",
|
||||
"This user has not posted any replies yet" : "Tento uživatel zatím neposlal žádné odpovědi",
|
||||
"Failed to load user profile" : "Nepodařilo se načíst uživatelský profil",
|
||||
"Enter search query …" : "Zadejte vyhledávací dotaz …",
|
||||
"Search in threads" : "Hledat ve vláknech",
|
||||
"Search in posts" : "Hledat v příspěvcích",
|
||||
"Syntax help" : "Nápověda k syntaxi",
|
||||
"Search syntax" : "Syntaxe vyhledávání",
|
||||
"Match exact phrase" : "Hledat shodu v přesné frázi",
|
||||
"Both terms required" : "Jsou zapotřebí oba pojmy",
|
||||
"Either term matches" : "Postačí shoda s jedním či druhým pojmem",
|
||||
"Group conditions with parentheses" : "Podmínky je možné seskupovat pomocí závorek",
|
||||
"Exclude term from results" : "Vynechat pojem z výsledků",
|
||||
"Searching …" : "Hledání …",
|
||||
"Search Error" : "Chyba hledání",
|
||||
"Enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Use the search box above to find threads and posts" : "Ve vláknech a příspěvcích je možné vyhledávat pomocí kolonky výše",
|
||||
"No results found" : "Nic nenalezeno",
|
||||
"Try different keywords or check your syntax" : "Zkuste jiná klíčová slova nebo zkontrolujte syntaxi",
|
||||
"_%n thread found_::_%n threads found_" : ["Nalezeno %n vlákno","Nalezena %n vlákna","Nalezeno %n vláken","Nalezena %n vlákna"],
|
||||
"_%n post found_::_%n posts found_" : ["Nalezen %n příspěvek","Nalezeny %n příspěvky","Nalezeno %n příspěvků","Nalezeny %n příspěvky"],
|
||||
"Please enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Please select at least one search scope" : "Vyberte alespoň jednu oblast vyhledávání",
|
||||
"Failed to search" : "Nepodařilo se hledat",
|
||||
"Thread not found" : "Vlákno nenalezeno",
|
||||
"The thread you are looking for does not exist or has been removed." : "Vlákno které hledáte neexistuje nebo bylo odebráno.",
|
||||
"Back to {category}" : "Zpět na {category}",
|
||||
"Reply" : "Odpověď",
|
||||
"Error loading thread" : "Chyba při načítání vlákna",
|
||||
"No posts yet" : "Zatím žádné příspěvky",
|
||||
"Be the first to post in this thread." : "Buďte první kdo začne zasílat příspěvky do tohoto vlákna.",
|
||||
"by" : "od",
|
||||
"This thread is locked. Only moderators can post replies." : "Toto vlákno je uzamčeno. Odpovědi mohou zasíat pouze moderátoři.",
|
||||
"_Showing %n post_::_Showing %n posts_" : ["Zobrazování %n příspěvku","Zobrazování %n příspěvků","Zobrazování %n příspěvků","Zobrazování %n příspěvků"],
|
||||
"Lock thread" : "Uzamknout vlákno",
|
||||
"Unlock thread" : "Odemknout vlákno",
|
||||
"Pin thread" : "Připnout vlákno",
|
||||
"Unpin thread" : "Zrušit připnutí vlákna",
|
||||
"Thread locked" : "Vlákno uzamčen",
|
||||
"Thread unlocked" : "Vlákno odemčen",
|
||||
"Thread pinned" : "Vlákno připnuto",
|
||||
"Thread unpinned" : "Připnutí vlákna zrušeno",
|
||||
"Subscribe" : "Přihlásit se k odběru",
|
||||
"Subscribed" : "Přihlášeno se k odběru",
|
||||
"Subscribed to thread" : "Přihlášeno se k odběru vlákna",
|
||||
"Unsubscribed from thread" : "Zrušeno odebírání vlákna",
|
||||
"No thread ID or slug provided" : "Nezadán žádný identifikátor vlákna nebo slug",
|
||||
"Failed to load posts" : "Nepodařilo se načíst příspěvky",
|
||||
"Post updated" : "Příspěvek aktualizován",
|
||||
"Failed to update post" : "Nepodařilo se zaktualizovat příspěvek",
|
||||
"Thread deleted" : "Vlákno smazáno",
|
||||
"Post deleted" : "Příspěvek smazán",
|
||||
"Failed to delete post" : "Příspěvek se nepodařilo smazat",
|
||||
"Failed to update thread lock status" : "Nepodařilo se zaktualizovat stav zámku vlákna",
|
||||
"Failed to update thread pin status" : "Nepodařilo se zaktualizovat stav připnutí vlákna",
|
||||
"Failed to update subscription" : "Nepodařilo se zaktualizovat přihlášení se k odběru",
|
||||
"Preferences" : "Předvolby",
|
||||
"Customize your forum experience" : "Přizpůsobte si svůj dojem z používání fóra",
|
||||
"Loading preferences …" : "Načítání předvoleb …",
|
||||
"Error loading preferences" : "Chyba při načítání předvoleb",
|
||||
"Notifications" : "Upozornění",
|
||||
"Configure how you receive notifications" : "Nastavte jak získáváte upozornění",
|
||||
"Auto-subscribe to threads I create" : "Automaticky se přihlašovat k odběru vláken, která vytvořím",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Pokud zapnuto, automaticky obdržíte upozornění na odpovědi na vlákna, která vytvoříte",
|
||||
"Preferences saved" : "Předvolby uloženy",
|
||||
"Failed to save preferences" : "Nepodařilo se uložit vaše předvolby",
|
||||
"BBCode management" : "Správa BBCode",
|
||||
"Manage custom BBCode tags for post formatting" : "Spravovat uživatelsky určené BBCode značky pro formátování příspěvků",
|
||||
"Error loading BBCodes" : "Chyba při načítání BBCode kódů",
|
||||
"Create BBCode" : "Vytvořit BBCode",
|
||||
"Enable" : "Povolit",
|
||||
"Disable" : "Vypnout",
|
||||
"Enabled BBCodes" : "Povolené BBCode kódy",
|
||||
"These BBCode tags are currently active" : "Tyto BBCode značky jsou v tuto chvíli aktivní",
|
||||
"Disabled BBCodes" : "Zakázané BBCode kódy",
|
||||
"These BBCode tags are currently inactive" : "V tuto chvíli jsou neaktivní tyto BBCode značky",
|
||||
"No enabled BBCodes" : "Žádné povolené BBCode kódy",
|
||||
"Parses Inner" : "Zpracovává vnitřní",
|
||||
"Delete BBCode" : "Smazat BBCode",
|
||||
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Opravdu chcete BBCode značku [{tag}] smazat?",
|
||||
"This action cannot be undone." : "Tuto akci není možné vzít zpět.",
|
||||
"Edit BBCode" : "Upravit BBCode",
|
||||
"Tag" : "Štítek",
|
||||
"e.g., b, i, url, color" : "např. b, i, url, color",
|
||||
"The BBCode tag name (without brackets)" : "Název BBCode značky (bez závorek)",
|
||||
"HTML replacement" : "HTML nahrazení",
|
||||
"e.g., {strongStart}{content}{strongEnd}" : "např., {strongStart}{content}{strongEnd}",
|
||||
"Use {content} for the tag content and {paramName} for parameters" : "Použijte {content} pro obsah značky a {paramName} pro parametry k ní",
|
||||
"Example usage of this BBCode tag" : "Ukázka použití této BBCode značky",
|
||||
"Description" : "Popis",
|
||||
"Brief description of what this BBCode does" : "Stručný popis toho, co tento BBCode dělá",
|
||||
"Enabled" : "Zapnuto",
|
||||
"Parse inner content" : "Zpracovat vnitřní obsah",
|
||||
"If enabled, BBCode tags inside this tag will also be parsed" : "Pokud zapnuto, značky BBCode uvnitř této značky budou zpracovány také",
|
||||
"Update" : "Aktualizovat",
|
||||
"Create" : "Vytvářet",
|
||||
"Create category" : "Vytvořit kategorii",
|
||||
"Edit category" : "Upravit kategorii",
|
||||
"Configure category details" : "Podrobnosti nastaveni kategorie",
|
||||
"Basic information" : "Základní informace",
|
||||
"Category header" : "Záhlaví kategorie",
|
||||
"-- Select a header --" : "-- Vybrat záhlaví --",
|
||||
"Name" : "Název",
|
||||
"Enter category name" : "Zadejte název kategorie",
|
||||
"Slug" : "Slug",
|
||||
"URL-friendly identifier (e.g., \"{slug}\")" : "Identifikátor vhodný pro URL (např. „{slug}“)",
|
||||
"Enter category description (optional)" : "Zadejte popis kategorie (volitelné)",
|
||||
"Sort order" : "Pořadí řazení",
|
||||
"0" : "0",
|
||||
"Lower numbers appear first" : "Nižší čísla se objeví jako první",
|
||||
"New" : "Nové",
|
||||
"Create category header" : "Vytvořit záhlaví kategorie",
|
||||
"Edit category header" : "Upravit záhlaví kategorie",
|
||||
"Header name" : "Název záhlaví",
|
||||
"Enter header name" : "Zadejte název pro záhlaví",
|
||||
"Header description" : "Popis záhlaví",
|
||||
"Enter header description (optional)" : "Zadejte popis záhlaví (volitelné)",
|
||||
"Permissions" : "Oprávnění",
|
||||
"Control which roles can access and moderate this category" : "Určete které role mohou k této kategorii přistupovat a moderovat v ní",
|
||||
"Roles that can view" : "Role, které mohou zobrazovat",
|
||||
"Select roles that can view this category and its threads" : "Vyberte role které si mohou zobrazovat tuto kategorii a její vlákna",
|
||||
"Roles that can moderate" : "Role, které mohou moderovat",
|
||||
"Select roles that can moderate (edit/delete) content in this category" : "Vyberte role které mohou moderovat (upravovat/mazat) obsah v této kategorii",
|
||||
"Select roles …" : "Vybrat role …",
|
||||
"Manage forum categories and organization" : "Spravovat kategorie fóra a organizování",
|
||||
"Error loading categories" : "Chyba při načítání kategorií",
|
||||
"No categories in this header" : "Žádné kategorie v tomto záhlaví",
|
||||
"Delete category" : "Smazat kategorii",
|
||||
"Are you sure you want to delete the category \"{name}\"?" : "Opravdu chcete kategorii „{name}“ smazat?",
|
||||
"_This category contains %n thread._::_This category contains %n threads._" : ["Tato kategorie obsahuje %n vlákno.","Tato kategorie obsahuje %n vlákna.","Tato kategorie obsahuje %n vláken.","Tato kategorie obsahuje %n vlákna."],
|
||||
"What should happen to the threads?" : "Co se má stát s těmito vlákny?",
|
||||
"Move threads to another category" : "Přesunout vlákna do jiné kategorie",
|
||||
"Delete all threads (soft delete)" : "Smazat všechna vlákna („měkké“ smazání)",
|
||||
"Threads will be hidden but not permanently deleted" : "Vlákna budou skryta, ale ještě ne smazána",
|
||||
"Select target category" : "Vyberte cílovou kategorii",
|
||||
"-- Select a category --" : "-- Vybrat kategorii --",
|
||||
"Create header" : "Vytvořit záhlaví",
|
||||
"_%n category_::_%n categories_" : ["%n kategorie","%n kategorie","%n kategorií","%n kategorie"],
|
||||
"_%n thread_::_%n threads_" : ["%n vlákno","%n vlákna","%n vláken","%n vlákna"],
|
||||
"Delete header" : "Smazat záhlaví",
|
||||
"Are you sure you want to delete the header \"{name}\"?" : "Opravdu chcete záhlaví „{name}“ smazat?",
|
||||
"_This header contains %n category._::_This header contains %n categories._" : ["Toto záhlaví obsahuje %n kategorii.","Toto záhlaví obsahuje %n kategorie.","Toto záhlaví obsahuje %n kategorií.","Toto záhlaví obsahuje %n kategorie."],
|
||||
"This action cannot be undone" : "Tuto akci není možné vzít zpět",
|
||||
"What should happen to the categories?" : "Co se má stát s těmito kategoriemi?",
|
||||
"Move categories to another header" : "Přesunout kategorie do jiného záhlaví",
|
||||
"Delete all categories" : "Smazat všechny kategorie",
|
||||
"All categories and their threads will be permanently deleted" : "Veškeré kategorie a vlákna v nich budou nevratně smazány",
|
||||
"Select target header" : "Vybrat cílové záhlaví",
|
||||
"Move up" : "Přesunout výše",
|
||||
"Move down" : "Přesunout dolů",
|
||||
"Admin dashboard" : "Přehled správce",
|
||||
"Overview of forum activity and statistics" : "Přehled aktivity na fóru a statistiky",
|
||||
"Loading statistics …" : "Načítání statistik …",
|
||||
"Error loading dashboard" : "Chyba při načítání přehledu",
|
||||
"Total statistics" : "Celkové statistiky",
|
||||
"Total users" : "Celkem uživatelů",
|
||||
"Total threads" : "Celkem vláken",
|
||||
"Total posts" : "Celkem příspěvků",
|
||||
"Total categories" : "Celkem kategorií",
|
||||
"Recent activity (last 7 days)" : "Nedávná aktivita (uplynulých 7 dnů)",
|
||||
"New users" : "Nový uživatelé",
|
||||
"New threads" : "Nová vlákna",
|
||||
"New posts" : "Nové příspěvky",
|
||||
"Top contributors" : "Nejaktivnější přispěvatelé",
|
||||
"No contributors yet" : "Zatím žádní přispěvatelé",
|
||||
"Last 7 days" : "Uplynulých 7 dnů",
|
||||
"All time" : "Na vždy",
|
||||
"General settings" : "Obecná nastavení",
|
||||
"Configure general forum settings" : "Obecná nastavení fóra",
|
||||
"Loading settings …" : "Načítání nastavení …",
|
||||
"Error loading settings" : "Chyba při načítání nastavení",
|
||||
"Appearance" : "Vzhled",
|
||||
"Customize how your forum looks to users" : "Přizpůsobit jako vaše fórum vypadá pro uživatele",
|
||||
"Forum title" : "Titulek fóra",
|
||||
"Displayed at the top of the forum home page" : "Zobrazováno v horní části domovské stránky fóra",
|
||||
"Forum subtitle" : "Podtitul fóra",
|
||||
"Welcome to the forum" : "Vítejte ve fóru",
|
||||
"A brief description shown below the title" : "Stručný popis zobrazený pod titulkem",
|
||||
"Settings saved" : "Nastavení uložena",
|
||||
"Failed to save settings" : "Nastavení se nepodařilo uložit",
|
||||
"Create role" : "Vytvořit rol",
|
||||
"Edit role" : "Upravit roli",
|
||||
"Configure role permissions and category access" : "Nastavit oprávnění rolí a přístupu ke kategoriím",
|
||||
"Error loading role" : "Chyba při načítání role",
|
||||
"Enter role name" : "Zadejte název role",
|
||||
"Enter role description (optional)" : "Zadejte popis role (volitelné)",
|
||||
"System role names cannot be changed" : "Názvy systémových rolí není možné měnit",
|
||||
"Colors" : "Barvy",
|
||||
"Set colors for this role badge" : "Nastavit barvy pro odznáček této role",
|
||||
"Light mode color" : "Barva světlého režimu",
|
||||
"Dark mode color" : "Barva tmavého režim",
|
||||
"Reset" : "Vrátit na výchozí",
|
||||
"Role permissions" : "Oprávnění role",
|
||||
"Set global permissions for this role" : "Nastavit globální oprávnění pro tuto roli",
|
||||
"Can access admin tools" : "Může přistupovat k nástrojům pro správu",
|
||||
"Allow access to the admin dashboard and tools" : "Umožnit přístup k přehledu správce a nástrojům",
|
||||
"Can edit roles" : "Může upravovat role",
|
||||
"Allow creating, editing and deleting roles" : "Umožnit vytváření, upravování a mazání rolí",
|
||||
"Can edit categories" : "Může upravovat kategorie",
|
||||
"Allow creating, editing and deleting categories" : "Umožnit vytváření, upravování a mazání kategorií",
|
||||
"Category permissions" : "Oprávnění kategorie",
|
||||
"Set which categories this role can access" : "Nastavit ke kterým kategoriím tato role může přistupovat",
|
||||
"Category" : "Kategorie",
|
||||
"Can view" : "Může zobrazovat",
|
||||
"Can moderate" : "Může moderovat",
|
||||
"Allow" : "Umožnit",
|
||||
"No categories available" : "Nejsou k dispozici žádné kategorie",
|
||||
"Admin role has full access to all categories" : "Role správce má plný přístup do všech kategorií",
|
||||
"Role management" : "Správa rolí",
|
||||
"Create and manage forum roles and permissions" : "Vytvořit a spravovat role v rámci fóra a jejich oprávnění",
|
||||
"Loading roles …" : "Načítání rolí …",
|
||||
"Error loading roles" : "Chyba při načítání rolí",
|
||||
"No roles found" : "Nenalezeny žádné role",
|
||||
"Create your first role to get started" : "Začněte vytvořením první role",
|
||||
"ID" : "Identif.",
|
||||
"Created" : "Vytvořeno",
|
||||
"Actions" : "Akce",
|
||||
"No description" : "Bez popisu",
|
||||
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Opravdu chcete roli „{name}“ smazat? Tuto akci nepůjde vzít zpět.",
|
||||
"System roles cannot be deleted" : "Systémové role není možné smazat",
|
||||
"User management" : "Správa uživatelů",
|
||||
"Manage forum users, roles and permissions" : "Spravovat uživatele fóra, role a oprávnění",
|
||||
"Loading users …" : "Načítání uživatelů …",
|
||||
"Error loading users" : "Chyba při načítání uživatelů",
|
||||
"No users found" : "Nenalezeni žádní uživatelé",
|
||||
"There are no forum users yet" : "Zatím zde nejsou žádní uživatelé fóra",
|
||||
"Posts" : "Příspěvků",
|
||||
"Joined" : "Připojený",
|
||||
"Status" : "Stav",
|
||||
"Active" : "Aktivní",
|
||||
"Deleted" : "Smazáno",
|
||||
"No roles" : "Žádné role",
|
||||
"Select roles" : "Vybrat role",
|
||||
"Edit roles" : "Upravit role",
|
||||
"Edit user roles" : "Upravit role uživatelů"
|
||||
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
|
||||
}
|
||||
38
l10n/cy_GB.js
Normal file
38
l10n/cy_GB.js
Normal file
@@ -0,0 +1,38 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Fforwm",
|
||||
"Admin" : "Gweinyddwr",
|
||||
"Moderator" : "Cymedrolwr",
|
||||
"User" : "Defnyddwyr",
|
||||
"General" : "Cyffredinol",
|
||||
"Search" : "Chwilio",
|
||||
"Home" : "Cartref",
|
||||
"Dashboard" : "Bwrdd Rheoli",
|
||||
"Users" : "Defnyddwyr",
|
||||
"Categories" : "Categorïau",
|
||||
"List" : "Rhestr",
|
||||
"Page not found" : "Heb ganfod y dudalen",
|
||||
"Edit" : "Golygu",
|
||||
"Delete" : "Dileu",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Cadw",
|
||||
"Uncategorized" : "Dim categori",
|
||||
"Views" : "Dangosiadau",
|
||||
"Refresh" : "Ail-lwytho",
|
||||
"Retry" : "Ceisio eto",
|
||||
"Error" : "Gwall",
|
||||
"by" : "gan",
|
||||
"Subscribe" : "Tanysgrifio",
|
||||
"Disable" : "Analluogi",
|
||||
"Description" : "Disgrifiad",
|
||||
"Update" : "Diweddaru",
|
||||
"Name" : "Enw",
|
||||
"New" : "Newydd",
|
||||
"Category" : "Categori",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Gweithredoedd",
|
||||
"Status" : "Statws",
|
||||
"Deleted" : "Wedi dileu"
|
||||
},
|
||||
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");
|
||||
36
l10n/cy_GB.json
Normal file
36
l10n/cy_GB.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Fforwm",
|
||||
"Admin" : "Gweinyddwr",
|
||||
"Moderator" : "Cymedrolwr",
|
||||
"User" : "Defnyddwyr",
|
||||
"General" : "Cyffredinol",
|
||||
"Search" : "Chwilio",
|
||||
"Home" : "Cartref",
|
||||
"Dashboard" : "Bwrdd Rheoli",
|
||||
"Users" : "Defnyddwyr",
|
||||
"Categories" : "Categorïau",
|
||||
"List" : "Rhestr",
|
||||
"Page not found" : "Heb ganfod y dudalen",
|
||||
"Edit" : "Golygu",
|
||||
"Delete" : "Dileu",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Cadw",
|
||||
"Uncategorized" : "Dim categori",
|
||||
"Views" : "Dangosiadau",
|
||||
"Refresh" : "Ail-lwytho",
|
||||
"Retry" : "Ceisio eto",
|
||||
"Error" : "Gwall",
|
||||
"by" : "gan",
|
||||
"Subscribe" : "Tanysgrifio",
|
||||
"Disable" : "Analluogi",
|
||||
"Description" : "Disgrifiad",
|
||||
"Update" : "Diweddaru",
|
||||
"Name" : "Enw",
|
||||
"New" : "Newydd",
|
||||
"Category" : "Categori",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Gweithredoedd",
|
||||
"Status" : "Statws",
|
||||
"Deleted" : "Wedi dileu"
|
||||
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
|
||||
}
|
||||
77
l10n/da.js
Normal file
77
l10n/da.js
Normal file
@@ -0,0 +1,77 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Modeator",
|
||||
"User" : "Bruger",
|
||||
"General" : "Generelt",
|
||||
"Support" : "Support",
|
||||
"Bold text" : "Fed tekst",
|
||||
"Underlined text" : "Understreget tekst",
|
||||
"Search" : "Søg",
|
||||
"Home" : "Hjem",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Brugere",
|
||||
"Categories" : "Kategorier",
|
||||
"Expand" : "Udvid",
|
||||
"Collapse" : "Sammenfold",
|
||||
"Code" : "Kode",
|
||||
"Quote" : "Citat",
|
||||
"Font size" : "Skriftstørrelse",
|
||||
"List" : "Liste",
|
||||
"Insert emoji" : "Indsæt emoji",
|
||||
"Page not found" : "Siden blev ikke fundet",
|
||||
"Back" : "Tilbage",
|
||||
"Edit" : "Redigér",
|
||||
"Delete" : "Slet",
|
||||
"Unread" : "Ulæst",
|
||||
"Cancel" : "Annullér",
|
||||
"Save" : "Gem",
|
||||
"Uncategorized" : "Udenfor kategori",
|
||||
"Views" : "Visninger",
|
||||
"Title" : "Titel",
|
||||
"Refresh" : "Opdatér",
|
||||
"Loading …" : "Indlæser ...",
|
||||
"Retry" : "Prøv igen",
|
||||
"Error" : "Fejl",
|
||||
"Searching …" : "Søger …",
|
||||
"No results found" : "Ingen resultater fundet",
|
||||
"Back to {category}" : "Tilbage til {category}",
|
||||
"Reply" : "Svar",
|
||||
"by" : "af",
|
||||
"Subscribe" : "Tilmeld",
|
||||
"Subscribed" : "Abonneret",
|
||||
"Preferences" : "Indstillinger",
|
||||
"Notifications" : "Påmindelser",
|
||||
"Enable" : "Aktiver",
|
||||
"Disable" : "Deaktiver",
|
||||
"This action cannot be undone." : "Denne handling kan ikke fortrydes.",
|
||||
"Description" : "Beskrivelse",
|
||||
"Enabled" : "Aktiveret",
|
||||
"Update" : "Opdatér",
|
||||
"Create" : "Opret",
|
||||
"Name" : "Navn",
|
||||
"Sort order" : "Sorteringsrækkefølge",
|
||||
"New" : "Nyt",
|
||||
"Permissions" : "Rettigheder",
|
||||
"Move up" : "Flyt op",
|
||||
"Move down" : "Flyt ned",
|
||||
"Last 7 days" : "Sidste 7 dage",
|
||||
"General settings" : "Generelle indstillinger",
|
||||
"Appearance" : "Udseende",
|
||||
"Settings saved" : "Indstillinger gemt",
|
||||
"Failed to save settings" : "Kunne ikke gemme indstillinger",
|
||||
"Reset" : "Nulstil",
|
||||
"Category" : "Kategori",
|
||||
"Allow" : "Tillad",
|
||||
"ID" : "ID",
|
||||
"Created" : "Oprettet",
|
||||
"Actions" : "Handlinger",
|
||||
"Loading users …" : "Henter brugere ...",
|
||||
"No users found" : "Ingen brugere fundet",
|
||||
"Joined" : "Forbind",
|
||||
"Status" : "Status",
|
||||
"Deleted" : "Slettet"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
75
l10n/da.json
Normal file
75
l10n/da.json
Normal file
@@ -0,0 +1,75 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Modeator",
|
||||
"User" : "Bruger",
|
||||
"General" : "Generelt",
|
||||
"Support" : "Support",
|
||||
"Bold text" : "Fed tekst",
|
||||
"Underlined text" : "Understreget tekst",
|
||||
"Search" : "Søg",
|
||||
"Home" : "Hjem",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Brugere",
|
||||
"Categories" : "Kategorier",
|
||||
"Expand" : "Udvid",
|
||||
"Collapse" : "Sammenfold",
|
||||
"Code" : "Kode",
|
||||
"Quote" : "Citat",
|
||||
"Font size" : "Skriftstørrelse",
|
||||
"List" : "Liste",
|
||||
"Insert emoji" : "Indsæt emoji",
|
||||
"Page not found" : "Siden blev ikke fundet",
|
||||
"Back" : "Tilbage",
|
||||
"Edit" : "Redigér",
|
||||
"Delete" : "Slet",
|
||||
"Unread" : "Ulæst",
|
||||
"Cancel" : "Annullér",
|
||||
"Save" : "Gem",
|
||||
"Uncategorized" : "Udenfor kategori",
|
||||
"Views" : "Visninger",
|
||||
"Title" : "Titel",
|
||||
"Refresh" : "Opdatér",
|
||||
"Loading …" : "Indlæser ...",
|
||||
"Retry" : "Prøv igen",
|
||||
"Error" : "Fejl",
|
||||
"Searching …" : "Søger …",
|
||||
"No results found" : "Ingen resultater fundet",
|
||||
"Back to {category}" : "Tilbage til {category}",
|
||||
"Reply" : "Svar",
|
||||
"by" : "af",
|
||||
"Subscribe" : "Tilmeld",
|
||||
"Subscribed" : "Abonneret",
|
||||
"Preferences" : "Indstillinger",
|
||||
"Notifications" : "Påmindelser",
|
||||
"Enable" : "Aktiver",
|
||||
"Disable" : "Deaktiver",
|
||||
"This action cannot be undone." : "Denne handling kan ikke fortrydes.",
|
||||
"Description" : "Beskrivelse",
|
||||
"Enabled" : "Aktiveret",
|
||||
"Update" : "Opdatér",
|
||||
"Create" : "Opret",
|
||||
"Name" : "Navn",
|
||||
"Sort order" : "Sorteringsrækkefølge",
|
||||
"New" : "Nyt",
|
||||
"Permissions" : "Rettigheder",
|
||||
"Move up" : "Flyt op",
|
||||
"Move down" : "Flyt ned",
|
||||
"Last 7 days" : "Sidste 7 dage",
|
||||
"General settings" : "Generelle indstillinger",
|
||||
"Appearance" : "Udseende",
|
||||
"Settings saved" : "Indstillinger gemt",
|
||||
"Failed to save settings" : "Kunne ikke gemme indstillinger",
|
||||
"Reset" : "Nulstil",
|
||||
"Category" : "Kategori",
|
||||
"Allow" : "Tillad",
|
||||
"ID" : "ID",
|
||||
"Created" : "Oprettet",
|
||||
"Actions" : "Handlinger",
|
||||
"Loading users …" : "Henter brugere ...",
|
||||
"No users found" : "Ingen brugere fundet",
|
||||
"Joined" : "Forbind",
|
||||
"Status" : "Status",
|
||||
"Deleted" : "Slettet"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
91
l10n/de.js
Normal file
91
l10n/de.js
Normal file
@@ -0,0 +1,91 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Administration",
|
||||
"Moderator" : "Moderation",
|
||||
"User" : "Benutzer",
|
||||
"General" : "Allgemein",
|
||||
"Support" : "Support",
|
||||
"Bold text" : "Fetter Text",
|
||||
"Underlined text" : "Unterstrichener Text",
|
||||
"Deleted user" : "Gelöschter Benutzer",
|
||||
"Search" : "Suche",
|
||||
"Home" : "Startseite",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Benutzer",
|
||||
"Categories" : "Kategorien",
|
||||
"Expand" : "Erweitern",
|
||||
"Collapse" : "Zuklappen",
|
||||
"Code" : "Quelltext",
|
||||
"Quote" : "Zitat",
|
||||
"Font size" : "Schriftgröße",
|
||||
"Align left" : "Linksbündig",
|
||||
"Align center" : "Zentriert ausrichten",
|
||||
"Align right" : "Rechtsbündig",
|
||||
"List" : "Liste",
|
||||
"Insert emoji" : "Emoji einfügen",
|
||||
"Page not found" : "Seite nicht gefunden",
|
||||
"Back" : "Zurück",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Delete" : "Löschen",
|
||||
"Unread" : "Ungelesen",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Save" : "Speichern",
|
||||
"React with {emoji}" : "Mit {emoji} reagieren",
|
||||
"Uncategorized" : "Ohne Kategorie",
|
||||
"Views" : "Ansichten",
|
||||
"Title" : "Titel",
|
||||
"Refresh" : "Aktualisieren",
|
||||
"Loading …" : "Lade …",
|
||||
"Retry" : "Wiederholen",
|
||||
"In {category}" : "In {category}",
|
||||
"Error" : "Fehler",
|
||||
"Searching …" : "Suche …",
|
||||
"No results found" : "Keine Ergebnisse gefunden",
|
||||
"Back to {category}" : "Zurück zu {category}",
|
||||
"Reply" : "Antwort",
|
||||
"by" : "von",
|
||||
"Subscribe" : "Abonnieren",
|
||||
"Subscribed" : "Abonniert",
|
||||
"Preferences" : "Einstellungen",
|
||||
"Notifications" : "Benachrichtigungen",
|
||||
"Enable" : "Aktivieren",
|
||||
"Disable" : "Deaktivieren",
|
||||
"This action cannot be undone." : "Dies kann nicht rückgängig gemacht werden.",
|
||||
"Tag" : "Schlagwort",
|
||||
"Description" : "Beschreibung",
|
||||
"Enabled" : "Aktiviert",
|
||||
"Update" : "Aktualisieren",
|
||||
"Create" : "Erstellen",
|
||||
"Name" : "Name",
|
||||
"Enter category name" : "Kategorienamen eingeben",
|
||||
"Sort order" : "Sortierung",
|
||||
"0" : "0",
|
||||
"New" : "Neu",
|
||||
"Permissions" : "Berechtigungen",
|
||||
"Move up" : "Nach oben verschieben",
|
||||
"Move down" : "Nach unten verschieben",
|
||||
"Total users" : "Benutzer gesamt",
|
||||
"Last 7 days" : "Die letzten 7 Tage",
|
||||
"All time" : "Gesamte Zeit",
|
||||
"General settings" : "Allgemeine Einstellungen",
|
||||
"Appearance" : "Aussehen",
|
||||
"Settings saved" : "Einstellungen gespeichert",
|
||||
"Failed to save settings" : "Einstellungen konnten nicht gespeichert werden",
|
||||
"Reset" : "Zurücksetzen",
|
||||
"Category" : "Kategorie",
|
||||
"Allow" : "Zulassen",
|
||||
"ID" : "ID",
|
||||
"Created" : "Erstellt",
|
||||
"Actions" : "Aktionen",
|
||||
"No description" : "Keine Beschreibung",
|
||||
"User management" : "Benutzerverwaltung",
|
||||
"Loading users …" : "Lade Benutzer …",
|
||||
"No users found" : "Keine Benutzer gefunden",
|
||||
"Joined" : "Beigetreten",
|
||||
"Status" : "Status",
|
||||
"Active" : "Aktiv",
|
||||
"Deleted" : "Gelöscht"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
89
l10n/de.json
Normal file
89
l10n/de.json
Normal file
@@ -0,0 +1,89 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Administration",
|
||||
"Moderator" : "Moderation",
|
||||
"User" : "Benutzer",
|
||||
"General" : "Allgemein",
|
||||
"Support" : "Support",
|
||||
"Bold text" : "Fetter Text",
|
||||
"Underlined text" : "Unterstrichener Text",
|
||||
"Deleted user" : "Gelöschter Benutzer",
|
||||
"Search" : "Suche",
|
||||
"Home" : "Startseite",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Benutzer",
|
||||
"Categories" : "Kategorien",
|
||||
"Expand" : "Erweitern",
|
||||
"Collapse" : "Zuklappen",
|
||||
"Code" : "Quelltext",
|
||||
"Quote" : "Zitat",
|
||||
"Font size" : "Schriftgröße",
|
||||
"Align left" : "Linksbündig",
|
||||
"Align center" : "Zentriert ausrichten",
|
||||
"Align right" : "Rechtsbündig",
|
||||
"List" : "Liste",
|
||||
"Insert emoji" : "Emoji einfügen",
|
||||
"Page not found" : "Seite nicht gefunden",
|
||||
"Back" : "Zurück",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Delete" : "Löschen",
|
||||
"Unread" : "Ungelesen",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Save" : "Speichern",
|
||||
"React with {emoji}" : "Mit {emoji} reagieren",
|
||||
"Uncategorized" : "Ohne Kategorie",
|
||||
"Views" : "Ansichten",
|
||||
"Title" : "Titel",
|
||||
"Refresh" : "Aktualisieren",
|
||||
"Loading …" : "Lade …",
|
||||
"Retry" : "Wiederholen",
|
||||
"In {category}" : "In {category}",
|
||||
"Error" : "Fehler",
|
||||
"Searching …" : "Suche …",
|
||||
"No results found" : "Keine Ergebnisse gefunden",
|
||||
"Back to {category}" : "Zurück zu {category}",
|
||||
"Reply" : "Antwort",
|
||||
"by" : "von",
|
||||
"Subscribe" : "Abonnieren",
|
||||
"Subscribed" : "Abonniert",
|
||||
"Preferences" : "Einstellungen",
|
||||
"Notifications" : "Benachrichtigungen",
|
||||
"Enable" : "Aktivieren",
|
||||
"Disable" : "Deaktivieren",
|
||||
"This action cannot be undone." : "Dies kann nicht rückgängig gemacht werden.",
|
||||
"Tag" : "Schlagwort",
|
||||
"Description" : "Beschreibung",
|
||||
"Enabled" : "Aktiviert",
|
||||
"Update" : "Aktualisieren",
|
||||
"Create" : "Erstellen",
|
||||
"Name" : "Name",
|
||||
"Enter category name" : "Kategorienamen eingeben",
|
||||
"Sort order" : "Sortierung",
|
||||
"0" : "0",
|
||||
"New" : "Neu",
|
||||
"Permissions" : "Berechtigungen",
|
||||
"Move up" : "Nach oben verschieben",
|
||||
"Move down" : "Nach unten verschieben",
|
||||
"Total users" : "Benutzer gesamt",
|
||||
"Last 7 days" : "Die letzten 7 Tage",
|
||||
"All time" : "Gesamte Zeit",
|
||||
"General settings" : "Allgemeine Einstellungen",
|
||||
"Appearance" : "Aussehen",
|
||||
"Settings saved" : "Einstellungen gespeichert",
|
||||
"Failed to save settings" : "Einstellungen konnten nicht gespeichert werden",
|
||||
"Reset" : "Zurücksetzen",
|
||||
"Category" : "Kategorie",
|
||||
"Allow" : "Zulassen",
|
||||
"ID" : "ID",
|
||||
"Created" : "Erstellt",
|
||||
"Actions" : "Aktionen",
|
||||
"No description" : "Keine Beschreibung",
|
||||
"User management" : "Benutzerverwaltung",
|
||||
"Loading users …" : "Lade Benutzer …",
|
||||
"No users found" : "Keine Benutzer gefunden",
|
||||
"Joined" : "Beigetreten",
|
||||
"Status" : "Status",
|
||||
"Active" : "Aktiv",
|
||||
"Deleted" : "Gelöscht"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
203
l10n/de_DE.js
Normal file
203
l10n/de_DE.js
Normal file
@@ -0,0 +1,203 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Forum",
|
||||
"Welcome to the forum!" : "Willkommen in den Nextcloud Foren!",
|
||||
"Admin" : "Administration",
|
||||
"Administrator role with full permissions" : "Administrationsrolle mit vollen Berechtigungen",
|
||||
"Moderator" : "Moderation",
|
||||
"Moderator role with elevated permissions" : "Moderatorenrolle mit erweiterten Berechtigungen",
|
||||
"User" : "Benutzer",
|
||||
"Default user role with basic permissions" : "Standardbenutzerrolle mit grundlegenden Berechtigungen",
|
||||
"General" : "Allgemein",
|
||||
"General discussion categories" : "Kategorien für Allgemeine Diskussionen",
|
||||
"General discussions" : "Allgemeine Diskussionen",
|
||||
"A place for general conversations and discussions" : "Ein Ort für allgemeine Gespräche und Diskussionen",
|
||||
"Support" : "Support",
|
||||
"Ask questions about the forum, provide feedback or report issues." : "Fragen zum Forum stellen, Feedback geben oder Probleme melden.",
|
||||
"[icode]inline code[/icode]" : "[icode]Inline-Code[/icode]",
|
||||
"Inline code" : "Inline-Code",
|
||||
"[spoiler=\"%1$s\"]%2$s[/spoiler]" : "[spoiler=\"%1$s\"]%2$s[/spoiler]",
|
||||
"Spoilers" : "Spoilerwarnung",
|
||||
"Attachment" : "Anhang",
|
||||
"Welcome to Nextcloud Forums" : "Willkommen in den Nextcloud Foren",
|
||||
"Welcome to the Nextcloud Forums!" : "Willkommen in den Nextcloud Foren!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Dies ist ein Community-Forum, das direkt in Ihre Nextcloud-Instanz integriert ist. Hier können Sie Themen diskutieren, Ideen austauschen und mit anderen Nutzern zusammenarbeiten.",
|
||||
"Features:" : "Funktionen:",
|
||||
"Create and reply to threads" : "Threads erstellen und beantworten",
|
||||
"Organize discussions by categories" : "Die Diskussionen nach Kategorien ordnen",
|
||||
"Use BBCode for rich text formatting" : "BBCode für Rich-Text-Formatierung verwenden",
|
||||
"Attach files from your Nextcloud storage" : "Dateien aus Ihrem Nextcloud-Speicher hinzufügen",
|
||||
"React to posts" : "Auf Beiträge reagieren",
|
||||
"Track read/unread threads" : "Gelesene/ungelesene Threads verfolgen",
|
||||
"BBCode examples:" : "BBCode-Beispiele:",
|
||||
"Bold text" : "Fetter Text",
|
||||
"Use %1$stext%2$s" : "%1$sText%2$s verwenden",
|
||||
"Italic text" : "Kursiver Text",
|
||||
"Underlined text" : "Unterstrichener Text",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Gerne eine neue Diskussion starten oder auf bestehende Beiträge antworten. Viel Spaß beim Posten!",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} neue Antwort in {thread}","{count} neue Antworten in {thread}"],
|
||||
"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.",
|
||||
"Search" : "Suche",
|
||||
"Home" : "Startseite",
|
||||
"User preferences" : "Benutzereinstellungen",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Forum settings" : "Forumeinstellungen",
|
||||
"Users" : "Personen",
|
||||
"Roles" : "Rollen",
|
||||
"Categories" : "Kategorien",
|
||||
"BBCodes" : "BBCodes",
|
||||
"Expand" : "Erweitern",
|
||||
"Collapse" : "Zuklappen",
|
||||
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Bitte beachten:{bEnd} Angehängte Dateien sind für alle im Forum sichtbar, unabhängig von den Freigabeeinstellungen der Datei.",
|
||||
"Font style bold" : "Schriftart fett",
|
||||
"Font style italic" : "Schriftart kursiv",
|
||||
"Font style struck through" : "Schriftart durchgestrichen",
|
||||
"Font style underlined" : "Schriftart unterstrichen",
|
||||
"Code" : "Quelltext",
|
||||
"Email (clickable)" : "E-Mail (anklickbar)",
|
||||
"{emailStart}test@example.com{emailEnd}" : "{emailStart}test@beispiel.com{emailEnd}",
|
||||
"URL (clickable)" : "URL (anklickbar)",
|
||||
"{urlStart}Example.com{urlEnd}" : "{urlStart}Beispiel.com{urlEnd}",
|
||||
"Image (not clickable)" : "Bild (nicht anklickbar)",
|
||||
"{imgStart}http://example.com/example.png{imgEnd}" : "{imgStart}http://beispiel.com/beispiel.png{imgEnd}",
|
||||
"Quote" : "Zitat",
|
||||
"Embedded YouTube video" : "Eingebettetes YouTube-Video",
|
||||
"{youtubeStart}a-video-id-123456{youtubeEnd}" : "{youtubeStart}eine-video-id-123456{youtubeEnd}",
|
||||
"Font (name)" : "Schriftart (Name)",
|
||||
"Font size" : "Schriftgröße",
|
||||
"Font color" : "Schriftfarbe",
|
||||
"Align left" : "Linksbündig ausrichten",
|
||||
"Align center" : "Zentriert ausrichten",
|
||||
"Align right" : "Rechtsbündig ausrichten",
|
||||
"List" : "Liste",
|
||||
"{listStart}{item1Start}Hello world!{item2Start}Hello moon!{item2End}{listEnd}" : "{listStart}{item1Start}Hallo Welt!{item2Start}Hallo Mond!{item2End}{listEnd}",
|
||||
"List item within a list" : "Listenelement innerhalb einer Liste",
|
||||
"{itemStart}Hello world!\\r\\n{itemStart}Hello moon!" : "{itemStart}Hallo Welt!\\r\\n{itemStart}Hallo Mond!",
|
||||
"List item within a list (alias)" : "Listenelement innerhalb einer Liste (Alias)",
|
||||
"{liStart}Hello world!\\r\\n{liEnd}{liStart}Hello moon!{liEnd}" : "{liStart}Hallo Welt!\\r\\n{liEnd}{liStart}Hallo Mond!{liEnd}",
|
||||
"BBCode help" : "BBCode-Hilfe",
|
||||
"Built-in BBCodes" : "Vorgefertigte BBCodes",
|
||||
"These BBCodes are available by default." : "Diese BBCodes sind standardmäßig verfügbar.",
|
||||
"Custom BBCodes" : "Maßgeschneiderte BBCodes",
|
||||
"Example" : "Beispiel",
|
||||
"Replacement" : "Ersatz",
|
||||
"Insert emoji" : "Emoji einfügen",
|
||||
"Pick a file to attach" : "Wähle eine Datei zum Anhängen aus",
|
||||
"No description available" : "Keine Beschreibung verfügbar",
|
||||
"Page not found" : "Seite nicht gefunden",
|
||||
"Back" : "Zurück",
|
||||
"Go to home" : "Zur Startseite",
|
||||
"Edited" : "Bearbeitet",
|
||||
"Quote reply" : "Antwort zitieren",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Delete" : "Löschen",
|
||||
"Unread" : "Ungelesen",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Save" : "Speichern",
|
||||
"Add reaction" : "Reaktion hinzufügen",
|
||||
"React with {emoji}" : "Mit {emoji} reagieren",
|
||||
"Write your reply …" : "Schreibe deine Antwort ...",
|
||||
"Uncategorized" : "Ohne Kategorie",
|
||||
"Replies" : "Antworten",
|
||||
"Views" : "Ansichten",
|
||||
"Title" : "Titel",
|
||||
"Refresh" : "Aktualisieren",
|
||||
"Loading …" : "Lade …",
|
||||
"No categories yet" : "Bislang keine Kategorien",
|
||||
"Categories will appear here once they are created." : "Kategorien tauchen hier auf, sobald sie angelegt wurden.",
|
||||
"No categories in this section" : "Keine Kategorien in diesem Abschnitt",
|
||||
"Category not found" : "Kategorie nicht gefunden",
|
||||
"Back to categories" : "Zurück zu Kategorien",
|
||||
"New thread" : "Neues Thema",
|
||||
"Error loading category" : "Fehler beim Laden der Kategorie",
|
||||
"No threads yet" : "Bislang keine Themen",
|
||||
"Retry" : "Wiederholen",
|
||||
"An unexpected error occurred" : "Ein unerwarteter Fehler ist eingetreten",
|
||||
"In {category}" : "In {category}",
|
||||
"Thread created" : "Thema erstellt",
|
||||
"Failed to create thread" : "Fehler beim Erstellen des Themas",
|
||||
"No category specified" : "Keine Kategorie angegeben",
|
||||
"Error" : "Fehler",
|
||||
"Threads ({count})" : "Themen ({count})",
|
||||
"Replies ({count})" : "Antworten ({count})",
|
||||
"No threads" : "Keine Themen",
|
||||
"No replies" : "Keine Antworten",
|
||||
"Enter search query …" : "Suchanfrage eingeben ...",
|
||||
"Search in threads" : "In Themen suchen",
|
||||
"Syntax help" : "Syntaxhilfe",
|
||||
"Search syntax" : "Syntax suchen",
|
||||
"Searching …" : "Suche …",
|
||||
"Search Error" : "Suchfehler",
|
||||
"Enter a search query" : "Eine Suchabfrage eingeben",
|
||||
"No results found" : "Keine Ergebnisse gefunden",
|
||||
"Please enter a search query" : "Bitte gib eine Suchanfrage ein",
|
||||
"Failed to search" : "Suche fehlgeschlagen",
|
||||
"Back to {category}" : "Zurück zu {category}",
|
||||
"Reply" : "Antwort",
|
||||
"by" : "von",
|
||||
"Lock thread" : "Thema sperren",
|
||||
"Unlock thread" : "Thema entsperren",
|
||||
"Pin thread" : "Thema anheften",
|
||||
"Unpin thread" : "Thema lösen",
|
||||
"Thread locked" : "Thema gesperrt",
|
||||
"Thread unlocked" : "Thema entsperrt",
|
||||
"Thread pinned" : "Thema angeheftet",
|
||||
"Thread unpinned" : "Thema abgelöst",
|
||||
"Subscribe" : "Abonnieren",
|
||||
"Subscribed" : "Abonniert",
|
||||
"Preferences" : "Einstellungen",
|
||||
"Loading preferences …" : "Einstellungen laden ...",
|
||||
"Notifications" : "Benachrichtigungen",
|
||||
"Failed to save preferences" : "Sichern der Einstellungen fehlgeschlagen",
|
||||
"Create BBCode" : "BBCode erstellen",
|
||||
"Enable" : "Aktivieren",
|
||||
"Disable" : "Deaktivieren",
|
||||
"Delete BBCode" : "BBCode löschen",
|
||||
"This action cannot be undone." : "Dies kann nicht rückgängig gemacht werden.",
|
||||
"Edit BBCode" : "BBCode editieren",
|
||||
"Tag" : "Schlagwort",
|
||||
"Description" : "Beschreibung",
|
||||
"Enabled" : "Aktiviert",
|
||||
"Update" : "Aktualisieren",
|
||||
"Create" : "Erstellen",
|
||||
"Create category" : "Kategorie erstellen",
|
||||
"Edit category" : "Kategorie editieren",
|
||||
"Name" : "Name",
|
||||
"Enter category name" : "Kategorienamen eingeben",
|
||||
"Sort order" : "Sortierung",
|
||||
"0" : "0",
|
||||
"New" : "Neu",
|
||||
"Permissions" : "Berechtigungen",
|
||||
"Select roles …" : "Rollen auswählen ...",
|
||||
"Error loading categories" : "Kategorien laden fehlgeschlagen",
|
||||
"Delete category" : "Kategorie löschen",
|
||||
"-- Select a category --" : "-- Eine Kategorie auswählen --",
|
||||
"Delete all categories" : "Alle Kategorien löschen",
|
||||
"Move up" : "Nach oben verschieben",
|
||||
"Move down" : "Nach unten verschieben",
|
||||
"Total users" : "Benutzer gesamt",
|
||||
"Last 7 days" : "Die letzten 7 Tage",
|
||||
"All time" : "Gesamte Zeit",
|
||||
"General settings" : "Allgemeine Einstellungen",
|
||||
"Appearance" : "Aussehen",
|
||||
"Welcome to the forum" : "Willkommen im Forum",
|
||||
"Settings saved" : "Einstellungen gespeichert",
|
||||
"Failed to save settings" : "Einstellungen konnten nicht gespeichert werden",
|
||||
"Reset" : "Zurücksetzen",
|
||||
"Category" : "Kategorie",
|
||||
"Allow" : "Zulassen",
|
||||
"ID" : "ID",
|
||||
"Created" : "Erstellt",
|
||||
"Actions" : "Aktionen",
|
||||
"No description" : "Keine Beschreibung",
|
||||
"User management" : "Kontenverwaltung",
|
||||
"Loading users …" : "Lade Konten …",
|
||||
"No users found" : "Keine Benutzer gefunden",
|
||||
"Joined" : "Beigetreten",
|
||||
"Status" : "Status",
|
||||
"Active" : "Aktiv",
|
||||
"Deleted" : "Gelöscht"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
201
l10n/de_DE.json
Normal file
201
l10n/de_DE.json
Normal file
@@ -0,0 +1,201 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Forum",
|
||||
"Welcome to the forum!" : "Willkommen in den Nextcloud Foren!",
|
||||
"Admin" : "Administration",
|
||||
"Administrator role with full permissions" : "Administrationsrolle mit vollen Berechtigungen",
|
||||
"Moderator" : "Moderation",
|
||||
"Moderator role with elevated permissions" : "Moderatorenrolle mit erweiterten Berechtigungen",
|
||||
"User" : "Benutzer",
|
||||
"Default user role with basic permissions" : "Standardbenutzerrolle mit grundlegenden Berechtigungen",
|
||||
"General" : "Allgemein",
|
||||
"General discussion categories" : "Kategorien für Allgemeine Diskussionen",
|
||||
"General discussions" : "Allgemeine Diskussionen",
|
||||
"A place for general conversations and discussions" : "Ein Ort für allgemeine Gespräche und Diskussionen",
|
||||
"Support" : "Support",
|
||||
"Ask questions about the forum, provide feedback or report issues." : "Fragen zum Forum stellen, Feedback geben oder Probleme melden.",
|
||||
"[icode]inline code[/icode]" : "[icode]Inline-Code[/icode]",
|
||||
"Inline code" : "Inline-Code",
|
||||
"[spoiler=\"%1$s\"]%2$s[/spoiler]" : "[spoiler=\"%1$s\"]%2$s[/spoiler]",
|
||||
"Spoilers" : "Spoilerwarnung",
|
||||
"Attachment" : "Anhang",
|
||||
"Welcome to Nextcloud Forums" : "Willkommen in den Nextcloud Foren",
|
||||
"Welcome to the Nextcloud Forums!" : "Willkommen in den Nextcloud Foren!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Dies ist ein Community-Forum, das direkt in Ihre Nextcloud-Instanz integriert ist. Hier können Sie Themen diskutieren, Ideen austauschen und mit anderen Nutzern zusammenarbeiten.",
|
||||
"Features:" : "Funktionen:",
|
||||
"Create and reply to threads" : "Threads erstellen und beantworten",
|
||||
"Organize discussions by categories" : "Die Diskussionen nach Kategorien ordnen",
|
||||
"Use BBCode for rich text formatting" : "BBCode für Rich-Text-Formatierung verwenden",
|
||||
"Attach files from your Nextcloud storage" : "Dateien aus Ihrem Nextcloud-Speicher hinzufügen",
|
||||
"React to posts" : "Auf Beiträge reagieren",
|
||||
"Track read/unread threads" : "Gelesene/ungelesene Threads verfolgen",
|
||||
"BBCode examples:" : "BBCode-Beispiele:",
|
||||
"Bold text" : "Fetter Text",
|
||||
"Use %1$stext%2$s" : "%1$sText%2$s verwenden",
|
||||
"Italic text" : "Kursiver Text",
|
||||
"Underlined text" : "Unterstrichener Text",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Gerne eine neue Diskussion starten oder auf bestehende Beiträge antworten. Viel Spaß beim Posten!",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} neue Antwort in {thread}","{count} neue Antworten in {thread}"],
|
||||
"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.",
|
||||
"Search" : "Suche",
|
||||
"Home" : "Startseite",
|
||||
"User preferences" : "Benutzereinstellungen",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Forum settings" : "Forumeinstellungen",
|
||||
"Users" : "Personen",
|
||||
"Roles" : "Rollen",
|
||||
"Categories" : "Kategorien",
|
||||
"BBCodes" : "BBCodes",
|
||||
"Expand" : "Erweitern",
|
||||
"Collapse" : "Zuklappen",
|
||||
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Bitte beachten:{bEnd} Angehängte Dateien sind für alle im Forum sichtbar, unabhängig von den Freigabeeinstellungen der Datei.",
|
||||
"Font style bold" : "Schriftart fett",
|
||||
"Font style italic" : "Schriftart kursiv",
|
||||
"Font style struck through" : "Schriftart durchgestrichen",
|
||||
"Font style underlined" : "Schriftart unterstrichen",
|
||||
"Code" : "Quelltext",
|
||||
"Email (clickable)" : "E-Mail (anklickbar)",
|
||||
"{emailStart}test@example.com{emailEnd}" : "{emailStart}test@beispiel.com{emailEnd}",
|
||||
"URL (clickable)" : "URL (anklickbar)",
|
||||
"{urlStart}Example.com{urlEnd}" : "{urlStart}Beispiel.com{urlEnd}",
|
||||
"Image (not clickable)" : "Bild (nicht anklickbar)",
|
||||
"{imgStart}http://example.com/example.png{imgEnd}" : "{imgStart}http://beispiel.com/beispiel.png{imgEnd}",
|
||||
"Quote" : "Zitat",
|
||||
"Embedded YouTube video" : "Eingebettetes YouTube-Video",
|
||||
"{youtubeStart}a-video-id-123456{youtubeEnd}" : "{youtubeStart}eine-video-id-123456{youtubeEnd}",
|
||||
"Font (name)" : "Schriftart (Name)",
|
||||
"Font size" : "Schriftgröße",
|
||||
"Font color" : "Schriftfarbe",
|
||||
"Align left" : "Linksbündig ausrichten",
|
||||
"Align center" : "Zentriert ausrichten",
|
||||
"Align right" : "Rechtsbündig ausrichten",
|
||||
"List" : "Liste",
|
||||
"{listStart}{item1Start}Hello world!{item2Start}Hello moon!{item2End}{listEnd}" : "{listStart}{item1Start}Hallo Welt!{item2Start}Hallo Mond!{item2End}{listEnd}",
|
||||
"List item within a list" : "Listenelement innerhalb einer Liste",
|
||||
"{itemStart}Hello world!\\r\\n{itemStart}Hello moon!" : "{itemStart}Hallo Welt!\\r\\n{itemStart}Hallo Mond!",
|
||||
"List item within a list (alias)" : "Listenelement innerhalb einer Liste (Alias)",
|
||||
"{liStart}Hello world!\\r\\n{liEnd}{liStart}Hello moon!{liEnd}" : "{liStart}Hallo Welt!\\r\\n{liEnd}{liStart}Hallo Mond!{liEnd}",
|
||||
"BBCode help" : "BBCode-Hilfe",
|
||||
"Built-in BBCodes" : "Vorgefertigte BBCodes",
|
||||
"These BBCodes are available by default." : "Diese BBCodes sind standardmäßig verfügbar.",
|
||||
"Custom BBCodes" : "Maßgeschneiderte BBCodes",
|
||||
"Example" : "Beispiel",
|
||||
"Replacement" : "Ersatz",
|
||||
"Insert emoji" : "Emoji einfügen",
|
||||
"Pick a file to attach" : "Wähle eine Datei zum Anhängen aus",
|
||||
"No description available" : "Keine Beschreibung verfügbar",
|
||||
"Page not found" : "Seite nicht gefunden",
|
||||
"Back" : "Zurück",
|
||||
"Go to home" : "Zur Startseite",
|
||||
"Edited" : "Bearbeitet",
|
||||
"Quote reply" : "Antwort zitieren",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Delete" : "Löschen",
|
||||
"Unread" : "Ungelesen",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Save" : "Speichern",
|
||||
"Add reaction" : "Reaktion hinzufügen",
|
||||
"React with {emoji}" : "Mit {emoji} reagieren",
|
||||
"Write your reply …" : "Schreibe deine Antwort ...",
|
||||
"Uncategorized" : "Ohne Kategorie",
|
||||
"Replies" : "Antworten",
|
||||
"Views" : "Ansichten",
|
||||
"Title" : "Titel",
|
||||
"Refresh" : "Aktualisieren",
|
||||
"Loading …" : "Lade …",
|
||||
"No categories yet" : "Bislang keine Kategorien",
|
||||
"Categories will appear here once they are created." : "Kategorien tauchen hier auf, sobald sie angelegt wurden.",
|
||||
"No categories in this section" : "Keine Kategorien in diesem Abschnitt",
|
||||
"Category not found" : "Kategorie nicht gefunden",
|
||||
"Back to categories" : "Zurück zu Kategorien",
|
||||
"New thread" : "Neues Thema",
|
||||
"Error loading category" : "Fehler beim Laden der Kategorie",
|
||||
"No threads yet" : "Bislang keine Themen",
|
||||
"Retry" : "Wiederholen",
|
||||
"An unexpected error occurred" : "Ein unerwarteter Fehler ist eingetreten",
|
||||
"In {category}" : "In {category}",
|
||||
"Thread created" : "Thema erstellt",
|
||||
"Failed to create thread" : "Fehler beim Erstellen des Themas",
|
||||
"No category specified" : "Keine Kategorie angegeben",
|
||||
"Error" : "Fehler",
|
||||
"Threads ({count})" : "Themen ({count})",
|
||||
"Replies ({count})" : "Antworten ({count})",
|
||||
"No threads" : "Keine Themen",
|
||||
"No replies" : "Keine Antworten",
|
||||
"Enter search query …" : "Suchanfrage eingeben ...",
|
||||
"Search in threads" : "In Themen suchen",
|
||||
"Syntax help" : "Syntaxhilfe",
|
||||
"Search syntax" : "Syntax suchen",
|
||||
"Searching …" : "Suche …",
|
||||
"Search Error" : "Suchfehler",
|
||||
"Enter a search query" : "Eine Suchabfrage eingeben",
|
||||
"No results found" : "Keine Ergebnisse gefunden",
|
||||
"Please enter a search query" : "Bitte gib eine Suchanfrage ein",
|
||||
"Failed to search" : "Suche fehlgeschlagen",
|
||||
"Back to {category}" : "Zurück zu {category}",
|
||||
"Reply" : "Antwort",
|
||||
"by" : "von",
|
||||
"Lock thread" : "Thema sperren",
|
||||
"Unlock thread" : "Thema entsperren",
|
||||
"Pin thread" : "Thema anheften",
|
||||
"Unpin thread" : "Thema lösen",
|
||||
"Thread locked" : "Thema gesperrt",
|
||||
"Thread unlocked" : "Thema entsperrt",
|
||||
"Thread pinned" : "Thema angeheftet",
|
||||
"Thread unpinned" : "Thema abgelöst",
|
||||
"Subscribe" : "Abonnieren",
|
||||
"Subscribed" : "Abonniert",
|
||||
"Preferences" : "Einstellungen",
|
||||
"Loading preferences …" : "Einstellungen laden ...",
|
||||
"Notifications" : "Benachrichtigungen",
|
||||
"Failed to save preferences" : "Sichern der Einstellungen fehlgeschlagen",
|
||||
"Create BBCode" : "BBCode erstellen",
|
||||
"Enable" : "Aktivieren",
|
||||
"Disable" : "Deaktivieren",
|
||||
"Delete BBCode" : "BBCode löschen",
|
||||
"This action cannot be undone." : "Dies kann nicht rückgängig gemacht werden.",
|
||||
"Edit BBCode" : "BBCode editieren",
|
||||
"Tag" : "Schlagwort",
|
||||
"Description" : "Beschreibung",
|
||||
"Enabled" : "Aktiviert",
|
||||
"Update" : "Aktualisieren",
|
||||
"Create" : "Erstellen",
|
||||
"Create category" : "Kategorie erstellen",
|
||||
"Edit category" : "Kategorie editieren",
|
||||
"Name" : "Name",
|
||||
"Enter category name" : "Kategorienamen eingeben",
|
||||
"Sort order" : "Sortierung",
|
||||
"0" : "0",
|
||||
"New" : "Neu",
|
||||
"Permissions" : "Berechtigungen",
|
||||
"Select roles …" : "Rollen auswählen ...",
|
||||
"Error loading categories" : "Kategorien laden fehlgeschlagen",
|
||||
"Delete category" : "Kategorie löschen",
|
||||
"-- Select a category --" : "-- Eine Kategorie auswählen --",
|
||||
"Delete all categories" : "Alle Kategorien löschen",
|
||||
"Move up" : "Nach oben verschieben",
|
||||
"Move down" : "Nach unten verschieben",
|
||||
"Total users" : "Benutzer gesamt",
|
||||
"Last 7 days" : "Die letzten 7 Tage",
|
||||
"All time" : "Gesamte Zeit",
|
||||
"General settings" : "Allgemeine Einstellungen",
|
||||
"Appearance" : "Aussehen",
|
||||
"Welcome to the forum" : "Willkommen im Forum",
|
||||
"Settings saved" : "Einstellungen gespeichert",
|
||||
"Failed to save settings" : "Einstellungen konnten nicht gespeichert werden",
|
||||
"Reset" : "Zurücksetzen",
|
||||
"Category" : "Kategorie",
|
||||
"Allow" : "Zulassen",
|
||||
"ID" : "ID",
|
||||
"Created" : "Erstellt",
|
||||
"Actions" : "Aktionen",
|
||||
"No description" : "Keine Beschreibung",
|
||||
"User management" : "Kontenverwaltung",
|
||||
"Loading users …" : "Lade Konten …",
|
||||
"No users found" : "Keine Benutzer gefunden",
|
||||
"Joined" : "Beigetreten",
|
||||
"Status" : "Status",
|
||||
"Active" : "Aktiv",
|
||||
"Deleted" : "Gelöscht"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
86
l10n/el.js
Normal file
86
l10n/el.js
Normal file
@@ -0,0 +1,86 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Φόρουμ",
|
||||
"Admin" : "Διαχειριστής",
|
||||
"Moderator" : "Συντονιστής",
|
||||
"User" : "Χρήστης",
|
||||
"General" : "Γενικά",
|
||||
"Support" : "Υποστήριξη",
|
||||
"Bold text" : "Εντονο Κείμενο",
|
||||
"Underlined text" : "Υπογραμμισμένο κείμενο",
|
||||
"Deleted user" : "Διαγραμμένος χρήστης",
|
||||
"Search" : "Αναζήτηση",
|
||||
"Home" : "Αρχική",
|
||||
"Dashboard" : "Πίνακας ελέγχου",
|
||||
"Users" : "Χρήστες",
|
||||
"Categories" : "Κατηγορίες",
|
||||
"Expand" : "Επεκτείνω",
|
||||
"Collapse" : "Σύμπτυξη",
|
||||
"Code" : "Κώδικας",
|
||||
"Quote" : "Προσφορά",
|
||||
"Font size" : "Μέγεθος γραμματοσειράς",
|
||||
"Align left" : "Στοίχιση αριστερά",
|
||||
"Align center" : "Στοίχιση στο κέντρο",
|
||||
"Align right" : "Στοίχιση δεξιά",
|
||||
"List" : "Λίστα",
|
||||
"Insert emoji" : "Εισαγωγή emoji",
|
||||
"Page not found" : "Η σελίδα δεν βρέθηκε",
|
||||
"Back" : "Επιστροφή",
|
||||
"Edit" : "Επεξεργασία",
|
||||
"Delete" : "Διαγραφή",
|
||||
"Unread" : "Μη αναγνωσμένο",
|
||||
"Cancel" : "Ακύρωση",
|
||||
"Save" : "Αποθήκευση",
|
||||
"React with {emoji}" : "Αντίδραση με {emoji}",
|
||||
"Uncategorized" : "Μή-κατηγοριοποιημένα",
|
||||
"Views" : "Προβολές",
|
||||
"Title" : "Τίτλος",
|
||||
"Refresh" : "Ανανέωση",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Retry" : "Δοκιμή ξανά",
|
||||
"In {category}" : "Στη συνομιλία {category}",
|
||||
"Error" : "Σφάλμα",
|
||||
"Searching …" : "Γίνεται αναζήτηση ...",
|
||||
"No results found" : "Δεν βρέθηκαν αποτελέσματα",
|
||||
"Back to {category}" : "Πίσω στο {category}",
|
||||
"by" : "από",
|
||||
"Subscribe" : "Εγγραφή",
|
||||
"Subscribed" : "Εγγεγραμμένο",
|
||||
"Preferences" : "Προτιμήσεις",
|
||||
"Notifications" : "Ειδοποιήσεις",
|
||||
"Enable" : "Ενεργοποίηση",
|
||||
"Disable" : "Απενεργοποίηση",
|
||||
"This action cannot be undone." : "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.",
|
||||
"Tag" : "Ετικέτα",
|
||||
"Description" : "Περιγραφή",
|
||||
"Enabled" : "Ενεργοποιημένο",
|
||||
"Update" : "Ενημέρωση",
|
||||
"Create" : "Δημιουργία",
|
||||
"Name" : "Όνομα",
|
||||
"Enter category name" : "Εισάγετε όνομα κατηγορίας",
|
||||
"Sort order" : "Σειρά ταξινόμησης",
|
||||
"0" : "0",
|
||||
"New" : "Νέα",
|
||||
"Permissions" : "Δικαιώματα",
|
||||
"Move up" : "Μετακίνηση επάνω",
|
||||
"Move down" : "Μετακίνηση Κάτω",
|
||||
"Last 7 days" : "Τελευταίες 7 ημέρες",
|
||||
"General settings" : "Γενικές ρυθμίσεις",
|
||||
"Appearance" : "Εμφάνιση",
|
||||
"Settings saved" : "Οι ρυθμίσεις αποθηκεύτηκαν",
|
||||
"Failed to save settings" : "Αποτυχία αποθήκευσης ρυθμίσεων",
|
||||
"Reset" : "Επαναφορά",
|
||||
"Category" : "Κατηγορία",
|
||||
"Allow" : "Επιτρέπεται",
|
||||
"ID" : "ID",
|
||||
"Created" : "Δημιουργήθηκε",
|
||||
"Actions" : "Ενέργειες",
|
||||
"Loading users …" : "Φόρτωση χρηστών …",
|
||||
"No users found" : "Δεν βρέθηκαν χρήστες",
|
||||
"Joined" : "Συμμετέχετε",
|
||||
"Status" : "Κατάσταση",
|
||||
"Active" : "Ενεργό",
|
||||
"Deleted" : "Διαγραμμένα"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
84
l10n/el.json
Normal file
84
l10n/el.json
Normal file
@@ -0,0 +1,84 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Φόρουμ",
|
||||
"Admin" : "Διαχειριστής",
|
||||
"Moderator" : "Συντονιστής",
|
||||
"User" : "Χρήστης",
|
||||
"General" : "Γενικά",
|
||||
"Support" : "Υποστήριξη",
|
||||
"Bold text" : "Εντονο Κείμενο",
|
||||
"Underlined text" : "Υπογραμμισμένο κείμενο",
|
||||
"Deleted user" : "Διαγραμμένος χρήστης",
|
||||
"Search" : "Αναζήτηση",
|
||||
"Home" : "Αρχική",
|
||||
"Dashboard" : "Πίνακας ελέγχου",
|
||||
"Users" : "Χρήστες",
|
||||
"Categories" : "Κατηγορίες",
|
||||
"Expand" : "Επεκτείνω",
|
||||
"Collapse" : "Σύμπτυξη",
|
||||
"Code" : "Κώδικας",
|
||||
"Quote" : "Προσφορά",
|
||||
"Font size" : "Μέγεθος γραμματοσειράς",
|
||||
"Align left" : "Στοίχιση αριστερά",
|
||||
"Align center" : "Στοίχιση στο κέντρο",
|
||||
"Align right" : "Στοίχιση δεξιά",
|
||||
"List" : "Λίστα",
|
||||
"Insert emoji" : "Εισαγωγή emoji",
|
||||
"Page not found" : "Η σελίδα δεν βρέθηκε",
|
||||
"Back" : "Επιστροφή",
|
||||
"Edit" : "Επεξεργασία",
|
||||
"Delete" : "Διαγραφή",
|
||||
"Unread" : "Μη αναγνωσμένο",
|
||||
"Cancel" : "Ακύρωση",
|
||||
"Save" : "Αποθήκευση",
|
||||
"React with {emoji}" : "Αντίδραση με {emoji}",
|
||||
"Uncategorized" : "Μή-κατηγοριοποιημένα",
|
||||
"Views" : "Προβολές",
|
||||
"Title" : "Τίτλος",
|
||||
"Refresh" : "Ανανέωση",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Retry" : "Δοκιμή ξανά",
|
||||
"In {category}" : "Στη συνομιλία {category}",
|
||||
"Error" : "Σφάλμα",
|
||||
"Searching …" : "Γίνεται αναζήτηση ...",
|
||||
"No results found" : "Δεν βρέθηκαν αποτελέσματα",
|
||||
"Back to {category}" : "Πίσω στο {category}",
|
||||
"by" : "από",
|
||||
"Subscribe" : "Εγγραφή",
|
||||
"Subscribed" : "Εγγεγραμμένο",
|
||||
"Preferences" : "Προτιμήσεις",
|
||||
"Notifications" : "Ειδοποιήσεις",
|
||||
"Enable" : "Ενεργοποίηση",
|
||||
"Disable" : "Απενεργοποίηση",
|
||||
"This action cannot be undone." : "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.",
|
||||
"Tag" : "Ετικέτα",
|
||||
"Description" : "Περιγραφή",
|
||||
"Enabled" : "Ενεργοποιημένο",
|
||||
"Update" : "Ενημέρωση",
|
||||
"Create" : "Δημιουργία",
|
||||
"Name" : "Όνομα",
|
||||
"Enter category name" : "Εισάγετε όνομα κατηγορίας",
|
||||
"Sort order" : "Σειρά ταξινόμησης",
|
||||
"0" : "0",
|
||||
"New" : "Νέα",
|
||||
"Permissions" : "Δικαιώματα",
|
||||
"Move up" : "Μετακίνηση επάνω",
|
||||
"Move down" : "Μετακίνηση Κάτω",
|
||||
"Last 7 days" : "Τελευταίες 7 ημέρες",
|
||||
"General settings" : "Γενικές ρυθμίσεις",
|
||||
"Appearance" : "Εμφάνιση",
|
||||
"Settings saved" : "Οι ρυθμίσεις αποθηκεύτηκαν",
|
||||
"Failed to save settings" : "Αποτυχία αποθήκευσης ρυθμίσεων",
|
||||
"Reset" : "Επαναφορά",
|
||||
"Category" : "Κατηγορία",
|
||||
"Allow" : "Επιτρέπεται",
|
||||
"ID" : "ID",
|
||||
"Created" : "Δημιουργήθηκε",
|
||||
"Actions" : "Ενέργειες",
|
||||
"Loading users …" : "Φόρτωση χρηστών …",
|
||||
"No users found" : "Δεν βρέθηκαν χρήστες",
|
||||
"Joined" : "Συμμετέχετε",
|
||||
"Status" : "Κατάσταση",
|
||||
"Active" : "Ενεργό",
|
||||
"Deleted" : "Διαγραμμένα"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
90
l10n/en_GB.js
Normal file
90
l10n/en_GB.js
Normal file
@@ -0,0 +1,90 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderator",
|
||||
"User" : "User",
|
||||
"General" : "General",
|
||||
"Support" : "Support",
|
||||
"Bold text" : "Bold text",
|
||||
"Underlined text" : "Underlined text",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Search" : "Search",
|
||||
"Home" : "Home",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Users",
|
||||
"Categories" : "Categories",
|
||||
"Expand" : "Expand",
|
||||
"Collapse" : "Collapse",
|
||||
"Code" : "Code",
|
||||
"Quote" : "Quote",
|
||||
"Font size" : "Font size",
|
||||
"Align left" : "Align left",
|
||||
"Align center" : "Align centre",
|
||||
"Align right" : "Align right",
|
||||
"List" : "List",
|
||||
"Insert emoji" : "Insert emoji",
|
||||
"Page not found" : "Page not found",
|
||||
"Back" : "Back",
|
||||
"Edit" : "Edit",
|
||||
"Delete" : "Delete",
|
||||
"Unread" : "Unread",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Save",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "Uncategorised",
|
||||
"Views" : "Views",
|
||||
"Title" : "Title",
|
||||
"Refresh" : "Refresh",
|
||||
"Loading …" : "Loading …",
|
||||
"Retry" : "Retry",
|
||||
"In {category}" : "In {category}",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Searching …",
|
||||
"No results found" : "No results found",
|
||||
"Back to {category}" : "Back to {category}",
|
||||
"Reply" : "Reply",
|
||||
"by" : "by",
|
||||
"Subscribe" : "Subscribe",
|
||||
"Subscribed" : "Subscribed",
|
||||
"Preferences" : "Preferences",
|
||||
"Notifications" : "Notifications",
|
||||
"Enable" : "Enable",
|
||||
"Disable" : "Disable",
|
||||
"This action cannot be undone." : "This action cannot be undone.",
|
||||
"Tag" : "Tag",
|
||||
"Description" : "Description",
|
||||
"Enabled" : "Enabled",
|
||||
"Update" : "Update",
|
||||
"Create" : "Create",
|
||||
"Name" : "Surname",
|
||||
"Enter category name" : "Enter category name",
|
||||
"Sort order" : "Sort order",
|
||||
"New" : "New",
|
||||
"Permissions" : "Permissions",
|
||||
"Move up" : "Move up",
|
||||
"Move down" : "Move down",
|
||||
"Total users" : "Total users",
|
||||
"Last 7 days" : "Last 7 days",
|
||||
"All time" : "All time",
|
||||
"General settings" : "General settings",
|
||||
"Appearance" : "Appearance",
|
||||
"Settings saved" : "Settings saved",
|
||||
"Failed to save settings" : "Failed to save settings",
|
||||
"Reset" : "Reset",
|
||||
"Category" : "Category",
|
||||
"Allow" : "Allow",
|
||||
"ID" : "ID",
|
||||
"Created" : "Created",
|
||||
"Actions" : "Actions",
|
||||
"No description" : "No description",
|
||||
"User management" : "User management",
|
||||
"Loading users …" : "Loading users …",
|
||||
"No users found" : "No users found",
|
||||
"Joined" : "Joined",
|
||||
"Status" : "Status",
|
||||
"Active" : "Active",
|
||||
"Deleted" : "Deleted"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
88
l10n/en_GB.json
Normal file
88
l10n/en_GB.json
Normal file
@@ -0,0 +1,88 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderator",
|
||||
"User" : "User",
|
||||
"General" : "General",
|
||||
"Support" : "Support",
|
||||
"Bold text" : "Bold text",
|
||||
"Underlined text" : "Underlined text",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Search" : "Search",
|
||||
"Home" : "Home",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Users",
|
||||
"Categories" : "Categories",
|
||||
"Expand" : "Expand",
|
||||
"Collapse" : "Collapse",
|
||||
"Code" : "Code",
|
||||
"Quote" : "Quote",
|
||||
"Font size" : "Font size",
|
||||
"Align left" : "Align left",
|
||||
"Align center" : "Align centre",
|
||||
"Align right" : "Align right",
|
||||
"List" : "List",
|
||||
"Insert emoji" : "Insert emoji",
|
||||
"Page not found" : "Page not found",
|
||||
"Back" : "Back",
|
||||
"Edit" : "Edit",
|
||||
"Delete" : "Delete",
|
||||
"Unread" : "Unread",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Save",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "Uncategorised",
|
||||
"Views" : "Views",
|
||||
"Title" : "Title",
|
||||
"Refresh" : "Refresh",
|
||||
"Loading …" : "Loading …",
|
||||
"Retry" : "Retry",
|
||||
"In {category}" : "In {category}",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Searching …",
|
||||
"No results found" : "No results found",
|
||||
"Back to {category}" : "Back to {category}",
|
||||
"Reply" : "Reply",
|
||||
"by" : "by",
|
||||
"Subscribe" : "Subscribe",
|
||||
"Subscribed" : "Subscribed",
|
||||
"Preferences" : "Preferences",
|
||||
"Notifications" : "Notifications",
|
||||
"Enable" : "Enable",
|
||||
"Disable" : "Disable",
|
||||
"This action cannot be undone." : "This action cannot be undone.",
|
||||
"Tag" : "Tag",
|
||||
"Description" : "Description",
|
||||
"Enabled" : "Enabled",
|
||||
"Update" : "Update",
|
||||
"Create" : "Create",
|
||||
"Name" : "Surname",
|
||||
"Enter category name" : "Enter category name",
|
||||
"Sort order" : "Sort order",
|
||||
"New" : "New",
|
||||
"Permissions" : "Permissions",
|
||||
"Move up" : "Move up",
|
||||
"Move down" : "Move down",
|
||||
"Total users" : "Total users",
|
||||
"Last 7 days" : "Last 7 days",
|
||||
"All time" : "All time",
|
||||
"General settings" : "General settings",
|
||||
"Appearance" : "Appearance",
|
||||
"Settings saved" : "Settings saved",
|
||||
"Failed to save settings" : "Failed to save settings",
|
||||
"Reset" : "Reset",
|
||||
"Category" : "Category",
|
||||
"Allow" : "Allow",
|
||||
"ID" : "ID",
|
||||
"Created" : "Created",
|
||||
"Actions" : "Actions",
|
||||
"No description" : "No description",
|
||||
"User management" : "User management",
|
||||
"Loading users …" : "Loading users …",
|
||||
"No users found" : "No users found",
|
||||
"Joined" : "Joined",
|
||||
"Status" : "Status",
|
||||
"Active" : "Active",
|
||||
"Deleted" : "Deleted"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
49
l10n/eo.js
Normal file
49
l10n/eo.js
Normal file
@@ -0,0 +1,49 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Forumo",
|
||||
"Admin" : "Administranto",
|
||||
"Moderator" : "Kontrolanto",
|
||||
"User" : "Uzanto",
|
||||
"General" : "Ĝenerala",
|
||||
"Search" : "Serĉi",
|
||||
"Home" : "Hejmo",
|
||||
"Dashboard" : "Regpanelo",
|
||||
"Users" : "Uzantoj",
|
||||
"Categories" : "Kategorioj",
|
||||
"Collapse" : "Maletendi",
|
||||
"Page not found" : "Paĝo ne trovita",
|
||||
"Edit" : "Modifi",
|
||||
"Delete" : "Forigi",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Konservi",
|
||||
"Uncategorized" : "Senkategoria",
|
||||
"Refresh" : "Aktualigi",
|
||||
"Loading …" : "Ŝargado...",
|
||||
"Retry" : "Reprovi",
|
||||
"Error" : "Eraro",
|
||||
"Searching …" : "Serĉado ...",
|
||||
"Back to {category}" : "Antaŭen al {category}",
|
||||
"by" : "de",
|
||||
"Subscribe" : "Aboni",
|
||||
"Notifications" : "Atentigoj",
|
||||
"Enable" : "Ŝalti",
|
||||
"Disable" : "Malŝalti",
|
||||
"Description" : "Priskribo",
|
||||
"Update" : "Ĝisdatigi",
|
||||
"Name" : "Nomo",
|
||||
"New" : "Nova",
|
||||
"Move down" : "Movi malsupren",
|
||||
"Last 7 days" : "Lastaj 7 tagoj",
|
||||
"Settings saved" : "Agordoj konservitaj",
|
||||
"Failed to save settings" : "Konservo de agordoj malsukcesis",
|
||||
"Reset" : "Restarigi",
|
||||
"Category" : "Kategorio",
|
||||
"Allow" : "Permesi",
|
||||
"ID" : "Identigilo",
|
||||
"Created" : "Kreita",
|
||||
"Actions" : "Agoj",
|
||||
"Joined" : "Membriĝinta",
|
||||
"Deleted" : "Forigita"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
47
l10n/eo.json
Normal file
47
l10n/eo.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Forumo",
|
||||
"Admin" : "Administranto",
|
||||
"Moderator" : "Kontrolanto",
|
||||
"User" : "Uzanto",
|
||||
"General" : "Ĝenerala",
|
||||
"Search" : "Serĉi",
|
||||
"Home" : "Hejmo",
|
||||
"Dashboard" : "Regpanelo",
|
||||
"Users" : "Uzantoj",
|
||||
"Categories" : "Kategorioj",
|
||||
"Collapse" : "Maletendi",
|
||||
"Page not found" : "Paĝo ne trovita",
|
||||
"Edit" : "Modifi",
|
||||
"Delete" : "Forigi",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Konservi",
|
||||
"Uncategorized" : "Senkategoria",
|
||||
"Refresh" : "Aktualigi",
|
||||
"Loading …" : "Ŝargado...",
|
||||
"Retry" : "Reprovi",
|
||||
"Error" : "Eraro",
|
||||
"Searching …" : "Serĉado ...",
|
||||
"Back to {category}" : "Antaŭen al {category}",
|
||||
"by" : "de",
|
||||
"Subscribe" : "Aboni",
|
||||
"Notifications" : "Atentigoj",
|
||||
"Enable" : "Ŝalti",
|
||||
"Disable" : "Malŝalti",
|
||||
"Description" : "Priskribo",
|
||||
"Update" : "Ĝisdatigi",
|
||||
"Name" : "Nomo",
|
||||
"New" : "Nova",
|
||||
"Move down" : "Movi malsupren",
|
||||
"Last 7 days" : "Lastaj 7 tagoj",
|
||||
"Settings saved" : "Agordoj konservitaj",
|
||||
"Failed to save settings" : "Konservo de agordoj malsukcesis",
|
||||
"Reset" : "Restarigi",
|
||||
"Category" : "Kategorio",
|
||||
"Allow" : "Permesi",
|
||||
"ID" : "Identigilo",
|
||||
"Created" : "Kreita",
|
||||
"Actions" : "Agoj",
|
||||
"Joined" : "Membriĝinta",
|
||||
"Deleted" : "Forigita"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
86
l10n/es.js
Normal file
86
l10n/es.js
Normal file
@@ -0,0 +1,86 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administrador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Support" : "Soporte",
|
||||
"Bold text" : "Texto en negrita",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Expand" : "Expandir",
|
||||
"Collapse" : "Colapsar",
|
||||
"Code" : "Código",
|
||||
"Quote" : "Presupuesto",
|
||||
"Font size" : "Tamaño de fuente",
|
||||
"List" : "Lista",
|
||||
"Insert emoji" : "Insertar emoji",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Back" : "Atrás",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Cancel" : "Cancelar",
|
||||
"Save" : "Guardar",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Refrescar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"In {category}" : "En {category}",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando …",
|
||||
"No results found" : "Sin resultados",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"Reply" : "Responder",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribirse",
|
||||
"Subscribed" : "Suscrito",
|
||||
"Preferences" : "Preferencias",
|
||||
"Notifications" : "Notificaciones",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Deshabilitar",
|
||||
"This action cannot be undone." : "Esta acción no se puede deshacer.",
|
||||
"Tag" : "Etiqueta",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Name" : "Nombre",
|
||||
"Sort order" : "Ordenar por",
|
||||
"0" : "0",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"Move up" : "Mover hacia arriba",
|
||||
"Move down" : "Mover hacia abajo",
|
||||
"Total users" : "Usuarios totales",
|
||||
"Last 7 days" : "Últimos 7 días",
|
||||
"All time" : "Todo el tiempo",
|
||||
"General settings" : "Ajustes generales",
|
||||
"Appearance" : "Apariencia",
|
||||
"Settings saved" : "Ajustes guardados",
|
||||
"Failed to save settings" : "Fallo al guardar ajustes",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"No description" : "Sin descripción",
|
||||
"User management" : "Administración de usuarios",
|
||||
"Loading users …" : "Cargando usuarios …",
|
||||
"No users found" : "No se han encontrado usuarios",
|
||||
"Joined" : "Se unió",
|
||||
"Status" : "Estado",
|
||||
"Active" : "Activo",
|
||||
"Deleted" : "Eliminada"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
84
l10n/es.json
Normal file
84
l10n/es.json
Normal file
@@ -0,0 +1,84 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administrador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Support" : "Soporte",
|
||||
"Bold text" : "Texto en negrita",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Dashboard",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Expand" : "Expandir",
|
||||
"Collapse" : "Colapsar",
|
||||
"Code" : "Código",
|
||||
"Quote" : "Presupuesto",
|
||||
"Font size" : "Tamaño de fuente",
|
||||
"List" : "Lista",
|
||||
"Insert emoji" : "Insertar emoji",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Back" : "Atrás",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Cancel" : "Cancelar",
|
||||
"Save" : "Guardar",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Refrescar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"In {category}" : "En {category}",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando …",
|
||||
"No results found" : "Sin resultados",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"Reply" : "Responder",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribirse",
|
||||
"Subscribed" : "Suscrito",
|
||||
"Preferences" : "Preferencias",
|
||||
"Notifications" : "Notificaciones",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Deshabilitar",
|
||||
"This action cannot be undone." : "Esta acción no se puede deshacer.",
|
||||
"Tag" : "Etiqueta",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Name" : "Nombre",
|
||||
"Sort order" : "Ordenar por",
|
||||
"0" : "0",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"Move up" : "Mover hacia arriba",
|
||||
"Move down" : "Mover hacia abajo",
|
||||
"Total users" : "Usuarios totales",
|
||||
"Last 7 days" : "Últimos 7 días",
|
||||
"All time" : "Todo el tiempo",
|
||||
"General settings" : "Ajustes generales",
|
||||
"Appearance" : "Apariencia",
|
||||
"Settings saved" : "Ajustes guardados",
|
||||
"Failed to save settings" : "Fallo al guardar ajustes",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"No description" : "Sin descripción",
|
||||
"User management" : "Administración de usuarios",
|
||||
"Loading users …" : "Cargando usuarios …",
|
||||
"No users found" : "No se han encontrado usuarios",
|
||||
"Joined" : "Se unió",
|
||||
"Status" : "Estado",
|
||||
"Active" : "Activo",
|
||||
"Deleted" : "Eliminada"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
41
l10n/es_419.js
Normal file
41
l10n/es_419.js
Normal file
@@ -0,0 +1,41 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Ususario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero",
|
||||
"Users" : "Ususarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restaurar",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
39
l10n/es_419.json
Normal file
39
l10n/es_419.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Ususario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero",
|
||||
"Users" : "Ususarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restaurar",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
51
l10n/es_AR.js
Normal file
51
l10n/es_AR.js
Normal file
@@ -0,0 +1,51 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administrador",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Support" : "Soporte",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Casa",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categoría",
|
||||
"Collapse" : "Colapsar",
|
||||
"Font size" : "Tamaño de fuente",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Back" : "Volver",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Refresh" : "Recargar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando ...",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribirse",
|
||||
"Preferences" : "Preferencias",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"All time" : "Tiempo total",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Settings saved" : "Configuraciones guardadas",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Loading users …" : "Cargando usuarios...",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Eliminado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
49
l10n/es_AR.json
Normal file
49
l10n/es_AR.json
Normal file
@@ -0,0 +1,49 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administrador",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Support" : "Soporte",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Casa",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categoría",
|
||||
"Collapse" : "Colapsar",
|
||||
"Font size" : "Tamaño de fuente",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Back" : "Volver",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Refresh" : "Recargar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando ...",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribirse",
|
||||
"Preferences" : "Preferencias",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"All time" : "Tiempo total",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Settings saved" : "Configuraciones guardadas",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Loading users …" : "Cargando usuarios...",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Eliminado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
44
l10n/es_CL.js
Normal file
44
l10n/es_CL.js
Normal file
@@ -0,0 +1,44 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Inicio",
|
||||
"Users" : "Ususarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
42
l10n/es_CL.json
Normal file
42
l10n/es_CL.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Inicio",
|
||||
"Users" : "Ususarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
45
l10n/es_CO.js
Normal file
45
l10n/es_CO.js
Normal file
@@ -0,0 +1,45 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Preferences" : "Preferencias",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Reiniciar",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
43
l10n/es_CO.json
Normal file
43
l10n/es_CO.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Preferences" : "Preferencias",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Reiniciar",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
45
l10n/es_CR.js
Normal file
45
l10n/es_CR.js
Normal file
@@ -0,0 +1,45 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
43
l10n/es_CR.json
Normal file
43
l10n/es_CR.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
46
l10n/es_DO.js
Normal file
46
l10n/es_DO.js
Normal file
@@ -0,0 +1,46 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Enable" : "Habilitar",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
44
l10n/es_DO.json
Normal file
44
l10n/es_DO.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Enable" : "Habilitar",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
76
l10n/es_EC.js
Normal file
76
l10n/es_EC.js
Normal file
@@ -0,0 +1,76 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Support" : "Soporte",
|
||||
"Bold text" : "Texto en negrita",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Expand" : "Expandir",
|
||||
"Collapse" : "Colapsar",
|
||||
"Code" : "Código",
|
||||
"Quote" : "Cotización",
|
||||
"Font size" : "Tamaño de fuente",
|
||||
"Insert emoji" : "Insertar emoji",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Unread" : "No leído",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando...",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando...",
|
||||
"No results found" : "No se encontraron resultados",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Subscribed" : "Suscrito",
|
||||
"Preferences" : "Preferencias",
|
||||
"Enable" : "Habilitar",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Name" : "Nombre",
|
||||
"Sort order" : "Orden de clasificación",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"Move up" : "Mover hacia arriba",
|
||||
"Move down" : "Mover hacia abajo",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Appearance" : "Apariencia",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Failed to save settings" : "Error al guardar la configuración",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"No description" : "Sin descripción",
|
||||
"Loading users …" : "Cargando usuarios...",
|
||||
"No users found" : "No se encontraron usuarios",
|
||||
"Joined" : "Se ha unido",
|
||||
"Status" : "Estado",
|
||||
"Active" : "Activo",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
74
l10n/es_EC.json
Normal file
74
l10n/es_EC.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Support" : "Soporte",
|
||||
"Bold text" : "Texto en negrita",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Expand" : "Expandir",
|
||||
"Collapse" : "Colapsar",
|
||||
"Code" : "Código",
|
||||
"Quote" : "Cotización",
|
||||
"Font size" : "Tamaño de fuente",
|
||||
"Insert emoji" : "Insertar emoji",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Unread" : "No leído",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando...",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando...",
|
||||
"No results found" : "No se encontraron resultados",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Subscribed" : "Suscrito",
|
||||
"Preferences" : "Preferencias",
|
||||
"Enable" : "Habilitar",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Name" : "Nombre",
|
||||
"Sort order" : "Orden de clasificación",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"Move up" : "Mover hacia arriba",
|
||||
"Move down" : "Mover hacia abajo",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Appearance" : "Apariencia",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Failed to save settings" : "Error al guardar la configuración",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"No description" : "Sin descripción",
|
||||
"Loading users …" : "Cargando usuarios...",
|
||||
"No users found" : "No se encontraron usuarios",
|
||||
"Joined" : "Se ha unido",
|
||||
"Status" : "Estado",
|
||||
"Active" : "Activo",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
44
l10n/es_GT.js
Normal file
44
l10n/es_GT.js
Normal file
@@ -0,0 +1,44 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Ususario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
42
l10n/es_GT.json
Normal file
42
l10n/es_GT.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Ususario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
44
l10n/es_HN.js
Normal file
44
l10n/es_HN.js
Normal file
@@ -0,0 +1,44 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
42
l10n/es_HN.json
Normal file
42
l10n/es_HN.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
70
l10n/es_MX.js
Normal file
70
l10n/es_MX.js
Normal file
@@ -0,0 +1,70 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Support" : "Soporte",
|
||||
"Bold text" : "Texto en negritas",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : " Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"List" : "Lista",
|
||||
"Insert emoji" : "Insertar emoticono",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Back" : "Atrás",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Views" : "Vistas",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando …",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscríbete",
|
||||
"Subscribed" : "Suscrito",
|
||||
"Preferences" : "Preferencias",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"Move up" : "Mover arriba",
|
||||
"Move down" : "Mover abajo",
|
||||
"Last 7 days" : "Últimos 7 días",
|
||||
"All time" : "Tiempo total",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Appearance" : "Apariencia",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Failed to save settings" : "No se pudo guardar la configuración",
|
||||
"Reset" : "Reiniciar",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"User management" : "Administración de usuarios",
|
||||
"Loading users …" : "Cargando usuarios …",
|
||||
"No users found" : "No se encontraron usuarios",
|
||||
"Joined" : "Se ha unido",
|
||||
"Active" : "Activo",
|
||||
"Deleted" : "Eliminado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
68
l10n/es_MX.json
Normal file
68
l10n/es_MX.json
Normal file
@@ -0,0 +1,68 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Support" : "Soporte",
|
||||
"Bold text" : "Texto en negritas",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : " Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"List" : "Lista",
|
||||
"Insert emoji" : "Insertar emoticono",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Back" : "Atrás",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Views" : "Vistas",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando …",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Searching …" : "Buscando …",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscríbete",
|
||||
"Subscribed" : "Suscrito",
|
||||
"Preferences" : "Preferencias",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"Move up" : "Mover arriba",
|
||||
"Move down" : "Mover abajo",
|
||||
"Last 7 days" : "Últimos 7 días",
|
||||
"All time" : "Tiempo total",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Appearance" : "Apariencia",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Failed to save settings" : "No se pudo guardar la configuración",
|
||||
"Reset" : "Reiniciar",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"User management" : "Administración de usuarios",
|
||||
"Loading users …" : "Cargando usuarios …",
|
||||
"No users found" : "No se encontraron usuarios",
|
||||
"Joined" : "Se ha unido",
|
||||
"Active" : "Activo",
|
||||
"Deleted" : "Eliminado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
45
l10n/es_NI.js
Normal file
45
l10n/es_NI.js
Normal file
@@ -0,0 +1,45 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
43
l10n/es_NI.json
Normal file
43
l10n/es_NI.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
45
l10n/es_PA.js
Normal file
45
l10n/es_PA.js
Normal file
@@ -0,0 +1,45 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
43
l10n/es_PA.json
Normal file
43
l10n/es_PA.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
43
l10n/es_PE.js
Normal file
43
l10n/es_PE.js
Normal file
@@ -0,0 +1,43 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
41
l10n/es_PE.json
Normal file
41
l10n/es_PE.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
44
l10n/es_PR.js
Normal file
44
l10n/es_PR.js
Normal file
@@ -0,0 +1,44 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
42
l10n/es_PR.json
Normal file
42
l10n/es_PR.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
46
l10n/es_PY.js
Normal file
46
l10n/es_PY.js
Normal file
@@ -0,0 +1,46 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
44
l10n/es_PY.json
Normal file
44
l10n/es_PY.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
44
l10n/es_SV.js
Normal file
44
l10n/es_SV.js
Normal file
@@ -0,0 +1,44 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
42
l10n/es_SV.json
Normal file
42
l10n/es_SV.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
45
l10n/es_UY.js
Normal file
45
l10n/es_UY.js
Normal file
@@ -0,0 +1,45 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},
|
||||
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
43
l10n/es_UY.json
Normal file
43
l10n/es_UY.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Admin" : "Administración",
|
||||
"Moderator" : "Moderador",
|
||||
"User" : "Usuario",
|
||||
"General" : "General",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"Dashboard" : "Tablero de control",
|
||||
"Users" : "Usuarios",
|
||||
"Categories" : "Categorías",
|
||||
"Collapse" : "Colapsar",
|
||||
"Page not found" : "Página no encontrada",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Borrar",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Guardar",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Title" : "Título",
|
||||
"Refresh" : "Actualizar",
|
||||
"Retry" : "Reintentar",
|
||||
"Error" : "Error",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Suscribir",
|
||||
"Disable" : "Deshabilitar",
|
||||
"Description" : "Descripción",
|
||||
"Enabled" : "Habilitado",
|
||||
"Update" : "Actualizar",
|
||||
"Name" : "Nombre",
|
||||
"New" : "Nuevo",
|
||||
"Permissions" : "Permisos",
|
||||
"General settings" : "Configuraciones generales",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Se han guardado las configuraciones ",
|
||||
"Reset" : "Restablecer",
|
||||
"Category" : "Categoría",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Acciones",
|
||||
"Joined" : "Se ha unido",
|
||||
"Deleted" : "Borrado"
|
||||
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
127
l10n/et_EE.js
Normal file
127
l10n/et_EE.js
Normal file
@@ -0,0 +1,127 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foorum",
|
||||
"Welcome to the forum!" : "Tere tulemast foorumisse!",
|
||||
"Admin" : "Peakasutaja",
|
||||
"Administrator role with full permissions" : "Peakasutajal on kõik vajalikud õigused",
|
||||
"Moderator" : "Moderaator",
|
||||
"Moderator role with elevated permissions" : "Moderaatori roll täiendavate õigustega",
|
||||
"User" : "Kasutaja",
|
||||
"Default user role with basic permissions" : "Vaikimisi kasutaja mõnede lihtsamate õigustega",
|
||||
"Guest" : "Külaline",
|
||||
"General" : "Üldine",
|
||||
"Support" : "Kasutajatugi",
|
||||
"Bold text" : "Tekst paksus kirjas",
|
||||
"Italic text" : "Tekst kaldkirjas",
|
||||
"Underlined text" : "Allajoonitud tekst",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} uus vastus jutulõngas {thread}","{count} uut vastust jutulõngas {thread}"],
|
||||
"Deleted user" : "Kustutatud kasutaja",
|
||||
"Search" : "Otsi",
|
||||
"Home" : "Avaleht",
|
||||
"User preferences" : "Kasutaja eelistused",
|
||||
"Dashboard" : "Töölaud/Juhtpaneel",
|
||||
"Forum settings" : "Foorumi seadistused",
|
||||
"Users" : "Kasutajad",
|
||||
"Roles" : "Rollid",
|
||||
"Categories" : "Kategooriad",
|
||||
"BBCodes" : "BBCode'i märgistus",
|
||||
"Expand" : "Laienda",
|
||||
"Collapse" : "Ahenda",
|
||||
"Font style bold" : "Paksus kirjas kirjatüübiga tekst",
|
||||
"Font style italic" : "Kaldkirjas kirjatüübiga tekst",
|
||||
"Font style struck through" : "Läbikriipsutatud kirjatüübiga tekst",
|
||||
"Font style underlined" : "Allajoonitud kirjatüübiga tekst",
|
||||
"Code" : "Kood",
|
||||
"Email (clickable)" : "E-posti aadress (klikatav)",
|
||||
"{emailStart}test@example.com{emailEnd}" : "{emailStart}test@toredomeen.ee{emailEnd}",
|
||||
"URL (clickable)" : "Võrguaadress (klikatav)",
|
||||
"{urlStart}Example.com{urlEnd}" : "{urlStart}Toredomeen.ee{urlEnd}",
|
||||
"Image (not clickable)" : "Pilt (mitteklikatav)",
|
||||
"{imgStart}http://example.com/example.png{imgEnd}" : "{imgStart}https://toredomeen/iluspilt.png{imgEnd}",
|
||||
"Quote" : "Tsitaat",
|
||||
"Embedded YouTube video" : "Lõimitud Youtube'i video",
|
||||
"{youtubeStart}a-video-id-123456{youtubeEnd}" : "{youtubeStart}video-tunnus-123456{youtubeEnd}",
|
||||
"Font (name)" : "Kirjatüüp (nimi)",
|
||||
"Font size" : "Kirjasuurus",
|
||||
"Font color" : "Kirjatüübi värv",
|
||||
"Align left" : "Joondamine vasakule",
|
||||
"Align center" : "Joondamine keskele",
|
||||
"Align right" : "Joondamine paremale",
|
||||
"List" : "Loend",
|
||||
"{listStart}{item1Start}Hello world!{item2Start}Hello moon!{item2End}{listEnd}" : "{listStart}{item1Start}Tere maailm!{item2Start}Tere kuu!{item2End}{listEnd}",
|
||||
"List item within a list" : "Loend loendi sees",
|
||||
"{itemStart}Hello world!\\r\\n{itemStart}Hello moon!" : "{itemStart}Tere maailm!\\r\\n{itemStart}Tere kuu!",
|
||||
"BBCode help" : "BBCode'i abiteave",
|
||||
"Insert emoji" : "Lisa emoji",
|
||||
"Pick a file to attach" : "Vali manuseks lisatav fail",
|
||||
"_Thread_::_Threads_" : ["Jutulõng","Jutulõngad"],
|
||||
"_Post_::_Posts_" : ["Postitus","Postitused"],
|
||||
"No description available" : "Kirjeldust pole saadaval",
|
||||
"Page not found" : "Lehekülge ei leidu",
|
||||
"The page you are looking for could not be found." : "Sinu otsitavat lehte polnud võimalik leida.",
|
||||
"Back" : "Tagasi",
|
||||
"Go to home" : "Mine avalehele",
|
||||
"Edited" : "Muudetud",
|
||||
"Quote reply" : "Tsiteeri vastust",
|
||||
"Edit" : "Muuda",
|
||||
"Delete" : "Kustuta",
|
||||
"Unread" : "Lugemata",
|
||||
"Edit your post …" : "Muuda postitust…",
|
||||
"Cancel" : "Katkesta",
|
||||
"Save" : "Salvesta",
|
||||
"Add reaction" : "Lisa reaktsioon",
|
||||
"React with {emoji}" : "Reageeri {emoji} emojiga",
|
||||
"Uncategorized" : "Määratlemata",
|
||||
"Views" : "Vaated",
|
||||
"Title" : "Pealkiri",
|
||||
"Refresh" : "Värskenda",
|
||||
"Loading …" : "Laadin...",
|
||||
"Retry" : "Proovi uuesti",
|
||||
"In {category}" : "{category} vestluses",
|
||||
"Error" : "Viga",
|
||||
"Searching …" : "Otsin...",
|
||||
"No results found" : "Otsingutulemusi ei leidu",
|
||||
"Back to {category}" : "Tagasi siia: {category}",
|
||||
"Reply" : "Vasta",
|
||||
"by" : "kasutajalt",
|
||||
"Subscribe" : "Telli",
|
||||
"Subscribed" : "Tellitud",
|
||||
"Preferences" : "Eelistused",
|
||||
"Notifications" : "Teavitused",
|
||||
"Enable" : "Võta kasutusele",
|
||||
"Disable" : "Lülita välja",
|
||||
"This action cannot be undone." : "Seda tegevust ei saa tagasi võtta.",
|
||||
"Tag" : "Silt",
|
||||
"Description" : "Kirjeldus",
|
||||
"Enabled" : "Sisse lülitatud",
|
||||
"Update" : "Uuenda",
|
||||
"Create" : "Lisa",
|
||||
"Name" : "Nimi",
|
||||
"Sort order" : "Järjestus",
|
||||
"New" : "Uus",
|
||||
"Permissions" : "Õigused",
|
||||
"Move up" : "Liiguta ülespoole",
|
||||
"Move down" : "Liiguta allapoole",
|
||||
"Last 7 days" : "Viimase 7 päeva jooksul",
|
||||
"General settings" : "Üldised seadistused",
|
||||
"Appearance" : "Välimus",
|
||||
"Access control" : "Ligipääsukontroll",
|
||||
"Settings saved" : "Seadistused on salvestatud",
|
||||
"Failed to save settings" : "Seadistuste salvestamine ei õnnestunud",
|
||||
"Reset" : "Lähtesta",
|
||||
"Category" : "Kategooria",
|
||||
"Allow" : "Luba",
|
||||
"ID" : "Tunnus",
|
||||
"Created" : "Loodud",
|
||||
"Actions" : "Tegevused",
|
||||
"No description" : "Kirjeldus puudub",
|
||||
"Loading users …" : "Laadin kasutajaid…",
|
||||
"No users found" : "Kasutajaid ei leidu",
|
||||
"Posts" : "Postitused",
|
||||
"Joined" : "Liitus",
|
||||
"Status" : "Olek",
|
||||
"Active" : "Aktiivne",
|
||||
"Deleted" : "Kustutatud"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
125
l10n/et_EE.json
Normal file
125
l10n/et_EE.json
Normal file
@@ -0,0 +1,125 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foorum",
|
||||
"Welcome to the forum!" : "Tere tulemast foorumisse!",
|
||||
"Admin" : "Peakasutaja",
|
||||
"Administrator role with full permissions" : "Peakasutajal on kõik vajalikud õigused",
|
||||
"Moderator" : "Moderaator",
|
||||
"Moderator role with elevated permissions" : "Moderaatori roll täiendavate õigustega",
|
||||
"User" : "Kasutaja",
|
||||
"Default user role with basic permissions" : "Vaikimisi kasutaja mõnede lihtsamate õigustega",
|
||||
"Guest" : "Külaline",
|
||||
"General" : "Üldine",
|
||||
"Support" : "Kasutajatugi",
|
||||
"Bold text" : "Tekst paksus kirjas",
|
||||
"Italic text" : "Tekst kaldkirjas",
|
||||
"Underlined text" : "Allajoonitud tekst",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} uus vastus jutulõngas {thread}","{count} uut vastust jutulõngas {thread}"],
|
||||
"Deleted user" : "Kustutatud kasutaja",
|
||||
"Search" : "Otsi",
|
||||
"Home" : "Avaleht",
|
||||
"User preferences" : "Kasutaja eelistused",
|
||||
"Dashboard" : "Töölaud/Juhtpaneel",
|
||||
"Forum settings" : "Foorumi seadistused",
|
||||
"Users" : "Kasutajad",
|
||||
"Roles" : "Rollid",
|
||||
"Categories" : "Kategooriad",
|
||||
"BBCodes" : "BBCode'i märgistus",
|
||||
"Expand" : "Laienda",
|
||||
"Collapse" : "Ahenda",
|
||||
"Font style bold" : "Paksus kirjas kirjatüübiga tekst",
|
||||
"Font style italic" : "Kaldkirjas kirjatüübiga tekst",
|
||||
"Font style struck through" : "Läbikriipsutatud kirjatüübiga tekst",
|
||||
"Font style underlined" : "Allajoonitud kirjatüübiga tekst",
|
||||
"Code" : "Kood",
|
||||
"Email (clickable)" : "E-posti aadress (klikatav)",
|
||||
"{emailStart}test@example.com{emailEnd}" : "{emailStart}test@toredomeen.ee{emailEnd}",
|
||||
"URL (clickable)" : "Võrguaadress (klikatav)",
|
||||
"{urlStart}Example.com{urlEnd}" : "{urlStart}Toredomeen.ee{urlEnd}",
|
||||
"Image (not clickable)" : "Pilt (mitteklikatav)",
|
||||
"{imgStart}http://example.com/example.png{imgEnd}" : "{imgStart}https://toredomeen/iluspilt.png{imgEnd}",
|
||||
"Quote" : "Tsitaat",
|
||||
"Embedded YouTube video" : "Lõimitud Youtube'i video",
|
||||
"{youtubeStart}a-video-id-123456{youtubeEnd}" : "{youtubeStart}video-tunnus-123456{youtubeEnd}",
|
||||
"Font (name)" : "Kirjatüüp (nimi)",
|
||||
"Font size" : "Kirjasuurus",
|
||||
"Font color" : "Kirjatüübi värv",
|
||||
"Align left" : "Joondamine vasakule",
|
||||
"Align center" : "Joondamine keskele",
|
||||
"Align right" : "Joondamine paremale",
|
||||
"List" : "Loend",
|
||||
"{listStart}{item1Start}Hello world!{item2Start}Hello moon!{item2End}{listEnd}" : "{listStart}{item1Start}Tere maailm!{item2Start}Tere kuu!{item2End}{listEnd}",
|
||||
"List item within a list" : "Loend loendi sees",
|
||||
"{itemStart}Hello world!\\r\\n{itemStart}Hello moon!" : "{itemStart}Tere maailm!\\r\\n{itemStart}Tere kuu!",
|
||||
"BBCode help" : "BBCode'i abiteave",
|
||||
"Insert emoji" : "Lisa emoji",
|
||||
"Pick a file to attach" : "Vali manuseks lisatav fail",
|
||||
"_Thread_::_Threads_" : ["Jutulõng","Jutulõngad"],
|
||||
"_Post_::_Posts_" : ["Postitus","Postitused"],
|
||||
"No description available" : "Kirjeldust pole saadaval",
|
||||
"Page not found" : "Lehekülge ei leidu",
|
||||
"The page you are looking for could not be found." : "Sinu otsitavat lehte polnud võimalik leida.",
|
||||
"Back" : "Tagasi",
|
||||
"Go to home" : "Mine avalehele",
|
||||
"Edited" : "Muudetud",
|
||||
"Quote reply" : "Tsiteeri vastust",
|
||||
"Edit" : "Muuda",
|
||||
"Delete" : "Kustuta",
|
||||
"Unread" : "Lugemata",
|
||||
"Edit your post …" : "Muuda postitust…",
|
||||
"Cancel" : "Katkesta",
|
||||
"Save" : "Salvesta",
|
||||
"Add reaction" : "Lisa reaktsioon",
|
||||
"React with {emoji}" : "Reageeri {emoji} emojiga",
|
||||
"Uncategorized" : "Määratlemata",
|
||||
"Views" : "Vaated",
|
||||
"Title" : "Pealkiri",
|
||||
"Refresh" : "Värskenda",
|
||||
"Loading …" : "Laadin...",
|
||||
"Retry" : "Proovi uuesti",
|
||||
"In {category}" : "{category} vestluses",
|
||||
"Error" : "Viga",
|
||||
"Searching …" : "Otsin...",
|
||||
"No results found" : "Otsingutulemusi ei leidu",
|
||||
"Back to {category}" : "Tagasi siia: {category}",
|
||||
"Reply" : "Vasta",
|
||||
"by" : "kasutajalt",
|
||||
"Subscribe" : "Telli",
|
||||
"Subscribed" : "Tellitud",
|
||||
"Preferences" : "Eelistused",
|
||||
"Notifications" : "Teavitused",
|
||||
"Enable" : "Võta kasutusele",
|
||||
"Disable" : "Lülita välja",
|
||||
"This action cannot be undone." : "Seda tegevust ei saa tagasi võtta.",
|
||||
"Tag" : "Silt",
|
||||
"Description" : "Kirjeldus",
|
||||
"Enabled" : "Sisse lülitatud",
|
||||
"Update" : "Uuenda",
|
||||
"Create" : "Lisa",
|
||||
"Name" : "Nimi",
|
||||
"Sort order" : "Järjestus",
|
||||
"New" : "Uus",
|
||||
"Permissions" : "Õigused",
|
||||
"Move up" : "Liiguta ülespoole",
|
||||
"Move down" : "Liiguta allapoole",
|
||||
"Last 7 days" : "Viimase 7 päeva jooksul",
|
||||
"General settings" : "Üldised seadistused",
|
||||
"Appearance" : "Välimus",
|
||||
"Access control" : "Ligipääsukontroll",
|
||||
"Settings saved" : "Seadistused on salvestatud",
|
||||
"Failed to save settings" : "Seadistuste salvestamine ei õnnestunud",
|
||||
"Reset" : "Lähtesta",
|
||||
"Category" : "Kategooria",
|
||||
"Allow" : "Luba",
|
||||
"ID" : "Tunnus",
|
||||
"Created" : "Loodud",
|
||||
"Actions" : "Tegevused",
|
||||
"No description" : "Kirjeldus puudub",
|
||||
"Loading users …" : "Laadin kasutajaid…",
|
||||
"No users found" : "Kasutajaid ei leidu",
|
||||
"Posts" : "Postitused",
|
||||
"Joined" : "Liitus",
|
||||
"Status" : "Olek",
|
||||
"Active" : "Aktiivne",
|
||||
"Deleted" : "Kustutatud"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
82
l10n/eu.js
Normal file
82
l10n/eu.js
Normal file
@@ -0,0 +1,82 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foroa",
|
||||
"Admin" : "Admin",
|
||||
"User" : "Erabiltzailea",
|
||||
"General" : "Orokorra",
|
||||
"Support" : "Laguntza",
|
||||
"Bold text" : "Testu lodia",
|
||||
"Underlined text" : "Azpimarratutako testua",
|
||||
"Deleted user" : "Ezabatutako erabiltzaileak",
|
||||
"Search" : "Bilatu",
|
||||
"Home" : "Etxea",
|
||||
"Dashboard" : "Panela",
|
||||
"Users" : "Erabiltzaileak",
|
||||
"Categories" : "Kategoriak",
|
||||
"Expand" : "Zabaldu",
|
||||
"Collapse" : "Tolestu",
|
||||
"Code" : "Kodea",
|
||||
"Quote" : "Aurrekontua",
|
||||
"Font size" : "Letra-tamaina",
|
||||
"List" : "Zerrenda",
|
||||
"Insert emoji" : "Txertatu emojia",
|
||||
"Page not found" : "Orria ez da aurkitu",
|
||||
"Back" : "Itzuli",
|
||||
"Edit" : "Editatu",
|
||||
"Delete" : "Ezabatu",
|
||||
"Unread" : "Irakurri gabe",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Gorde",
|
||||
"React with {emoji}" : "Erreakzionatu {emoji}-(r)ekin",
|
||||
"Uncategorized" : "Kategoria gabe",
|
||||
"Views" : "Ikuspegiak",
|
||||
"Title" : "Izenburua",
|
||||
"Refresh" : "Freskatu",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Retry" : "saiatu berriro",
|
||||
"Error" : "Errorea",
|
||||
"Searching …" : "Bilatzen…",
|
||||
"No results found" : "Ez da emaitzarik aurkitu",
|
||||
"Back to {category}" : "Itzuli {category}(e)ra",
|
||||
"by" : "Nork",
|
||||
"Subscribe" : "Harpidetu",
|
||||
"Subscribed" : "Harpidetua",
|
||||
"Preferences" : "Hobespenak",
|
||||
"Notifications" : "Jakinarazpenak",
|
||||
"Enable" : "Aktibatu",
|
||||
"Disable" : "Desaktibatu",
|
||||
"Tag" : "Etiketa",
|
||||
"Description" : "Deskripzioa",
|
||||
"Enabled" : "Gaituta",
|
||||
"Update" : "Eguneratu",
|
||||
"Create" : "Sortu",
|
||||
"Name" : "Izena",
|
||||
"Sort order" : "Ordenatzeko irizpidea",
|
||||
"New" : "Berria",
|
||||
"Permissions" : "Baimenak",
|
||||
"Move up" : "Eraman gora",
|
||||
"Move down" : "Eraman behera",
|
||||
"Total users" : "Erabiltzaileak guztira",
|
||||
"Last 7 days" : "Azken 7 egunetan",
|
||||
"General settings" : "Ezarpen orokorrak",
|
||||
"Appearance" : "Itxura",
|
||||
"Access control" : "Sarbide kontrola",
|
||||
"Settings saved" : "Ezarpenak gordeta",
|
||||
"Failed to save settings" : "Ezarpenak gordetzeak huts egin du",
|
||||
"Reset" : "Berrezarri",
|
||||
"Category" : "Kategoria",
|
||||
"Allow" : "Baimendu",
|
||||
"ID" : "ID",
|
||||
"Created" : "Sortua",
|
||||
"Actions" : "Ekintzak",
|
||||
"No description" : "Deskribapenik ez",
|
||||
"User management" : "Erabiltzaileen kudeaketa",
|
||||
"Loading users …" : "Erabiltzaileak kargatzen ...",
|
||||
"No users found" : "Ez da erabiltzailerik aurkitu",
|
||||
"Joined" : "Batu da",
|
||||
"Status" : "Egoera",
|
||||
"Active" : "Aktibo",
|
||||
"Deleted" : "Ezabatuta"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
80
l10n/eu.json
Normal file
80
l10n/eu.json
Normal file
@@ -0,0 +1,80 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foroa",
|
||||
"Admin" : "Admin",
|
||||
"User" : "Erabiltzailea",
|
||||
"General" : "Orokorra",
|
||||
"Support" : "Laguntza",
|
||||
"Bold text" : "Testu lodia",
|
||||
"Underlined text" : "Azpimarratutako testua",
|
||||
"Deleted user" : "Ezabatutako erabiltzaileak",
|
||||
"Search" : "Bilatu",
|
||||
"Home" : "Etxea",
|
||||
"Dashboard" : "Panela",
|
||||
"Users" : "Erabiltzaileak",
|
||||
"Categories" : "Kategoriak",
|
||||
"Expand" : "Zabaldu",
|
||||
"Collapse" : "Tolestu",
|
||||
"Code" : "Kodea",
|
||||
"Quote" : "Aurrekontua",
|
||||
"Font size" : "Letra-tamaina",
|
||||
"List" : "Zerrenda",
|
||||
"Insert emoji" : "Txertatu emojia",
|
||||
"Page not found" : "Orria ez da aurkitu",
|
||||
"Back" : "Itzuli",
|
||||
"Edit" : "Editatu",
|
||||
"Delete" : "Ezabatu",
|
||||
"Unread" : "Irakurri gabe",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Gorde",
|
||||
"React with {emoji}" : "Erreakzionatu {emoji}-(r)ekin",
|
||||
"Uncategorized" : "Kategoria gabe",
|
||||
"Views" : "Ikuspegiak",
|
||||
"Title" : "Izenburua",
|
||||
"Refresh" : "Freskatu",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Retry" : "saiatu berriro",
|
||||
"Error" : "Errorea",
|
||||
"Searching …" : "Bilatzen…",
|
||||
"No results found" : "Ez da emaitzarik aurkitu",
|
||||
"Back to {category}" : "Itzuli {category}(e)ra",
|
||||
"by" : "Nork",
|
||||
"Subscribe" : "Harpidetu",
|
||||
"Subscribed" : "Harpidetua",
|
||||
"Preferences" : "Hobespenak",
|
||||
"Notifications" : "Jakinarazpenak",
|
||||
"Enable" : "Aktibatu",
|
||||
"Disable" : "Desaktibatu",
|
||||
"Tag" : "Etiketa",
|
||||
"Description" : "Deskripzioa",
|
||||
"Enabled" : "Gaituta",
|
||||
"Update" : "Eguneratu",
|
||||
"Create" : "Sortu",
|
||||
"Name" : "Izena",
|
||||
"Sort order" : "Ordenatzeko irizpidea",
|
||||
"New" : "Berria",
|
||||
"Permissions" : "Baimenak",
|
||||
"Move up" : "Eraman gora",
|
||||
"Move down" : "Eraman behera",
|
||||
"Total users" : "Erabiltzaileak guztira",
|
||||
"Last 7 days" : "Azken 7 egunetan",
|
||||
"General settings" : "Ezarpen orokorrak",
|
||||
"Appearance" : "Itxura",
|
||||
"Access control" : "Sarbide kontrola",
|
||||
"Settings saved" : "Ezarpenak gordeta",
|
||||
"Failed to save settings" : "Ezarpenak gordetzeak huts egin du",
|
||||
"Reset" : "Berrezarri",
|
||||
"Category" : "Kategoria",
|
||||
"Allow" : "Baimendu",
|
||||
"ID" : "ID",
|
||||
"Created" : "Sortua",
|
||||
"Actions" : "Ekintzak",
|
||||
"No description" : "Deskribapenik ez",
|
||||
"User management" : "Erabiltzaileen kudeaketa",
|
||||
"Loading users …" : "Erabiltzaileak kargatzen ...",
|
||||
"No users found" : "Ez da erabiltzailerik aurkitu",
|
||||
"Joined" : "Batu da",
|
||||
"Status" : "Egoera",
|
||||
"Active" : "Aktibo",
|
||||
"Deleted" : "Ezabatuta"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
79
l10n/fa.js
Normal file
79
l10n/fa.js
Normal file
@@ -0,0 +1,79 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "انجمن",
|
||||
"Admin" : "مدیر",
|
||||
"Moderator" : "مدیر",
|
||||
"User" : "کاربر",
|
||||
"General" : "عمومی",
|
||||
"Support" : "پشتیبانی",
|
||||
"Bold text" : "Bold text",
|
||||
"Underlined text" : "Underlined text",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Search" : "جستجو",
|
||||
"Home" : "خانه",
|
||||
"Dashboard" : "پیشخوان",
|
||||
"Users" : "کاربران",
|
||||
"Categories" : "دستهها",
|
||||
"Expand" : "بسط دادن",
|
||||
"Collapse" : "فروکش کردن",
|
||||
"Code" : "کد",
|
||||
"Quote" : "Quote",
|
||||
"Font size" : "اندازهٔ قلم",
|
||||
"List" : "فهرست",
|
||||
"Insert emoji" : "Insert emoji",
|
||||
"Page not found" : "صفحه پیدا نشد",
|
||||
"Back" : "بازگشت",
|
||||
"Edit" : "ویرایش",
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "Unread",
|
||||
"Cancel" : "انصراف",
|
||||
"Save" : "ذخیره",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "دستهبندی نشده",
|
||||
"Views" : "بازدیدها",
|
||||
"Title" : "Title",
|
||||
"Refresh" : "تازهسازی",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Retry" : "تلاش دوباره",
|
||||
"Error" : "خطا",
|
||||
"Searching …" : "جستجوکردن …",
|
||||
"Back to {category}" : "بازگشت به {category}",
|
||||
"by" : "با",
|
||||
"Subscribe" : "اشتراک گذاری",
|
||||
"Subscribed" : "Subscribed",
|
||||
"Preferences" : "اولویت ها",
|
||||
"Notifications" : "هشدارها",
|
||||
"Enable" : "فعالسازی",
|
||||
"Disable" : "غیرفعال کردن",
|
||||
"Description" : "شرح",
|
||||
"Enabled" : "فعال شده",
|
||||
"Update" : "بهروزرسانی",
|
||||
"Create" : "ایجاد",
|
||||
"Name" : "نام",
|
||||
"Sort order" : "Sort order",
|
||||
"New" : "جدید",
|
||||
"Permissions" : "مجوزها",
|
||||
"Move up" : "حرکت به بالا",
|
||||
"Move down" : "حرکت به پایین",
|
||||
"Last 7 days" : "۷ روز گذشته.",
|
||||
"General settings" : "تنظیمات عمومی",
|
||||
"Appearance" : "ظاهر",
|
||||
"Access control" : "کنترل دسترسی",
|
||||
"Settings saved" : "تنظیمات ذخیره شد",
|
||||
"Failed to save settings" : "تنظیمات ذخیره نشدند",
|
||||
"Reset" : "بازنشانی",
|
||||
"Category" : "دسته",
|
||||
"Allow" : "اجازه دادن",
|
||||
"ID" : "شناسه",
|
||||
"Created" : "ایجاد شده",
|
||||
"Actions" : "کنشها",
|
||||
"No description" : "No description",
|
||||
"Loading users …" : "Loading users …",
|
||||
"No users found" : "No users found",
|
||||
"Joined" : "پیوستن",
|
||||
"Status" : "Status",
|
||||
"Active" : "فعال کردن",
|
||||
"Deleted" : "حذف شده"
|
||||
},
|
||||
"nplurals=2; plural=(n > 1);");
|
||||
77
l10n/fa.json
Normal file
77
l10n/fa.json
Normal file
@@ -0,0 +1,77 @@
|
||||
{ "translations": {
|
||||
"Forum" : "انجمن",
|
||||
"Admin" : "مدیر",
|
||||
"Moderator" : "مدیر",
|
||||
"User" : "کاربر",
|
||||
"General" : "عمومی",
|
||||
"Support" : "پشتیبانی",
|
||||
"Bold text" : "Bold text",
|
||||
"Underlined text" : "Underlined text",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Search" : "جستجو",
|
||||
"Home" : "خانه",
|
||||
"Dashboard" : "پیشخوان",
|
||||
"Users" : "کاربران",
|
||||
"Categories" : "دستهها",
|
||||
"Expand" : "بسط دادن",
|
||||
"Collapse" : "فروکش کردن",
|
||||
"Code" : "کد",
|
||||
"Quote" : "Quote",
|
||||
"Font size" : "اندازهٔ قلم",
|
||||
"List" : "فهرست",
|
||||
"Insert emoji" : "Insert emoji",
|
||||
"Page not found" : "صفحه پیدا نشد",
|
||||
"Back" : "بازگشت",
|
||||
"Edit" : "ویرایش",
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "Unread",
|
||||
"Cancel" : "انصراف",
|
||||
"Save" : "ذخیره",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "دستهبندی نشده",
|
||||
"Views" : "بازدیدها",
|
||||
"Title" : "Title",
|
||||
"Refresh" : "تازهسازی",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Retry" : "تلاش دوباره",
|
||||
"Error" : "خطا",
|
||||
"Searching …" : "جستجوکردن …",
|
||||
"Back to {category}" : "بازگشت به {category}",
|
||||
"by" : "با",
|
||||
"Subscribe" : "اشتراک گذاری",
|
||||
"Subscribed" : "Subscribed",
|
||||
"Preferences" : "اولویت ها",
|
||||
"Notifications" : "هشدارها",
|
||||
"Enable" : "فعالسازی",
|
||||
"Disable" : "غیرفعال کردن",
|
||||
"Description" : "شرح",
|
||||
"Enabled" : "فعال شده",
|
||||
"Update" : "بهروزرسانی",
|
||||
"Create" : "ایجاد",
|
||||
"Name" : "نام",
|
||||
"Sort order" : "Sort order",
|
||||
"New" : "جدید",
|
||||
"Permissions" : "مجوزها",
|
||||
"Move up" : "حرکت به بالا",
|
||||
"Move down" : "حرکت به پایین",
|
||||
"Last 7 days" : "۷ روز گذشته.",
|
||||
"General settings" : "تنظیمات عمومی",
|
||||
"Appearance" : "ظاهر",
|
||||
"Access control" : "کنترل دسترسی",
|
||||
"Settings saved" : "تنظیمات ذخیره شد",
|
||||
"Failed to save settings" : "تنظیمات ذخیره نشدند",
|
||||
"Reset" : "بازنشانی",
|
||||
"Category" : "دسته",
|
||||
"Allow" : "اجازه دادن",
|
||||
"ID" : "شناسه",
|
||||
"Created" : "ایجاد شده",
|
||||
"Actions" : "کنشها",
|
||||
"No description" : "No description",
|
||||
"Loading users …" : "Loading users …",
|
||||
"No users found" : "No users found",
|
||||
"Joined" : "پیوستن",
|
||||
"Status" : "Status",
|
||||
"Active" : "فعال کردن",
|
||||
"Deleted" : "حذف شده"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
}
|
||||
81
l10n/fi.js
Normal file
81
l10n/fi.js
Normal file
@@ -0,0 +1,81 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Keskustelupalsta",
|
||||
"Admin" : "Ylläpito",
|
||||
"User" : "Käyttäjä",
|
||||
"Guest" : "Vieras",
|
||||
"General" : "Yleiset",
|
||||
"Support" : "Tuki",
|
||||
"Bold text" : "Lihavoitu teksti",
|
||||
"Underlined text" : "Alleviivattu teksti",
|
||||
"Deleted user" : "Poistettu käyttäjä",
|
||||
"Search" : "Etsi",
|
||||
"Home" : "Koti",
|
||||
"Dashboard" : "Kojelauta",
|
||||
"Categories" : "Luokat",
|
||||
"Expand" : "Laajenna",
|
||||
"Collapse" : "Kutista näkymää",
|
||||
"Code" : "Koodi",
|
||||
"Font size" : "Fontin koko",
|
||||
"List" : "Lista",
|
||||
"Insert emoji" : "Lisää emoji",
|
||||
"Page not found" : "Sivua ei löytynyt",
|
||||
"Back" : "Takaisin",
|
||||
"Edit" : "Muokkaa",
|
||||
"Delete" : "Poista",
|
||||
"Unread" : "Lukematon",
|
||||
"Cancel" : "Peruuta",
|
||||
"Save" : "Tallenna",
|
||||
"React with {emoji}" : "Reagoi emojilla {emoji}",
|
||||
"Uncategorized" : "Luokittelematon",
|
||||
"Views" : "Näkymät",
|
||||
"Title" : "Nimeke",
|
||||
"Refresh" : "Päivitä",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Retry" : "Yritä uudelleen",
|
||||
"Error" : "Virhe",
|
||||
"Searching …" : "Haetaan…",
|
||||
"No results found" : "Ei tuloksia",
|
||||
"Back to {category}" : "Takaisin kohtaan {category}",
|
||||
"by" : "Kirjoittaja:",
|
||||
"Subscribe" : "Tilaa",
|
||||
"Subscribed" : "Tilattu",
|
||||
"Preferences" : "Asetukset",
|
||||
"Notifications" : "Ilmoitukset",
|
||||
"Enable" : "Käytä",
|
||||
"Disable" : "Poista käytöstä",
|
||||
"This action cannot be undone." : "Tätä toimintoa ei voi perua.",
|
||||
"Tag" : "Tunniste",
|
||||
"Description" : "Kuvaus",
|
||||
"Enabled" : "Käytössä",
|
||||
"Update" : "Päivitä",
|
||||
"Create" : "Luo",
|
||||
"Name" : "Nimi",
|
||||
"New" : "Uusi",
|
||||
"Permissions" : "Oikeudet",
|
||||
"Move up" : "Siirrä ylös",
|
||||
"Move down" : "Siirrä alas",
|
||||
"Total users" : "Käyttäjiä yhteensä",
|
||||
"Last 7 days" : "Edelliset 7 päivää",
|
||||
"General settings" : "Yleiset asetukset",
|
||||
"Appearance" : "Ulkoasu",
|
||||
"Access control" : "Pääsynhallinta",
|
||||
"Settings saved" : "Asetukset tallennettu",
|
||||
"Failed to save settings" : "Asetusten tallentaminen epäonnistui",
|
||||
"Reset" : "Palauta",
|
||||
"Category" : "Kategoria",
|
||||
"Allow" : "Salli",
|
||||
"ID" : "ID",
|
||||
"Created" : "Luonut",
|
||||
"Actions" : "Toiminnot",
|
||||
"No description" : "Ei kuvausta",
|
||||
"User management" : "Käyttäjähallinta",
|
||||
"Loading users …" : "Ladataan käyttäjiä…",
|
||||
"No users found" : "Käyttäjiä ei löytynyt",
|
||||
"Joined" : "Liittynyt",
|
||||
"Status" : "Tila",
|
||||
"Active" : "Aktiivinen",
|
||||
"Deleted" : "Poistettu"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
79
l10n/fi.json
Normal file
79
l10n/fi.json
Normal file
@@ -0,0 +1,79 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Keskustelupalsta",
|
||||
"Admin" : "Ylläpito",
|
||||
"User" : "Käyttäjä",
|
||||
"Guest" : "Vieras",
|
||||
"General" : "Yleiset",
|
||||
"Support" : "Tuki",
|
||||
"Bold text" : "Lihavoitu teksti",
|
||||
"Underlined text" : "Alleviivattu teksti",
|
||||
"Deleted user" : "Poistettu käyttäjä",
|
||||
"Search" : "Etsi",
|
||||
"Home" : "Koti",
|
||||
"Dashboard" : "Kojelauta",
|
||||
"Categories" : "Luokat",
|
||||
"Expand" : "Laajenna",
|
||||
"Collapse" : "Kutista näkymää",
|
||||
"Code" : "Koodi",
|
||||
"Font size" : "Fontin koko",
|
||||
"List" : "Lista",
|
||||
"Insert emoji" : "Lisää emoji",
|
||||
"Page not found" : "Sivua ei löytynyt",
|
||||
"Back" : "Takaisin",
|
||||
"Edit" : "Muokkaa",
|
||||
"Delete" : "Poista",
|
||||
"Unread" : "Lukematon",
|
||||
"Cancel" : "Peruuta",
|
||||
"Save" : "Tallenna",
|
||||
"React with {emoji}" : "Reagoi emojilla {emoji}",
|
||||
"Uncategorized" : "Luokittelematon",
|
||||
"Views" : "Näkymät",
|
||||
"Title" : "Nimeke",
|
||||
"Refresh" : "Päivitä",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Retry" : "Yritä uudelleen",
|
||||
"Error" : "Virhe",
|
||||
"Searching …" : "Haetaan…",
|
||||
"No results found" : "Ei tuloksia",
|
||||
"Back to {category}" : "Takaisin kohtaan {category}",
|
||||
"by" : "Kirjoittaja:",
|
||||
"Subscribe" : "Tilaa",
|
||||
"Subscribed" : "Tilattu",
|
||||
"Preferences" : "Asetukset",
|
||||
"Notifications" : "Ilmoitukset",
|
||||
"Enable" : "Käytä",
|
||||
"Disable" : "Poista käytöstä",
|
||||
"This action cannot be undone." : "Tätä toimintoa ei voi perua.",
|
||||
"Tag" : "Tunniste",
|
||||
"Description" : "Kuvaus",
|
||||
"Enabled" : "Käytössä",
|
||||
"Update" : "Päivitä",
|
||||
"Create" : "Luo",
|
||||
"Name" : "Nimi",
|
||||
"New" : "Uusi",
|
||||
"Permissions" : "Oikeudet",
|
||||
"Move up" : "Siirrä ylös",
|
||||
"Move down" : "Siirrä alas",
|
||||
"Total users" : "Käyttäjiä yhteensä",
|
||||
"Last 7 days" : "Edelliset 7 päivää",
|
||||
"General settings" : "Yleiset asetukset",
|
||||
"Appearance" : "Ulkoasu",
|
||||
"Access control" : "Pääsynhallinta",
|
||||
"Settings saved" : "Asetukset tallennettu",
|
||||
"Failed to save settings" : "Asetusten tallentaminen epäonnistui",
|
||||
"Reset" : "Palauta",
|
||||
"Category" : "Kategoria",
|
||||
"Allow" : "Salli",
|
||||
"ID" : "ID",
|
||||
"Created" : "Luonut",
|
||||
"Actions" : "Toiminnot",
|
||||
"No description" : "Ei kuvausta",
|
||||
"User management" : "Käyttäjähallinta",
|
||||
"Loading users …" : "Ladataan käyttäjiä…",
|
||||
"No users found" : "Käyttäjiä ei löytynyt",
|
||||
"Joined" : "Liittynyt",
|
||||
"Status" : "Tila",
|
||||
"Active" : "Aktiivinen",
|
||||
"Deleted" : "Poistettu"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
89
l10n/fr.js
Normal file
89
l10n/fr.js
Normal file
@@ -0,0 +1,89 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Administrateur",
|
||||
"User" : "Utilisateur",
|
||||
"Guest" : "Invité",
|
||||
"General" : "Général",
|
||||
"Support" : "Support",
|
||||
"Bold text" : "Texte en gras",
|
||||
"Underlined text" : "Texte souligné",
|
||||
"Deleted user" : "Utilisateur supprimé",
|
||||
"Search" : "Rechercher",
|
||||
"Home" : "Accueil",
|
||||
"Dashboard" : "Tableau de bord",
|
||||
"Users" : "Utilisateurs",
|
||||
"Categories" : "Catégories",
|
||||
"Expand" : "Étendre",
|
||||
"Collapse" : "Replier",
|
||||
"Code" : "Code",
|
||||
"Quote" : "Devis",
|
||||
"Font size" : "Taille des caractères",
|
||||
"List" : "Liste",
|
||||
"Insert emoji" : "Insérer un emoji",
|
||||
"Page not found" : "Page non trouvée",
|
||||
"Back" : "Retour",
|
||||
"Edit" : "Modifier",
|
||||
"Delete" : "Supprimer",
|
||||
"Unread" : "Non lu",
|
||||
"Cancel" : "Annuler",
|
||||
"Save" : "Enregistrer",
|
||||
"React with {emoji}" : "Réagir avec {emoji}",
|
||||
"Uncategorized" : "Non catégorisé",
|
||||
"Views" : "Vues",
|
||||
"Title" : "Titre",
|
||||
"Refresh" : "Actualiser",
|
||||
"Loading …" : "Chargement…",
|
||||
"Retry" : "Réessayer",
|
||||
"In {category}" : "Dans {category}",
|
||||
"Error" : "Erreur",
|
||||
"Searching …" : "Recherche…",
|
||||
"No results found" : "Aucun résultat",
|
||||
"Back to {category}" : "Retourner à {category}",
|
||||
"Reply" : "Répondre",
|
||||
"by" : "par",
|
||||
"Subscribe" : "S’abonner",
|
||||
"Subscribed" : "Abonné",
|
||||
"Preferences" : "Préférences",
|
||||
"Notifications" : "Notifications",
|
||||
"Enable" : "Activer",
|
||||
"Disable" : "Désactiver",
|
||||
"This action cannot be undone." : "Cette action ne peut pas être annulée",
|
||||
"Tag" : "Étiquette",
|
||||
"Description" : "Description",
|
||||
"Enabled" : "Activé",
|
||||
"Update" : "Mettre à jour",
|
||||
"Create" : "Créer",
|
||||
"Name" : "Nom",
|
||||
"Enter category name" : "Saisissez le nom de la catégorie",
|
||||
"Sort order" : "Ordre de tri",
|
||||
"0" : "0",
|
||||
"New" : "Nouveau",
|
||||
"Permissions" : "Autorisations",
|
||||
"Move up" : "Déplacer vers le haut",
|
||||
"Move down" : "Déplacer vers le bas",
|
||||
"Total users" : "Nombre total d'utilisateurs",
|
||||
"Last 7 days" : "7 derniers jours",
|
||||
"All time" : "Tout le temps",
|
||||
"General settings" : "Paramètres généraux",
|
||||
"Appearance" : "Apparence",
|
||||
"Access control" : "Contrôle d'accès",
|
||||
"Settings saved" : "Paramètres enregistrés",
|
||||
"Failed to save settings" : "Impossible d'enregistrer les paramètres",
|
||||
"Reset" : "Réinitialiser",
|
||||
"Category" : "Catégorie",
|
||||
"Allow" : "Autoriser",
|
||||
"ID" : "ID",
|
||||
"Created" : "Créée",
|
||||
"Actions" : "Actions",
|
||||
"No description" : "Pas de description",
|
||||
"User management" : "Gestion des utilisateurs",
|
||||
"Loading users …" : "Chargement des utilisateurs...",
|
||||
"No users found" : "Aucun utilisateur trouvé",
|
||||
"Joined" : "A rejoint",
|
||||
"Status" : "État",
|
||||
"Active" : "Actif",
|
||||
"Deleted" : "Effacé"
|
||||
},
|
||||
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
|
||||
87
l10n/fr.json
Normal file
87
l10n/fr.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Forum",
|
||||
"Admin" : "Administrateur",
|
||||
"User" : "Utilisateur",
|
||||
"Guest" : "Invité",
|
||||
"General" : "Général",
|
||||
"Support" : "Support",
|
||||
"Bold text" : "Texte en gras",
|
||||
"Underlined text" : "Texte souligné",
|
||||
"Deleted user" : "Utilisateur supprimé",
|
||||
"Search" : "Rechercher",
|
||||
"Home" : "Accueil",
|
||||
"Dashboard" : "Tableau de bord",
|
||||
"Users" : "Utilisateurs",
|
||||
"Categories" : "Catégories",
|
||||
"Expand" : "Étendre",
|
||||
"Collapse" : "Replier",
|
||||
"Code" : "Code",
|
||||
"Quote" : "Devis",
|
||||
"Font size" : "Taille des caractères",
|
||||
"List" : "Liste",
|
||||
"Insert emoji" : "Insérer un emoji",
|
||||
"Page not found" : "Page non trouvée",
|
||||
"Back" : "Retour",
|
||||
"Edit" : "Modifier",
|
||||
"Delete" : "Supprimer",
|
||||
"Unread" : "Non lu",
|
||||
"Cancel" : "Annuler",
|
||||
"Save" : "Enregistrer",
|
||||
"React with {emoji}" : "Réagir avec {emoji}",
|
||||
"Uncategorized" : "Non catégorisé",
|
||||
"Views" : "Vues",
|
||||
"Title" : "Titre",
|
||||
"Refresh" : "Actualiser",
|
||||
"Loading …" : "Chargement…",
|
||||
"Retry" : "Réessayer",
|
||||
"In {category}" : "Dans {category}",
|
||||
"Error" : "Erreur",
|
||||
"Searching …" : "Recherche…",
|
||||
"No results found" : "Aucun résultat",
|
||||
"Back to {category}" : "Retourner à {category}",
|
||||
"Reply" : "Répondre",
|
||||
"by" : "par",
|
||||
"Subscribe" : "S’abonner",
|
||||
"Subscribed" : "Abonné",
|
||||
"Preferences" : "Préférences",
|
||||
"Notifications" : "Notifications",
|
||||
"Enable" : "Activer",
|
||||
"Disable" : "Désactiver",
|
||||
"This action cannot be undone." : "Cette action ne peut pas être annulée",
|
||||
"Tag" : "Étiquette",
|
||||
"Description" : "Description",
|
||||
"Enabled" : "Activé",
|
||||
"Update" : "Mettre à jour",
|
||||
"Create" : "Créer",
|
||||
"Name" : "Nom",
|
||||
"Enter category name" : "Saisissez le nom de la catégorie",
|
||||
"Sort order" : "Ordre de tri",
|
||||
"0" : "0",
|
||||
"New" : "Nouveau",
|
||||
"Permissions" : "Autorisations",
|
||||
"Move up" : "Déplacer vers le haut",
|
||||
"Move down" : "Déplacer vers le bas",
|
||||
"Total users" : "Nombre total d'utilisateurs",
|
||||
"Last 7 days" : "7 derniers jours",
|
||||
"All time" : "Tout le temps",
|
||||
"General settings" : "Paramètres généraux",
|
||||
"Appearance" : "Apparence",
|
||||
"Access control" : "Contrôle d'accès",
|
||||
"Settings saved" : "Paramètres enregistrés",
|
||||
"Failed to save settings" : "Impossible d'enregistrer les paramètres",
|
||||
"Reset" : "Réinitialiser",
|
||||
"Category" : "Catégorie",
|
||||
"Allow" : "Autoriser",
|
||||
"ID" : "ID",
|
||||
"Created" : "Créée",
|
||||
"Actions" : "Actions",
|
||||
"No description" : "Pas de description",
|
||||
"User management" : "Gestion des utilisateurs",
|
||||
"Loading users …" : "Chargement des utilisateurs...",
|
||||
"No users found" : "Aucun utilisateur trouvé",
|
||||
"Joined" : "A rejoint",
|
||||
"Status" : "État",
|
||||
"Active" : "Actif",
|
||||
"Deleted" : "Effacé"
|
||||
},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
||||
}
|
||||
88
l10n/ga.js
Normal file
88
l10n/ga.js
Normal file
@@ -0,0 +1,88 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Fóram",
|
||||
"Admin" : "Riarachán",
|
||||
"Moderator" : "Modhnóir",
|
||||
"User" : "Úsáideoir",
|
||||
"Guest" : "Aoi",
|
||||
"General" : "Ginearálta",
|
||||
"Support" : "Tacaíocht",
|
||||
"Bold text" : "Téacs trom",
|
||||
"Underlined text" : "Téacs a bhfuil líne faoi",
|
||||
"Deleted user" : "Úsáideoir scriosta",
|
||||
"Search" : "Cuardach",
|
||||
"Home" : "Baile",
|
||||
"Dashboard" : "Deais",
|
||||
"Users" : "Úsáideoirí",
|
||||
"Categories" : "Catagóirí",
|
||||
"Expand" : "Leathnaigh",
|
||||
"Collapse" : "Laghdaigh",
|
||||
"Code" : "Cód",
|
||||
"Quote" : "Athfhriotail",
|
||||
"Font size" : "Méid cló",
|
||||
"Align left" : "Ailínigh ar chlé",
|
||||
"Align center" : "Ailínigh sa lár",
|
||||
"Align right" : "Ailínigh ar dheis",
|
||||
"List" : "Liosta",
|
||||
"Insert emoji" : "Cuir isteach emoji",
|
||||
"Page not found" : "Ní bhfuarthas an leathanach",
|
||||
"Back" : "Ar ais",
|
||||
"Edit" : "Cuir in eagar",
|
||||
"Delete" : "Scrios",
|
||||
"Unread" : "Neamhléite",
|
||||
"Cancel" : "Cealaigh",
|
||||
"Save" : "Sábháil",
|
||||
"React with {emoji}" : "Freagair le {emoji}",
|
||||
"Uncategorized" : "Gan catagóir",
|
||||
"Views" : "Radhairc",
|
||||
"Title" : "Teideal",
|
||||
"Refresh" : "Athnuaigh",
|
||||
"Loading …" : "Á lódáil…",
|
||||
"Retry" : "Bain triail eile as",
|
||||
"In {category}" : "I {category}",
|
||||
"Error" : "Earráid",
|
||||
"Searching …" : "Ag cuardach…",
|
||||
"No results found" : "Níor aimsíodh aon torthaí",
|
||||
"Back to {category}" : "Ar ais go dtí {category}",
|
||||
"Reply" : "Freagra",
|
||||
"by" : "le",
|
||||
"Subscribe" : "Liostáil",
|
||||
"Subscribed" : "Suibscríofa",
|
||||
"Preferences" : "Roghanna",
|
||||
"Notifications" : "Fógraí",
|
||||
"Enable" : "Cumasaigh",
|
||||
"Disable" : "Díchumasaigh",
|
||||
"This action cannot be undone." : "Ní féidir an gníomh seo a chealú.",
|
||||
"Tag" : "Clib",
|
||||
"Description" : "Cur síos",
|
||||
"Enabled" : "Cumasaithe",
|
||||
"Update" : "Nuashonrú",
|
||||
"Create" : "Cruthaigh",
|
||||
"Name" : "Ainm",
|
||||
"Enter category name" : "Cuir isteach ainm na catagóire",
|
||||
"Sort order" : "Ordú sórtála",
|
||||
"New" : "Nua",
|
||||
"Permissions" : "Ceadanna",
|
||||
"Move up" : "Éirí suas",
|
||||
"Move down" : "Bog síos",
|
||||
"Last 7 days" : "7 lá seo caite",
|
||||
"General settings" : "Socruithe Ginearálta",
|
||||
"Appearance" : "Dealramh",
|
||||
"Settings saved" : "Socruithe sábháilte",
|
||||
"Failed to save settings" : "Theip ar na socruithe a shábháil",
|
||||
"Reset" : "Athshocraigh",
|
||||
"Category" : "Catagóir",
|
||||
"Allow" : "Ceadaigh",
|
||||
"ID" : "ID",
|
||||
"Created" : "Cruthaithe",
|
||||
"Actions" : "Gníomhartha",
|
||||
"No description" : "Gan cur síos",
|
||||
"User management" : "Bainistíocht úsáideora",
|
||||
"Loading users …" : "Úsáideoirí á lódáil…",
|
||||
"No users found" : "Níor aimsíodh aon úsáideoirí",
|
||||
"Status" : "Stádas",
|
||||
"Active" : "Gníomhach",
|
||||
"Deleted" : "Scriosta"
|
||||
},
|
||||
"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);");
|
||||
86
l10n/ga.json
Normal file
86
l10n/ga.json
Normal file
@@ -0,0 +1,86 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Fóram",
|
||||
"Admin" : "Riarachán",
|
||||
"Moderator" : "Modhnóir",
|
||||
"User" : "Úsáideoir",
|
||||
"Guest" : "Aoi",
|
||||
"General" : "Ginearálta",
|
||||
"Support" : "Tacaíocht",
|
||||
"Bold text" : "Téacs trom",
|
||||
"Underlined text" : "Téacs a bhfuil líne faoi",
|
||||
"Deleted user" : "Úsáideoir scriosta",
|
||||
"Search" : "Cuardach",
|
||||
"Home" : "Baile",
|
||||
"Dashboard" : "Deais",
|
||||
"Users" : "Úsáideoirí",
|
||||
"Categories" : "Catagóirí",
|
||||
"Expand" : "Leathnaigh",
|
||||
"Collapse" : "Laghdaigh",
|
||||
"Code" : "Cód",
|
||||
"Quote" : "Athfhriotail",
|
||||
"Font size" : "Méid cló",
|
||||
"Align left" : "Ailínigh ar chlé",
|
||||
"Align center" : "Ailínigh sa lár",
|
||||
"Align right" : "Ailínigh ar dheis",
|
||||
"List" : "Liosta",
|
||||
"Insert emoji" : "Cuir isteach emoji",
|
||||
"Page not found" : "Ní bhfuarthas an leathanach",
|
||||
"Back" : "Ar ais",
|
||||
"Edit" : "Cuir in eagar",
|
||||
"Delete" : "Scrios",
|
||||
"Unread" : "Neamhléite",
|
||||
"Cancel" : "Cealaigh",
|
||||
"Save" : "Sábháil",
|
||||
"React with {emoji}" : "Freagair le {emoji}",
|
||||
"Uncategorized" : "Gan catagóir",
|
||||
"Views" : "Radhairc",
|
||||
"Title" : "Teideal",
|
||||
"Refresh" : "Athnuaigh",
|
||||
"Loading …" : "Á lódáil…",
|
||||
"Retry" : "Bain triail eile as",
|
||||
"In {category}" : "I {category}",
|
||||
"Error" : "Earráid",
|
||||
"Searching …" : "Ag cuardach…",
|
||||
"No results found" : "Níor aimsíodh aon torthaí",
|
||||
"Back to {category}" : "Ar ais go dtí {category}",
|
||||
"Reply" : "Freagra",
|
||||
"by" : "le",
|
||||
"Subscribe" : "Liostáil",
|
||||
"Subscribed" : "Suibscríofa",
|
||||
"Preferences" : "Roghanna",
|
||||
"Notifications" : "Fógraí",
|
||||
"Enable" : "Cumasaigh",
|
||||
"Disable" : "Díchumasaigh",
|
||||
"This action cannot be undone." : "Ní féidir an gníomh seo a chealú.",
|
||||
"Tag" : "Clib",
|
||||
"Description" : "Cur síos",
|
||||
"Enabled" : "Cumasaithe",
|
||||
"Update" : "Nuashonrú",
|
||||
"Create" : "Cruthaigh",
|
||||
"Name" : "Ainm",
|
||||
"Enter category name" : "Cuir isteach ainm na catagóire",
|
||||
"Sort order" : "Ordú sórtála",
|
||||
"New" : "Nua",
|
||||
"Permissions" : "Ceadanna",
|
||||
"Move up" : "Éirí suas",
|
||||
"Move down" : "Bog síos",
|
||||
"Last 7 days" : "7 lá seo caite",
|
||||
"General settings" : "Socruithe Ginearálta",
|
||||
"Appearance" : "Dealramh",
|
||||
"Settings saved" : "Socruithe sábháilte",
|
||||
"Failed to save settings" : "Theip ar na socruithe a shábháil",
|
||||
"Reset" : "Athshocraigh",
|
||||
"Category" : "Catagóir",
|
||||
"Allow" : "Ceadaigh",
|
||||
"ID" : "ID",
|
||||
"Created" : "Cruthaithe",
|
||||
"Actions" : "Gníomhartha",
|
||||
"No description" : "Gan cur síos",
|
||||
"User management" : "Bainistíocht úsáideora",
|
||||
"Loading users …" : "Úsáideoirí á lódáil…",
|
||||
"No users found" : "Níor aimsíodh aon úsáideoirí",
|
||||
"Status" : "Stádas",
|
||||
"Active" : "Gníomhach",
|
||||
"Deleted" : "Scriosta"
|
||||
},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"
|
||||
}
|
||||
26
l10n/gd.js
Normal file
26
l10n/gd.js
Normal file
@@ -0,0 +1,26 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"User" : "Cleachdaiche",
|
||||
"General" : "Coitcheann",
|
||||
"Search" : "Lorg",
|
||||
"Home" : "Dachaigh",
|
||||
"Font size" : "Meud a’ chrutha-chlò",
|
||||
"Back" : "Air ais",
|
||||
"Edit" : "Deasaich",
|
||||
"Delete" : "Sguab às",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Sàbhail",
|
||||
"Uncategorized" : "Gun seòrsachadh",
|
||||
"Refresh" : "Ath-nuadhaich",
|
||||
"Error" : "Mearachd",
|
||||
"Preferences" : "Roghainnean",
|
||||
"Notifications" : "Brathan",
|
||||
"Disable" : "Cuir à comas",
|
||||
"Create" : "Cruthaich",
|
||||
"Name" : "Ainm",
|
||||
"Category" : "Roinn-seòrsa",
|
||||
"Allow" : "Ceadaich",
|
||||
"Deleted" : "Chaidh a sguabadh às"
|
||||
},
|
||||
"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;");
|
||||
24
l10n/gd.json
Normal file
24
l10n/gd.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{ "translations": {
|
||||
"User" : "Cleachdaiche",
|
||||
"General" : "Coitcheann",
|
||||
"Search" : "Lorg",
|
||||
"Home" : "Dachaigh",
|
||||
"Font size" : "Meud a’ chrutha-chlò",
|
||||
"Back" : "Air ais",
|
||||
"Edit" : "Deasaich",
|
||||
"Delete" : "Sguab às",
|
||||
"Cancel" : "Cancel",
|
||||
"Save" : "Sàbhail",
|
||||
"Uncategorized" : "Gun seòrsachadh",
|
||||
"Refresh" : "Ath-nuadhaich",
|
||||
"Error" : "Mearachd",
|
||||
"Preferences" : "Roghainnean",
|
||||
"Notifications" : "Brathan",
|
||||
"Disable" : "Cuir à comas",
|
||||
"Create" : "Cruthaich",
|
||||
"Name" : "Ainm",
|
||||
"Category" : "Roinn-seòrsa",
|
||||
"Allow" : "Ceadaich",
|
||||
"Deleted" : "Chaidh a sguabadh às"
|
||||
},"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"
|
||||
}
|
||||
214
l10n/gl.js
Normal file
214
l10n/gl.js
Normal file
@@ -0,0 +1,214 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Forum" : "Foro",
|
||||
"Welcome to the forum!" : "Dámoslle a benvida ao foro!",
|
||||
"Admin" : "Administración",
|
||||
"Administrator role with full permissions" : "Rol de administrador con todos os permisos",
|
||||
"Moderator" : "Moderador",
|
||||
"Moderator role with elevated permissions" : "Rol de moderador con permisos elevados",
|
||||
"User" : "Usuario",
|
||||
"Default user role with basic permissions" : "Rol predeterminado de usuario con permisos básicos",
|
||||
"Guest" : "Convidado",
|
||||
"General" : "Xeral",
|
||||
"General discussion categories" : "Categorías xerais de debate",
|
||||
"General discussions" : "Debates en xeral",
|
||||
"A place for general conversations and discussions" : "Un lugar para conversas e debates en xeral",
|
||||
"Support" : "Asistencia",
|
||||
"Ask questions about the forum, provide feedback or report issues." : "Faga preguntas sobre o foro, envíe comentarios ou informe de problemas.",
|
||||
"[icode]inline code[/icode]" : "[icode]código en liña[/icode]",
|
||||
"Inline code" : "Código en liña",
|
||||
"[spoiler=\"%1$s\"]%2$s[/spoiler]" : "[spoiler=\"%1$s\"]%2$s[/spoiler]",
|
||||
"Spoilers" : "Destripes",
|
||||
"Attachment" : "Anexo",
|
||||
"Welcome to Nextcloud Forums" : "Dámoslle a benvida a os Foros de Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Dámoslle a benvida a os Foros de Nextcloud!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Este é un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud. Aquí pode debater temas, compartir ideas e colaborar con outros usuarios.",
|
||||
"Features:" : "Funcionalidades:",
|
||||
"Create and reply to threads" : "Crear e responder aos fíos",
|
||||
"Organize discussions by categories" : "Organice os debates por categorías",
|
||||
"Use BBCode for rich text formatting" : "Empregue BBCode para o formato de texto mellorado",
|
||||
"Attach files from your Nextcloud storage" : "Anexe ficheiros desde o seu almacenamento en Nextcloud",
|
||||
"React to posts" : "Reaccionar ás publicacións",
|
||||
"Track read/unread threads" : "Rastrexar fíos lidos/non lidos",
|
||||
"BBCode examples:" : "Exemplos de BBCode:",
|
||||
"Bold text" : "Texto en grosa",
|
||||
"Use %1$stext%2$s" : "Empregue %1$stexto%2$s",
|
||||
"Italic text" : "Texto en cursiva",
|
||||
"Underlined text" : "Texto subliñado",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Síntase libre de iniciar un novo debate ou de responder a fíos existentes. Feliz publicación!",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta en {thread}","{count} novas respostas en {thread}"],
|
||||
"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",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"User preferences" : "Preferencias do usuario",
|
||||
"Dashboard" : "Taboleiro",
|
||||
"Forum settings" : "Axustes do Foro",
|
||||
"Users" : "Usuarios",
|
||||
"Roles" : "Roles",
|
||||
"Categories" : "Categorías",
|
||||
"BBCodes" : "BBCode",
|
||||
"Expand" : "Estender",
|
||||
"Collapse" : "Contraer",
|
||||
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Teña en conta:{bEnd} Os ficheiros anexos serán visíbeis para calquera no foro, independentemente da configuración de compartición do ficheiro.",
|
||||
"Font style bold" : "Estilo da letra grosa",
|
||||
"Font style italic" : "Estilo da letra en cursiva",
|
||||
"Font style struck through" : "Estilo da letra riscada",
|
||||
"Font style underlined" : "Estilo da letra en subliñada",
|
||||
"Code" : "Código",
|
||||
"Email (clickable)" : "Correo-e (premíbel)",
|
||||
"{emailStart}test@example.com{emailEnd}" : "{emailStart}test@example.com{emailEnd}",
|
||||
"URL (clickable)" : "URL (premíbel)",
|
||||
"{urlStart}Example.com{urlEnd}" : "{urlStart}Example.com{urlEnd}",
|
||||
"Image (not clickable)" : "Imaxe (non premíbel)",
|
||||
"{imgStart}http://example.com/example.png{imgEnd}" : "{imgStart}http://example.com/exemplo.png{imgEnd}",
|
||||
"Quote" : "Orzamento",
|
||||
"Embedded YouTube video" : "Vídeo de YouTube incrustado",
|
||||
"{youtubeStart}a-video-id-123456{youtubeEnd}" : "{youtubeStart}un-video-co-id-123456{youtubeEnd}",
|
||||
"Font (name)" : "Tipo de letra (nome)",
|
||||
"Font size" : "Tamaño da letra",
|
||||
"Font color" : "Cor da letra",
|
||||
"Align left" : "Aliñar á esquerda",
|
||||
"Align center" : "Aliñar ao centro",
|
||||
"Align right" : "Aliñar á dereita",
|
||||
"List" : "Lista",
|
||||
"{listStart}{item1Start}Hello world!{item2Start}Hello moon!{item2End}{listEnd}" : "{listStart}{item1Start}Ola mundo!{item2Start}Ola lúa!!{item2End}{listEnd}",
|
||||
"List item within a list" : "Elemento de lista dentro dunha lista",
|
||||
"{itemStart}Hello world!\\r\\n{itemStart}Hello moon!" : "{itemStart}Ola mundo!\\r\\n{itemStart}Ola lúa!",
|
||||
"List item within a list (alias)" : "Elemento de lista dentro dunha lista (alias)",
|
||||
"{liStart}Hello world!\\r\\n{liEnd}{liStart}Hello moon!{liEnd}" : "{liStart}Ola mundo!\\r\\n{liEnd}{liStart}Ola lúa!{liEnd}",
|
||||
"Example" : "Exemplo",
|
||||
"Replacement" : "Substitución",
|
||||
"Loading custom BBCodes …" : "Cargando BBCodes personalizados…",
|
||||
"Insert emoji" : "Inserir un «emoji»",
|
||||
"Pick a file to attach" : "Escolla un ficheiro para anexar",
|
||||
"_Thread_::_Threads_" : ["Fío","Fíos"],
|
||||
"_Post_::_Posts_" : ["Publicación","Publicacións"],
|
||||
"No description available" : "Non hai ningunha descrición dispoñíbel",
|
||||
"Page not found" : "Non se atopou a páxina",
|
||||
"The page you are looking for could not be found." : "Non foi posíbel atopar a páxina que busca.",
|
||||
"Back" : "Atrás",
|
||||
"Go to home" : "Ir ao inicio",
|
||||
"Edited" : "Editado",
|
||||
"Quote reply" : "Responder á cita",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Confirma que quere eliminar esta publicación? Esta acción non é posíbel desfacela.",
|
||||
"Unread" : "Sen ler",
|
||||
"Edit your post …" : "Edite a súa publicación…",
|
||||
"Cancel" : "Cancelar",
|
||||
"Save" : "Gardar",
|
||||
"Are you sure you want to discard your changes?" : "Confirma que quere desbotar os seus cambios?",
|
||||
"Add reaction" : "Engadir reacción",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"You reacted with {emoji}" : "Vde. reaccionou con {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vde. e %n persoa máis reaccionaron con {emoji}","Vde. e %n persoas máis reaccionaron con {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n persoa reaccionou con {emoji}","%n persoas reaccionaron con {emoji}"],
|
||||
"Write your reply …" : "Escriba a súa resposta…",
|
||||
"Post reply" : "Publicar a resposta",
|
||||
"Are you sure you want to discard your reply?" : "Confirma que quere desbotar a súa resposta?",
|
||||
"In thread" : "No fío",
|
||||
"Thread unavailable" : "Fío non dispoñíbel",
|
||||
"Pinned thread" : "Fío fixado",
|
||||
"Locked thread" : "Fío bloqueado",
|
||||
"Uncategorized" : "Sen categorizar",
|
||||
"_%n post_::_%n posts_" : ["%n publicación","%n publicacións"],
|
||||
"_%n view_::_%n views_" : ["%n vista","%n vistas"],
|
||||
"Replies" : "Respostas",
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Titulo",
|
||||
"Enter thread title …" : "Introduza o título do fío…",
|
||||
"Write your first post …" : "Escriba a súa primeira publicación…",
|
||||
"Create thread" : "Crear un fío",
|
||||
"Are you sure you want to discard this thread?" : "Confirma que quere desbotar este fío?",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando…",
|
||||
"No categories yet" : "Aínda non hai categorías",
|
||||
"Categories will appear here once they are created." : "As categorías aparecerán aquí unha vez creadas.",
|
||||
"No categories in this section" : "Non hai ningunha categoría nesta sección",
|
||||
"Category not found" : "Non se atopou a categoría",
|
||||
"The category you are looking for does not exist or has been removed." : "A categoría que busca non existe ou foi retirada.",
|
||||
"Back to categories" : "Volver ás categorías",
|
||||
"New thread" : "Novo fío",
|
||||
"Error loading category" : "Produciuse un erro ao cargar a categoría",
|
||||
"No threads yet" : "Aínda non hai ningún fío",
|
||||
"Be the first to start a discussion in this category." : "Sexa o primeiro en iniciar un debate nesta categoría.",
|
||||
"Retry" : "Volver tentar",
|
||||
"_Showing %n thread_::_Showing %n threads_" : ["Amosando %n fío","Amosando %n fíos"],
|
||||
"An unexpected error occurred" : "Produciuse un erro non agardado",
|
||||
"No category ID or slug provided" : "Non forneceu ningún ID ou URL semántico",
|
||||
"Failed to load threads" : "Produciuse un fallo ao cargar os fíos",
|
||||
"Create New Thread" : "Crear un novo fío",
|
||||
"In {category}" : "En {category}",
|
||||
"Creating thread …" : "Creando o fío…",
|
||||
"Thread created" : "Fío creado",
|
||||
"Failed to create thread" : "Produciuse un fallo ao crear o fío",
|
||||
"No category specified" : "Non se especificou ningunha categoría",
|
||||
"Error" : "Erro",
|
||||
"First post" : "Primeira publicación",
|
||||
"Threads ({count})" : "Fíos ({count})",
|
||||
"Replies ({count})" : "Respostas ({count})",
|
||||
"No threads" : "Non hai ningún fío",
|
||||
"This user has not created any threads yet" : "Este usuario aínda non creou ningún fío",
|
||||
"No replies" : "Non hai ningunha resposta",
|
||||
"This user has not posted any replies yet" : "Este usuario aínda non publicou ningunha resposta",
|
||||
"Failed to load user profile" : "Produciuse un fallo ao cargar o perfil do usuario",
|
||||
"Enter search query …" : "Entra a consulta de busca…",
|
||||
"Searching …" : "Buscando…",
|
||||
"No results found" : "Non se atopou ningún resultado",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"Reply" : "Responder",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Subscribirse",
|
||||
"Subscribed" : "Subscrito",
|
||||
"Preferences" : "Preferencias",
|
||||
"Notifications" : "Notificacións",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Desactivar",
|
||||
"This action cannot be undone." : "Esta acción non é posíbel desfacela.",
|
||||
"Tag" : "Etiqueta",
|
||||
"Description" : "Descrición",
|
||||
"Enabled" : "Activado",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Name" : "Nome",
|
||||
"Enter category name" : "Introduza o nome da categoría",
|
||||
"Sort order" : "Criterio de ordenación",
|
||||
"0" : "0",
|
||||
"New" : "Novo",
|
||||
"Permissions" : "Permisos",
|
||||
"Delete header" : "Eliminar a cabeceira",
|
||||
"Move up" : "Mover cara arriba",
|
||||
"Move down" : "Mover cara abaixo",
|
||||
"Total users" : "Total de usuarios",
|
||||
"Recent activity (last 7 days)" : "Actividade recente (últimos 7 días)",
|
||||
"Last 7 days" : "Últimos 7 días",
|
||||
"All time" : "Tempo total",
|
||||
"General settings" : "Axustes xerais",
|
||||
"Appearance" : "Aparencia",
|
||||
"Forum title" : "Título do foro",
|
||||
"Forum subtitle" : "Subtítulo do foro",
|
||||
"Welcome to the forum" : "Dámoslle a benvida ao foro!",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Axustes gardados",
|
||||
"Failed to save settings" : "Produciuse un fallo ao gardar os axustes",
|
||||
"Reset" : "Restabelecer",
|
||||
"Role permissions" : "Permisos de rol",
|
||||
"Can access admin tools" : "Pode acceder a ferramentas de administración",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Accións",
|
||||
"No description" : "Sen descrición",
|
||||
"User management" : "Xestión de usuarios",
|
||||
"Loading users …" : "Cargando usuarios…",
|
||||
"No users found" : "Non se atopou ningún usuario",
|
||||
"Posts" : "Publicacións",
|
||||
"Joined" : "Uniuse",
|
||||
"Status" : "Estado",
|
||||
"Active" : "Activa",
|
||||
"Deleted" : "Eliminada"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
212
l10n/gl.json
Normal file
212
l10n/gl.json
Normal file
@@ -0,0 +1,212 @@
|
||||
{ "translations": {
|
||||
"Forum" : "Foro",
|
||||
"Welcome to the forum!" : "Dámoslle a benvida ao foro!",
|
||||
"Admin" : "Administración",
|
||||
"Administrator role with full permissions" : "Rol de administrador con todos os permisos",
|
||||
"Moderator" : "Moderador",
|
||||
"Moderator role with elevated permissions" : "Rol de moderador con permisos elevados",
|
||||
"User" : "Usuario",
|
||||
"Default user role with basic permissions" : "Rol predeterminado de usuario con permisos básicos",
|
||||
"Guest" : "Convidado",
|
||||
"General" : "Xeral",
|
||||
"General discussion categories" : "Categorías xerais de debate",
|
||||
"General discussions" : "Debates en xeral",
|
||||
"A place for general conversations and discussions" : "Un lugar para conversas e debates en xeral",
|
||||
"Support" : "Asistencia",
|
||||
"Ask questions about the forum, provide feedback or report issues." : "Faga preguntas sobre o foro, envíe comentarios ou informe de problemas.",
|
||||
"[icode]inline code[/icode]" : "[icode]código en liña[/icode]",
|
||||
"Inline code" : "Código en liña",
|
||||
"[spoiler=\"%1$s\"]%2$s[/spoiler]" : "[spoiler=\"%1$s\"]%2$s[/spoiler]",
|
||||
"Spoilers" : "Destripes",
|
||||
"Attachment" : "Anexo",
|
||||
"Welcome to Nextcloud Forums" : "Dámoslle a benvida a os Foros de Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Dámoslle a benvida a os Foros de Nextcloud!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Este é un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud. Aquí pode debater temas, compartir ideas e colaborar con outros usuarios.",
|
||||
"Features:" : "Funcionalidades:",
|
||||
"Create and reply to threads" : "Crear e responder aos fíos",
|
||||
"Organize discussions by categories" : "Organice os debates por categorías",
|
||||
"Use BBCode for rich text formatting" : "Empregue BBCode para o formato de texto mellorado",
|
||||
"Attach files from your Nextcloud storage" : "Anexe ficheiros desde o seu almacenamento en Nextcloud",
|
||||
"React to posts" : "Reaccionar ás publicacións",
|
||||
"Track read/unread threads" : "Rastrexar fíos lidos/non lidos",
|
||||
"BBCode examples:" : "Exemplos de BBCode:",
|
||||
"Bold text" : "Texto en grosa",
|
||||
"Use %1$stext%2$s" : "Empregue %1$stexto%2$s",
|
||||
"Italic text" : "Texto en cursiva",
|
||||
"Underlined text" : "Texto subliñado",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Síntase libre de iniciar un novo debate ou de responder a fíos existentes. Feliz publicación!",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta en {thread}","{count} novas respostas en {thread}"],
|
||||
"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",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
"User preferences" : "Preferencias do usuario",
|
||||
"Dashboard" : "Taboleiro",
|
||||
"Forum settings" : "Axustes do Foro",
|
||||
"Users" : "Usuarios",
|
||||
"Roles" : "Roles",
|
||||
"Categories" : "Categorías",
|
||||
"BBCodes" : "BBCode",
|
||||
"Expand" : "Estender",
|
||||
"Collapse" : "Contraer",
|
||||
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Teña en conta:{bEnd} Os ficheiros anexos serán visíbeis para calquera no foro, independentemente da configuración de compartición do ficheiro.",
|
||||
"Font style bold" : "Estilo da letra grosa",
|
||||
"Font style italic" : "Estilo da letra en cursiva",
|
||||
"Font style struck through" : "Estilo da letra riscada",
|
||||
"Font style underlined" : "Estilo da letra en subliñada",
|
||||
"Code" : "Código",
|
||||
"Email (clickable)" : "Correo-e (premíbel)",
|
||||
"{emailStart}test@example.com{emailEnd}" : "{emailStart}test@example.com{emailEnd}",
|
||||
"URL (clickable)" : "URL (premíbel)",
|
||||
"{urlStart}Example.com{urlEnd}" : "{urlStart}Example.com{urlEnd}",
|
||||
"Image (not clickable)" : "Imaxe (non premíbel)",
|
||||
"{imgStart}http://example.com/example.png{imgEnd}" : "{imgStart}http://example.com/exemplo.png{imgEnd}",
|
||||
"Quote" : "Orzamento",
|
||||
"Embedded YouTube video" : "Vídeo de YouTube incrustado",
|
||||
"{youtubeStart}a-video-id-123456{youtubeEnd}" : "{youtubeStart}un-video-co-id-123456{youtubeEnd}",
|
||||
"Font (name)" : "Tipo de letra (nome)",
|
||||
"Font size" : "Tamaño da letra",
|
||||
"Font color" : "Cor da letra",
|
||||
"Align left" : "Aliñar á esquerda",
|
||||
"Align center" : "Aliñar ao centro",
|
||||
"Align right" : "Aliñar á dereita",
|
||||
"List" : "Lista",
|
||||
"{listStart}{item1Start}Hello world!{item2Start}Hello moon!{item2End}{listEnd}" : "{listStart}{item1Start}Ola mundo!{item2Start}Ola lúa!!{item2End}{listEnd}",
|
||||
"List item within a list" : "Elemento de lista dentro dunha lista",
|
||||
"{itemStart}Hello world!\\r\\n{itemStart}Hello moon!" : "{itemStart}Ola mundo!\\r\\n{itemStart}Ola lúa!",
|
||||
"List item within a list (alias)" : "Elemento de lista dentro dunha lista (alias)",
|
||||
"{liStart}Hello world!\\r\\n{liEnd}{liStart}Hello moon!{liEnd}" : "{liStart}Ola mundo!\\r\\n{liEnd}{liStart}Ola lúa!{liEnd}",
|
||||
"Example" : "Exemplo",
|
||||
"Replacement" : "Substitución",
|
||||
"Loading custom BBCodes …" : "Cargando BBCodes personalizados…",
|
||||
"Insert emoji" : "Inserir un «emoji»",
|
||||
"Pick a file to attach" : "Escolla un ficheiro para anexar",
|
||||
"_Thread_::_Threads_" : ["Fío","Fíos"],
|
||||
"_Post_::_Posts_" : ["Publicación","Publicacións"],
|
||||
"No description available" : "Non hai ningunha descrición dispoñíbel",
|
||||
"Page not found" : "Non se atopou a páxina",
|
||||
"The page you are looking for could not be found." : "Non foi posíbel atopar a páxina que busca.",
|
||||
"Back" : "Atrás",
|
||||
"Go to home" : "Ir ao inicio",
|
||||
"Edited" : "Editado",
|
||||
"Quote reply" : "Responder á cita",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Confirma que quere eliminar esta publicación? Esta acción non é posíbel desfacela.",
|
||||
"Unread" : "Sen ler",
|
||||
"Edit your post …" : "Edite a súa publicación…",
|
||||
"Cancel" : "Cancelar",
|
||||
"Save" : "Gardar",
|
||||
"Are you sure you want to discard your changes?" : "Confirma que quere desbotar os seus cambios?",
|
||||
"Add reaction" : "Engadir reacción",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"You reacted with {emoji}" : "Vde. reaccionou con {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vde. e %n persoa máis reaccionaron con {emoji}","Vde. e %n persoas máis reaccionaron con {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n persoa reaccionou con {emoji}","%n persoas reaccionaron con {emoji}"],
|
||||
"Write your reply …" : "Escriba a súa resposta…",
|
||||
"Post reply" : "Publicar a resposta",
|
||||
"Are you sure you want to discard your reply?" : "Confirma que quere desbotar a súa resposta?",
|
||||
"In thread" : "No fío",
|
||||
"Thread unavailable" : "Fío non dispoñíbel",
|
||||
"Pinned thread" : "Fío fixado",
|
||||
"Locked thread" : "Fío bloqueado",
|
||||
"Uncategorized" : "Sen categorizar",
|
||||
"_%n post_::_%n posts_" : ["%n publicación","%n publicacións"],
|
||||
"_%n view_::_%n views_" : ["%n vista","%n vistas"],
|
||||
"Replies" : "Respostas",
|
||||
"Views" : "Vistas",
|
||||
"Title" : "Titulo",
|
||||
"Enter thread title …" : "Introduza o título do fío…",
|
||||
"Write your first post …" : "Escriba a súa primeira publicación…",
|
||||
"Create thread" : "Crear un fío",
|
||||
"Are you sure you want to discard this thread?" : "Confirma que quere desbotar este fío?",
|
||||
"Refresh" : "Actualizar",
|
||||
"Loading …" : "Cargando…",
|
||||
"No categories yet" : "Aínda non hai categorías",
|
||||
"Categories will appear here once they are created." : "As categorías aparecerán aquí unha vez creadas.",
|
||||
"No categories in this section" : "Non hai ningunha categoría nesta sección",
|
||||
"Category not found" : "Non se atopou a categoría",
|
||||
"The category you are looking for does not exist or has been removed." : "A categoría que busca non existe ou foi retirada.",
|
||||
"Back to categories" : "Volver ás categorías",
|
||||
"New thread" : "Novo fío",
|
||||
"Error loading category" : "Produciuse un erro ao cargar a categoría",
|
||||
"No threads yet" : "Aínda non hai ningún fío",
|
||||
"Be the first to start a discussion in this category." : "Sexa o primeiro en iniciar un debate nesta categoría.",
|
||||
"Retry" : "Volver tentar",
|
||||
"_Showing %n thread_::_Showing %n threads_" : ["Amosando %n fío","Amosando %n fíos"],
|
||||
"An unexpected error occurred" : "Produciuse un erro non agardado",
|
||||
"No category ID or slug provided" : "Non forneceu ningún ID ou URL semántico",
|
||||
"Failed to load threads" : "Produciuse un fallo ao cargar os fíos",
|
||||
"Create New Thread" : "Crear un novo fío",
|
||||
"In {category}" : "En {category}",
|
||||
"Creating thread …" : "Creando o fío…",
|
||||
"Thread created" : "Fío creado",
|
||||
"Failed to create thread" : "Produciuse un fallo ao crear o fío",
|
||||
"No category specified" : "Non se especificou ningunha categoría",
|
||||
"Error" : "Erro",
|
||||
"First post" : "Primeira publicación",
|
||||
"Threads ({count})" : "Fíos ({count})",
|
||||
"Replies ({count})" : "Respostas ({count})",
|
||||
"No threads" : "Non hai ningún fío",
|
||||
"This user has not created any threads yet" : "Este usuario aínda non creou ningún fío",
|
||||
"No replies" : "Non hai ningunha resposta",
|
||||
"This user has not posted any replies yet" : "Este usuario aínda non publicou ningunha resposta",
|
||||
"Failed to load user profile" : "Produciuse un fallo ao cargar o perfil do usuario",
|
||||
"Enter search query …" : "Entra a consulta de busca…",
|
||||
"Searching …" : "Buscando…",
|
||||
"No results found" : "Non se atopou ningún resultado",
|
||||
"Back to {category}" : "Volver a {category}",
|
||||
"Reply" : "Responder",
|
||||
"by" : "por",
|
||||
"Subscribe" : "Subscribirse",
|
||||
"Subscribed" : "Subscrito",
|
||||
"Preferences" : "Preferencias",
|
||||
"Notifications" : "Notificacións",
|
||||
"Enable" : "Activar",
|
||||
"Disable" : "Desactivar",
|
||||
"This action cannot be undone." : "Esta acción non é posíbel desfacela.",
|
||||
"Tag" : "Etiqueta",
|
||||
"Description" : "Descrición",
|
||||
"Enabled" : "Activado",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Name" : "Nome",
|
||||
"Enter category name" : "Introduza o nome da categoría",
|
||||
"Sort order" : "Criterio de ordenación",
|
||||
"0" : "0",
|
||||
"New" : "Novo",
|
||||
"Permissions" : "Permisos",
|
||||
"Delete header" : "Eliminar a cabeceira",
|
||||
"Move up" : "Mover cara arriba",
|
||||
"Move down" : "Mover cara abaixo",
|
||||
"Total users" : "Total de usuarios",
|
||||
"Recent activity (last 7 days)" : "Actividade recente (últimos 7 días)",
|
||||
"Last 7 days" : "Últimos 7 días",
|
||||
"All time" : "Tempo total",
|
||||
"General settings" : "Axustes xerais",
|
||||
"Appearance" : "Aparencia",
|
||||
"Forum title" : "Título do foro",
|
||||
"Forum subtitle" : "Subtítulo do foro",
|
||||
"Welcome to the forum" : "Dámoslle a benvida ao foro!",
|
||||
"Access control" : "Control de acceso",
|
||||
"Settings saved" : "Axustes gardados",
|
||||
"Failed to save settings" : "Produciuse un fallo ao gardar os axustes",
|
||||
"Reset" : "Restabelecer",
|
||||
"Role permissions" : "Permisos de rol",
|
||||
"Can access admin tools" : "Pode acceder a ferramentas de administración",
|
||||
"Category" : "Categoría",
|
||||
"Allow" : "Permitir",
|
||||
"ID" : "ID",
|
||||
"Created" : "Creado",
|
||||
"Actions" : "Accións",
|
||||
"No description" : "Sen descrición",
|
||||
"User management" : "Xestión de usuarios",
|
||||
"Loading users …" : "Cargando usuarios…",
|
||||
"No users found" : "Non se atopou ningún usuario",
|
||||
"Posts" : "Publicacións",
|
||||
"Joined" : "Uniuse",
|
||||
"Status" : "Estado",
|
||||
"Active" : "Activa",
|
||||
"Deleted" : "Eliminada"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user