mirror of
https://github.com/chenasraf/nextcloud-forum.git
synced 2026-05-18 01:28:58 +00:00
Compare commits
58 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9fac12b0c7 | |||
|
|
37a82842b1 | ||
|
|
46b2c820e8 | ||
|
|
715b2ab6ff | ||
|
|
3ab3c1cc76 | ||
| 3d1ddb9f26 | |||
| a286bbdfe9 | |||
| a8e158d35b | |||
| c3d267f122 | |||
| c2e4ebe242 | |||
|
|
679abe3fb6 | ||
|
|
043af15809 | ||
| 407df1d423 | |||
| e2dcebc6ee | |||
| a905ce3b4c | |||
| c017bb3d09 | |||
|
|
67c92c05a3 | ||
| e94ca2dec1 | |||
| 975744ec6f | |||
| cb7a03c1d5 | |||
| 00e5d6d3b2 | |||
| 8b489b9cc3 | |||
| 9f904a7e48 | |||
| 886c51fdca | |||
| 919a13fdd3 | |||
| 370eed1286 | |||
| 1ff6349337 | |||
| 7732f22f4e | |||
| a07c8e452f | |||
| 57642efc7b | |||
| 18a2918446 | |||
| 3e7cebc8c3 | |||
| eb1b2f86df | |||
| c72c8b3eed | |||
| ec49855173 | |||
| cdca135f7d | |||
| 145e6d8f81 | |||
| 01639c7545 | |||
| 8848ba0304 | |||
| 64a618f54a | |||
| e4281e2128 | |||
| b84d96488c | |||
| b6e40f9976 | |||
| 9e0bdecc80 | |||
| 8277ccb87f | |||
| 55f1dbd258 | |||
|
|
81e35c114b | ||
|
|
d28b8c0f88 | ||
|
|
4d7efe9d32 | ||
|
|
7ae4d8f369 | ||
|
|
1dad565072 | ||
| 370c00664a | |||
|
|
02e9b093e8 | ||
| 16c44344d1 | |||
|
|
fce363355e | ||
|
|
2cd21b0792 | ||
| 12459e5fca | |||
|
|
b235d4a739 |
45
.github/workflows/lint-eslint.yml
vendored
45
.github/workflows/lint-eslint.yml
vendored
@@ -1,10 +1,5 @@
|
||||
# This workflow is provided via the organization template repository
|
||||
#
|
||||
# https://github.com/nextcloud/.github
|
||||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
|
||||
#
|
||||
# Use lint-eslint together with lint-eslint-when-unrelated to make eslint a required check for GitHub actions
|
||||
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
|
||||
# SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
name: Lint eslint
|
||||
|
||||
@@ -20,40 +15,9 @@ concurrency:
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
changes:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
outputs:
|
||||
src: ${{ steps.changes.outputs.src}}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- uses: dorny/paths-filter@v3
|
||||
id: changes
|
||||
continue-on-error: true
|
||||
with:
|
||||
filters: |
|
||||
src:
|
||||
- '.github/workflows/**'
|
||||
- 'src/**'
|
||||
- 'appinfo/info.xml'
|
||||
- 'package.json'
|
||||
- 'package-lock.json'
|
||||
- 'tsconfig.json'
|
||||
- '.eslintrc.*'
|
||||
- '.eslintignore'
|
||||
- '**.js'
|
||||
- '**.ts'
|
||||
- '**.vue'
|
||||
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs: changes
|
||||
if: needs.changes.outputs.src != 'false'
|
||||
|
||||
name: NPM lint
|
||||
|
||||
steps:
|
||||
@@ -75,13 +39,12 @@ jobs:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest
|
||||
needs: [changes, lint]
|
||||
needs: lint
|
||||
|
||||
if: always()
|
||||
|
||||
# This is the summary, we just avoid to rename it so that branch protection rules still match
|
||||
name: eslint
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.changes.outputs.src != 'false' && needs.lint.result != 'success' }}; then exit 1; fi
|
||||
run: if ${{ needs.lint.result != 'success' }}; then exit 1; fi
|
||||
|
||||
339
.github/workflows/phpunit-incremental.yml
vendored
Normal file
339
.github/workflows/phpunit-incremental.yml
vendored
Normal file
@@ -0,0 +1,339 @@
|
||||
# Incremental migration test workflow
|
||||
#
|
||||
# This workflow tests that migrations work correctly when upgrading from an older version.
|
||||
# It first installs the app at v0.14.0 (last version before forum_user_stats -> forum_users rename),
|
||||
# then upgrades to the current version and verifies all migrations run successfully.
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
name: PHPUnit Incremental Migration
|
||||
|
||||
on: pull_request
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: phpunit-incremental-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
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/**'
|
||||
- 'tests/**'
|
||||
- 'composer.json'
|
||||
- 'composer.lock'
|
||||
|
||||
incremental-pgsql:
|
||||
runs-on: ubuntu-latest
|
||||
needs: changes
|
||||
if: needs.changes.outputs.src != 'false'
|
||||
|
||||
name: Incremental Migration (PostgreSQL)
|
||||
|
||||
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 (current)
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
path: app-current
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Detect app ID from appinfo/info.xml
|
||||
run: |
|
||||
APP_ID=$(grep -oP '(?<=<id>)[^<]+' app-current/appinfo/info.xml | head -1)
|
||||
echo "APP_NAME=$APP_ID" >> $GITHUB_ENV
|
||||
echo "Detected app ID: $APP_ID"
|
||||
|
||||
- name: Get supported server versions
|
||||
id: versions
|
||||
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
|
||||
with:
|
||||
filename: app-current/appinfo/info.xml
|
||||
|
||||
- name: Save current app for later
|
||||
run: |
|
||||
mkdir -p /tmp/app-backup
|
||||
cp -r app-current /tmp/app-backup/
|
||||
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
repository: nextcloud/server
|
||||
ref: ${{ fromJson(steps.versions.outputs.branches)[0] }}
|
||||
|
||||
- name: Checkout app at v0.14.0 (pre-rename baseline)
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
ref: v0.14.0
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php 8.3
|
||||
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2.35.5
|
||||
with:
|
||||
php-version: '8.3'
|
||||
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
|
||||
ini-values: disable_functions=
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Set up dependencies (v0.14.0)
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer remove nextcloud/ocp --dev --no-scripts || true
|
||||
composer i --no-scripts || composer i
|
||||
|
||||
- name: Set up Nextcloud and install app at v0.14.0
|
||||
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
|
||||
echo "::group::Installing app at v0.14.0"
|
||||
./occ app:enable --force ${{ env.APP_NAME }}
|
||||
echo "::endgroup::"
|
||||
echo "::group::Database tables after v0.14.0 install"
|
||||
./occ db:convert-filecache-bigint --no-interaction || true
|
||||
PGPASSWORD=rootpassword psql -h 127.0.0.1 -p $DB_PORT -U root -d nextcloud -c "\dt oc_forum_*"
|
||||
echo "::endgroup::"
|
||||
|
||||
- name: Upgrade app to current version
|
||||
run: |
|
||||
echo "::group::Replacing app with current version"
|
||||
rm -rf apps/${{ env.APP_NAME }}
|
||||
cp -r /tmp/app-backup/app-current apps/${{ env.APP_NAME }}
|
||||
echo "::endgroup::"
|
||||
|
||||
- name: Set up dependencies (current)
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer remove nextcloud/ocp --dev --no-scripts || true
|
||||
composer i
|
||||
|
||||
- name: Run migrations to current version
|
||||
env:
|
||||
DB_PORT: 4444
|
||||
run: |
|
||||
echo "::group::Running upgrade migrations"
|
||||
# Disable maintenance mode if it was left on
|
||||
./occ maintenance:mode --off || true
|
||||
# Disable and re-enable the app to trigger migrations
|
||||
# This simulates what happens when a user upgrades the app
|
||||
./occ app:disable ${{ env.APP_NAME }}
|
||||
./occ app:enable ${{ env.APP_NAME }}
|
||||
echo "::endgroup::"
|
||||
echo "::group::Database tables after upgrade"
|
||||
PGPASSWORD=rootpassword psql -h 127.0.0.1 -p $DB_PORT -U root -d nextcloud -c "\dt oc_forum_*"
|
||||
echo "::endgroup::"
|
||||
echo "::group::Checking forum_users table exists"
|
||||
PGPASSWORD=rootpassword psql -h 127.0.0.1 -p $DB_PORT -U root -d nextcloud -c "SELECT COUNT(*) FROM oc_forum_users" || exit 1
|
||||
echo "::endgroup::"
|
||||
|
||||
- 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
|
||||
if: steps.check_integration.outcome == 'success'
|
||||
run: php -S localhost:8080 &
|
||||
|
||||
- name: PHPUnit integration
|
||||
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
|
||||
|
||||
incremental-mysql:
|
||||
runs-on: ubuntu-latest
|
||||
needs: changes
|
||||
if: needs.changes.outputs.src != 'false'
|
||||
|
||||
name: Incremental Migration (MySQL)
|
||||
|
||||
services:
|
||||
mysql:
|
||||
image: ghcr.io/nextcloud/continuous-integration-mariadb-10.11:latest # zizmor: ignore[unpinned-images]
|
||||
ports:
|
||||
- 4444:3306/tcp
|
||||
env:
|
||||
MYSQL_ROOT_PASSWORD: rootpassword
|
||||
MYSQL_DATABASE: nextcloud
|
||||
options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 5
|
||||
|
||||
steps:
|
||||
- name: Checkout app (current)
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
path: app-current
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Detect app ID from appinfo/info.xml
|
||||
run: |
|
||||
APP_ID=$(grep -oP '(?<=<id>)[^<]+' app-current/appinfo/info.xml | head -1)
|
||||
echo "APP_NAME=$APP_ID" >> $GITHUB_ENV
|
||||
echo "Detected app ID: $APP_ID"
|
||||
|
||||
- name: Get supported server versions
|
||||
id: versions
|
||||
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
|
||||
with:
|
||||
filename: app-current/appinfo/info.xml
|
||||
|
||||
- name: Save current app for later
|
||||
run: |
|
||||
mkdir -p /tmp/app-backup
|
||||
cp -r app-current /tmp/app-backup/
|
||||
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
repository: nextcloud/server
|
||||
ref: ${{ fromJson(steps.versions.outputs.branches)[0] }}
|
||||
|
||||
- name: Checkout app at v0.14.0 (pre-rename baseline)
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
ref: v0.14.0
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php 8.3
|
||||
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2.35.5
|
||||
with:
|
||||
php-version: '8.3'
|
||||
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
|
||||
ini-values: disable_functions=
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Set up dependencies (v0.14.0)
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer remove nextcloud/ocp --dev --no-scripts || true
|
||||
composer i --no-scripts || composer i
|
||||
|
||||
- name: Set up Nextcloud and install app at v0.14.0
|
||||
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
|
||||
echo "::group::Installing app at v0.14.0"
|
||||
./occ app:enable --force ${{ env.APP_NAME }}
|
||||
echo "::endgroup::"
|
||||
echo "::group::Database tables after v0.14.0 install"
|
||||
mysql -h 127.0.0.1 -P $DB_PORT -u root -prootpassword nextcloud -e "SHOW TABLES LIKE 'oc_forum_%'"
|
||||
echo "::endgroup::"
|
||||
|
||||
- name: Upgrade app to current version
|
||||
run: |
|
||||
echo "::group::Replacing app with current version"
|
||||
rm -rf apps/${{ env.APP_NAME }}
|
||||
cp -r /tmp/app-backup/app-current apps/${{ env.APP_NAME }}
|
||||
echo "::endgroup::"
|
||||
|
||||
- name: Set up dependencies (current)
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer remove nextcloud/ocp --dev --no-scripts || true
|
||||
composer i
|
||||
|
||||
- name: Run migrations to current version
|
||||
env:
|
||||
DB_PORT: 4444
|
||||
run: |
|
||||
echo "::group::Running upgrade migrations"
|
||||
# Disable maintenance mode if it was left on
|
||||
./occ maintenance:mode --off || true
|
||||
# Disable and re-enable the app to trigger migrations
|
||||
# This simulates what happens when a user upgrades the app
|
||||
./occ app:disable ${{ env.APP_NAME }}
|
||||
./occ app:enable ${{ env.APP_NAME }}
|
||||
echo "::endgroup::"
|
||||
echo "::group::Database tables after upgrade"
|
||||
mysql -h 127.0.0.1 -P $DB_PORT -u root -prootpassword nextcloud -e "SHOW TABLES LIKE 'oc_forum_%'"
|
||||
echo "::endgroup::"
|
||||
echo "::group::Checking forum_users table exists"
|
||||
mysql -h 127.0.0.1 -P $DB_PORT -u root -prootpassword nextcloud -e "SELECT COUNT(*) FROM oc_forum_users" || exit 1
|
||||
echo "::endgroup::"
|
||||
|
||||
- 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
|
||||
if: steps.check_integration.outcome == 'success'
|
||||
run: php -S localhost:8080 &
|
||||
|
||||
- name: PHPUnit integration
|
||||
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
|
||||
|
||||
summary:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest
|
||||
needs: [changes, incremental-pgsql, incremental-mysql]
|
||||
|
||||
if: always()
|
||||
|
||||
name: incremental-migration-summary
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.changes.outputs.src != 'false' && (needs.incremental-pgsql.result != 'success' || needs.incremental-mysql.result != 'success') }}; then exit 1; fi
|
||||
24
.github/workflows/phpunit-mysql.yml
vendored
24
.github/workflows/phpunit-mysql.yml
vendored
@@ -174,16 +174,34 @@ jobs:
|
||||
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 unit tests are not specified
|
||||
if: steps.check_phpunit.outcome == 'failure'
|
||||
# Fail the action when neither unit nor integration tests ran
|
||||
if: steps.check_phpunit.outcome == 'failure' && steps.check_integration.outcome == 'failure'
|
||||
run: |
|
||||
echo 'PHPUnit tests are not specified in composer.json scripts'
|
||||
echo 'Neither PHPUnit nor PHPUnit integration tests are specified in composer.json scripts'
|
||||
exit 1
|
||||
|
||||
summary:
|
||||
|
||||
68
.github/workflows/vitest.yml
vendored
Normal file
68
.github/workflows/vitest.yml
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
# SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
name: Vitest
|
||||
|
||||
on: pull_request
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: vitest-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
vitest:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
name: Vitest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
|
||||
with:
|
||||
node-version: 22
|
||||
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
|
||||
with:
|
||||
run_install: false
|
||||
|
||||
- name: Get pnpm store directory
|
||||
shell: bash
|
||||
run: |
|
||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
||||
|
||||
- name: Setup pnpm cache
|
||||
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
||||
with:
|
||||
path: ${{ env.STORE_PATH }}
|
||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pnpm-store-
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile
|
||||
|
||||
- name: Run tests
|
||||
run: pnpm test:run
|
||||
|
||||
summary:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest
|
||||
needs: vitest
|
||||
|
||||
if: always()
|
||||
|
||||
name: vitest-summary
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.vitest.result != 'success' }}; then exit 1; fi
|
||||
@@ -1,2 +1,2 @@
|
||||
templates/
|
||||
scaffolds/
|
||||
gen/
|
||||
|
||||
@@ -1 +1 @@
|
||||
{".":"0.19.0"}
|
||||
{".":"0.20.4"}
|
||||
|
||||
108
CHANGELOG.md
108
CHANGELOG.md
@@ -1,5 +1,113 @@
|
||||
# Changelog
|
||||
|
||||
## [0.20.4](https://github.com/chenasraf/nextcloud-forum/compare/v0.20.3...v0.20.4) (2026-01-15)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **l10n:** Update translations from Transifex ([37a8284](https://github.com/chenasraf/nextcloud-forum/commit/37a82842b13012bf9bf578baf018bfa8b678d635))
|
||||
* **l10n:** Update translations from Transifex ([46b2c82](https://github.com/chenasraf/nextcloud-forum/commit/46b2c820e8bec48e432bf350d56a2d85f41da115))
|
||||
* **l10n:** Update translations from Transifex ([715b2ab](https://github.com/chenasraf/nextcloud-forum/commit/715b2ab6ff7a94ed431e0ca2525530e9e41f42c7))
|
||||
* **l10n:** Update translations from Transifex ([3ab3c1c](https://github.com/chenasraf/nextcloud-forum/commit/3ab3c1cc76b1f55e289d96dfd681d45b6e67b171))
|
||||
|
||||
## [0.20.3](https://github.com/chenasraf/nextcloud-forum/compare/v0.20.2...v0.20.3) (2026-01-10)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* db seed transactions logic ([c3d267f](https://github.com/chenasraf/nextcloud-forum/commit/c3d267f12269568e0a091cc094e043e4f1ad8cb8))
|
||||
* **l10n:** Update translations from Transifex ([679abe3](https://github.com/chenasraf/nextcloud-forum/commit/679abe3fb6ce7c8545bf99875092f20cf5d468b8))
|
||||
* **l10n:** Update translations from Transifex ([043af15](https://github.com/chenasraf/nextcloud-forum/commit/043af1580912d201a724313d4788d7a776e11934))
|
||||
|
||||
## [0.20.2](https://github.com/chenasraf/nextcloud-forum/compare/v0.20.1...v0.20.2) (2026-01-08)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bbcode cursor positions after inserting ([e2dcebc](https://github.com/chenasraf/nextcloud-forum/commit/e2dcebc6ee6e4d017f7f26fc86e72e6734a1f757))
|
||||
|
||||
## [0.20.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.20.0...v0.20.1) (2026-01-08)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* db seed migrations ([c017bb3](https://github.com/chenasraf/nextcloud-forum/commit/c017bb3d09a517c19e772420311c23a957f25cba))
|
||||
* **l10n:** Update translations from Transifex ([67c92c0](https://github.com/chenasraf/nextcloud-forum/commit/67c92c05a3e7f58bbc05265087b763368653f7d3))
|
||||
|
||||
## [0.20.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.7...v0.20.0) (2026-01-07)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add max-width to post/signature images ([00e5d6d](https://github.com/chenasraf/nextcloud-forum/commit/00e5d6d3b2e14939b233a80050f645ebd7b8503a))
|
||||
* add preference to auto subscribe to replied threads ([cb7a03c](https://github.com/chenasraf/nextcloud-forum/commit/cb7a03c1d51f2dc5642a47ab222b07cec6e01731))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* forum users tables migrations ([8b489b9](https://github.com/chenasraf/nextcloud-forum/commit/8b489b9cc3919dedf1463c7c7dd54e7a8009fc6f))
|
||||
|
||||
## [0.19.7](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.6...v0.19.7) (2026-01-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* aggressive scroll-behavior interferes with mobile apps popover menu ([eb1b2f8](https://github.com/chenasraf/nextcloud-forum/commit/eb1b2f86df7e7bf75bdbd9ba8260471ec91110fb))
|
||||
* bbcode text insertion/selection logic ([919a13f](https://github.com/chenasraf/nextcloud-forum/commit/919a13fdd3da0579c7d9ebdd032e3108e9da7047))
|
||||
* main content size on mobile ([3e7cebc](https://github.com/chenasraf/nextcloud-forum/commit/3e7cebc8c3316dada42cf1ba81acb062d5b1d41a))
|
||||
|
||||
## [0.19.6](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.5...v0.19.6) (2026-01-05)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* bbcode editor ([ec49855](https://github.com/chenasraf/nextcloud-forum/commit/ec49855173e026b683a6dd0cc29e46a72f62e98e))
|
||||
* bbcode text wrapping ([145e6d8](https://github.com/chenasraf/nextcloud-forum/commit/145e6d8f814d3899ef6327eaff5637a296b6582d))
|
||||
|
||||
## [0.19.5](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.4...v0.19.5) (2026-01-03)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* roles seed ([8848ba0](https://github.com/chenasraf/nextcloud-forum/commit/8848ba03045f69cba40dd9094ade214f1c1b56cc))
|
||||
|
||||
## [0.19.4](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.3...v0.19.4) (2026-01-01)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* seed migration ([e4281e2](https://github.com/chenasraf/nextcloud-forum/commit/e4281e2128a86fa39b8f4a8deec21b82c901b935))
|
||||
|
||||
## [0.19.3](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.2...v0.19.3) (2025-12-31)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add seed migration ([b6e40f9](https://github.com/chenasraf/nextcloud-forum/commit/b6e40f9976d1b9a6d5a1a378d1ff43b72feace06))
|
||||
|
||||
## [0.19.2](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.1...v0.19.2) (2025-12-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* db seeds ([55f1dbd](https://github.com/chenasraf/nextcloud-forum/commit/55f1dbd25867488f7a3cf93726fb444976341e5d))
|
||||
* **l10n:** Update translations from Transifex ([81e35c1](https://github.com/chenasraf/nextcloud-forum/commit/81e35c114b84d77bee5f471c6d1f27154a7730d8))
|
||||
* **l10n:** Update translations from Transifex ([d28b8c0](https://github.com/chenasraf/nextcloud-forum/commit/d28b8c0f88255fad38bff24dd6747ce420f08919))
|
||||
* **l10n:** Update translations from Transifex ([4d7efe9](https://github.com/chenasraf/nextcloud-forum/commit/4d7efe9d32084e8accd857e68bd4434d415ff784))
|
||||
* **l10n:** Update translations from Transifex ([7ae4d8f](https://github.com/chenasraf/nextcloud-forum/commit/7ae4d8f369c87fb5a65a7dbc60980e4760fb4f7b))
|
||||
* **l10n:** Update translations from Transifex ([1dad565](https://github.com/chenasraf/nextcloud-forum/commit/1dad565072ced353a47e2f7ece865a81757ff81a))
|
||||
|
||||
## [0.19.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.19.0...v0.19.1) (2025-12-22)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **l10n:** Update translations from Transifex ([02e9b09](https://github.com/chenasraf/nextcloud-forum/commit/02e9b093e842f5b1016a1d2277b630ef67085d86))
|
||||
* **l10n:** Update translations from Transifex ([fce3633](https://github.com/chenasraf/nextcloud-forum/commit/fce363355e1e442069d7e883d08bb6f43014b9b7))
|
||||
* **l10n:** Update translations from Transifex ([2cd21b0](https://github.com/chenasraf/nextcloud-forum/commit/2cd21b0792bfdcc4f3d64285cd81f280db6a8b7b))
|
||||
* **l10n:** Update translations from Transifex ([b235d4a](https://github.com/chenasraf/nextcloud-forum/commit/b235d4a7391bb8b4c26fe0de8c1d37fac874c454))
|
||||
* **l10n:** update version text ([12459e5](https://github.com/chenasraf/nextcloud-forum/commit/12459e5fca252e48ae2259ca9dbf1b6f367aad99))
|
||||
|
||||
## [0.19.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.18.1...v0.19.0) (2025-12-18)
|
||||
|
||||
|
||||
|
||||
46
Makefile
46
Makefile
@@ -17,13 +17,14 @@
|
||||
# - JS build is delegated to your package.json scripts (tool-agnostic).
|
||||
#
|
||||
# Common recipes:
|
||||
# make build → install deps & build
|
||||
# make dist → build source + appstore tarballs
|
||||
# make test → run PHP unit tests
|
||||
# make lint → lint JS & PHP
|
||||
# make openapi → generate OpenAPI JSON
|
||||
# make sign → print signature for GitHub tarball
|
||||
# make release → upload release to Nextcloud App Store
|
||||
# make build → install deps & build
|
||||
# make dist → build source + appstore tarballs
|
||||
# make test → run PHP unit tests
|
||||
# make test-integration → run PHP integration tests
|
||||
# make lint → lint JS & PHP
|
||||
# make openapi → generate OpenAPI JSON
|
||||
# make sign → print signature for GitHub tarball
|
||||
# make release → upload release to Nextcloud App Store
|
||||
#
|
||||
|
||||
app_name=forum
|
||||
@@ -242,10 +243,33 @@ test: composer
|
||||
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
|
||||
NEXTCLOUD_ROOT="$$NC_ROOT" $(CURDIR)/vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
|
||||
|
||||
# test-integration:
|
||||
# - Run only PHP integration tests (database-dependent tests)
|
||||
# - These tests run against a real database and test migration/seeding
|
||||
.PHONY: test-integration
|
||||
test-integration: composer
|
||||
@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 "Set NEXTCLOUD_ROOT environment variable."; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
if [ ! -f tests/phpunit.integration.xml ]; then \
|
||||
echo "\x1b[31mNo integration tests found (tests/phpunit.integration.xml missing)\x1b[0m"; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
echo "\x1b[32mUsing Nextcloud root: $$NC_ROOT\x1b[0m"; \
|
||||
NEXTCLOUD_ROOT="$$NC_ROOT" $(CURDIR)/vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
|
||||
|
||||
# test-docker:
|
||||
# - Run PHP unit tests inside a Nextcloud Docker container
|
||||
|
||||
@@ -37,7 +37,7 @@ This app is in early stages of development. While functional, you may encounter
|
||||
|
||||
The forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control.
|
||||
]]></description>
|
||||
<version>0.19.0</version>
|
||||
<version>0.20.4</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="contact@casraf.dev" homepage="https://casraf.dev">Chen Asraf</author>
|
||||
<namespace>Forum</namespace>
|
||||
|
||||
@@ -26,6 +26,7 @@
|
||||
"cs:fix": "php-cs-fixer fix",
|
||||
"psalm": "psalm --threads=1 --no-cache",
|
||||
"test:unit": "phpunit tests -c tests/phpunit.xml --colors=always --fail-on-warning --fail-on-risky",
|
||||
"test:integration": "phpunit tests -c tests/phpunit.integration.xml --colors=always --fail-on-warning --fail-on-risky",
|
||||
"openapi": "generate-spec"
|
||||
},
|
||||
"require": {
|
||||
|
||||
47
composer.lock
generated
47
composer.lock
generated
@@ -180,12 +180,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nextcloud-deps/ocp.git",
|
||||
"reference": "45612049852ea4234dd799a4a3281a397f0749c3"
|
||||
"reference": "a79703d9f38e964b003ae1cc805b6531d142fa93"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/45612049852ea4234dd799a4a3281a397f0749c3",
|
||||
"reference": "45612049852ea4234dd799a4a3281a397f0749c3",
|
||||
"url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/a79703d9f38e964b003ae1cc805b6531d142fa93",
|
||||
"reference": "a79703d9f38e964b003ae1cc805b6531d142fa93",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -220,7 +220,7 @@
|
||||
"issues": "https://github.com/nextcloud-deps/ocp/issues",
|
||||
"source": "https://github.com/nextcloud-deps/ocp/tree/stable32"
|
||||
},
|
||||
"time": "2025-12-16T00:55:52+00:00"
|
||||
"time": "2026-01-09T00:57:52+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nikic/php-parser",
|
||||
@@ -1035,12 +1035,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Roave/SecurityAdvisories.git",
|
||||
"reference": "e5034c4df32edeafb119b2c1e2b58876d0286ea8"
|
||||
"reference": "ccfd723dc03e9864008d011603c412910180d7a6"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/e5034c4df32edeafb119b2c1e2b58876d0286ea8",
|
||||
"reference": "e5034c4df32edeafb119b2c1e2b58876d0286ea8",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/ccfd723dc03e9864008d011603c412910180d7a6",
|
||||
"reference": "ccfd723dc03e9864008d011603c412910180d7a6",
|
||||
"shasum": ""
|
||||
},
|
||||
"conflict": {
|
||||
@@ -1093,7 +1093,7 @@
|
||||
"automad/automad": "<2.0.0.0-alpha5",
|
||||
"automattic/jetpack": "<9.8",
|
||||
"awesome-support/awesome-support": "<=6.0.7",
|
||||
"aws/aws-sdk-php": "<3.288.1",
|
||||
"aws/aws-sdk-php": "<3.368",
|
||||
"azuracast/azuracast": "<=0.23.1",
|
||||
"b13/seo_basics": "<0.8.2",
|
||||
"backdrop/backdrop": "<=1.32",
|
||||
@@ -1101,7 +1101,7 @@
|
||||
"backpack/filemanager": "<2.0.2|>=3,<3.0.9",
|
||||
"bacula-web/bacula-web": "<9.7.1",
|
||||
"badaso/core": "<=2.9.11",
|
||||
"bagisto/bagisto": "<=2.3.7",
|
||||
"bagisto/bagisto": "<2.3.10",
|
||||
"barrelstrength/sprout-base-email": "<1.2.7",
|
||||
"barrelstrength/sprout-forms": "<3.9",
|
||||
"barryvdh/laravel-translation-manager": "<0.6.8",
|
||||
@@ -1133,6 +1133,7 @@
|
||||
"bvbmedia/multishop": "<2.0.39",
|
||||
"bytefury/crater": "<6.0.2",
|
||||
"cachethq/cachet": "<2.5.1",
|
||||
"cadmium-org/cadmium-cms": "<=0.4.9",
|
||||
"cakephp/cakephp": "<3.10.3|>=4,<4.0.10|>=4.1,<4.1.4|>=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
|
||||
"cakephp/database": ">=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
|
||||
"cardgate/magento2": "<2.0.33",
|
||||
@@ -1162,7 +1163,7 @@
|
||||
"codingms/modules": "<4.3.11|>=5,<5.7.4|>=6,<6.4.2|>=7,<7.5.5",
|
||||
"commerceteam/commerce": ">=0.9.6,<0.9.9",
|
||||
"components/jquery": ">=1.0.3,<3.5",
|
||||
"composer/composer": "<1.10.27|>=2,<2.2.24|>=2.3,<2.7.7",
|
||||
"composer/composer": "<1.10.27|>=2,<2.2.26|>=2.3,<2.9.3",
|
||||
"concrete5/concrete5": "<9.4.3",
|
||||
"concrete5/core": "<8.5.8|>=9,<9.1",
|
||||
"contao-components/mediaelement": ">=2.14.2,<2.21.1",
|
||||
@@ -1172,11 +1173,12 @@
|
||||
"contao/core-bundle": "<4.13.57|>=5,<5.3.42|>=5.4,<5.6.5",
|
||||
"contao/listing-bundle": ">=3,<=3.5.30|>=4,<4.4.8",
|
||||
"contao/managed-edition": "<=1.5",
|
||||
"coreshop/core-shop": "<=4.1.7",
|
||||
"corveda/phpsandbox": "<1.3.5",
|
||||
"cosenary/instagram": "<=2.3",
|
||||
"couleurcitron/tarteaucitron-wp": "<0.3",
|
||||
"craftcms/cms": "<=4.16.5|>=5,<=5.8.6",
|
||||
"croogo/croogo": "<4",
|
||||
"craftcms/cms": "<=4.16.16|>=5,<=5.8.20",
|
||||
"croogo/croogo": "<=4.0.7",
|
||||
"cuyz/valinor": "<0.12",
|
||||
"czim/file-handling": "<1.5|>=2,<2.3",
|
||||
"czproject/git-php": "<4.0.3",
|
||||
@@ -1223,7 +1225,7 @@
|
||||
"drupal/commerce_alphabank_redirect": "<1.0.3",
|
||||
"drupal/commerce_eurobank_redirect": "<2.1.1",
|
||||
"drupal/config_split": "<1.10|>=2,<2.0.2",
|
||||
"drupal/core": ">=6,<6.38|>=7,<7.102|>=8,<10.4.9|>=10.5,<10.5.6|>=11,<11.1.9|>=11.2,<11.2.8",
|
||||
"drupal/core": ">=6,<6.38|>=7,<7.103|>=8,<10.4.9|>=10.5,<10.5.6|>=11,<11.1.9|>=11.2,<11.2.8",
|
||||
"drupal/core-recommended": ">=7,<7.102|>=8,<10.2.11|>=10.3,<10.3.9|>=11,<11.0.8",
|
||||
"drupal/currency": "<3.5",
|
||||
"drupal/drupal": ">=5,<5.11|>=6,<6.38|>=7,<7.102|>=8,<10.2.11|>=10.3,<10.3.9|>=11,<11.0.8",
|
||||
@@ -1287,7 +1289,7 @@
|
||||
"ezsystems/repository-forms": ">=2.3,<2.3.2.1-dev|>=2.5,<2.5.15",
|
||||
"ezyang/htmlpurifier": "<=4.2",
|
||||
"facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2",
|
||||
"facturascripts/facturascripts": "<=2022.08",
|
||||
"facturascripts/facturascripts": "<=2025.4|==2025.11|==2025.41|==2025.43",
|
||||
"fastly/magento2": "<1.2.26",
|
||||
"feehi/cms": "<=2.1.1",
|
||||
"feehi/feehicms": "<=2.1.1",
|
||||
@@ -1338,7 +1340,7 @@
|
||||
"geshi/geshi": "<=1.0.9.1",
|
||||
"getformwork/formwork": "<2.2",
|
||||
"getgrav/grav": "<1.11.0.0-beta1",
|
||||
"getkirby/cms": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1|>=5,<5.1.4",
|
||||
"getkirby/cms": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1|>=5,<=5.2.1",
|
||||
"getkirby/kirby": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1",
|
||||
"getkirby/panel": "<2.5.14",
|
||||
"getkirby/starterkit": "<=3.7.0.2",
|
||||
@@ -1459,7 +1461,7 @@
|
||||
"leantime/leantime": "<3.3",
|
||||
"lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3",
|
||||
"libreform/libreform": ">=2,<=2.0.8",
|
||||
"librenms/librenms": "<25.11",
|
||||
"librenms/librenms": "<25.12",
|
||||
"liftkit/database": "<2.13.2",
|
||||
"lightsaml/lightsaml": "<1.3.5",
|
||||
"limesurvey/limesurvey": "<6.5.12",
|
||||
@@ -1567,7 +1569,7 @@
|
||||
"october/cms": "<1.0.469|==1.0.469|==1.0.471|==1.1.1",
|
||||
"october/october": "<3.7.5",
|
||||
"october/rain": "<1.0.472|>=1.1,<1.1.2",
|
||||
"october/system": "<3.7.5",
|
||||
"october/system": "<=3.7.12|>=4,<=4.0.11",
|
||||
"oliverklee/phpunit": "<3.5.15",
|
||||
"omeka/omeka-s": "<4.0.3",
|
||||
"onelogin/php-saml": "<2.21.1|>=3,<3.8.1|>=4,<4.3.1",
|
||||
@@ -1594,6 +1596,7 @@
|
||||
"pagekit/pagekit": "<=1.0.18",
|
||||
"paragonie/ecc": "<2.0.1",
|
||||
"paragonie/random_compat": "<2",
|
||||
"paragonie/sodium_compat": "<1.24|>=2,<2.5",
|
||||
"passbolt/passbolt_api": "<4.6.2",
|
||||
"paypal/adaptivepayments-sdk-php": "<=3.9.2",
|
||||
"paypal/invoice-sdk-php": "<=3.9",
|
||||
@@ -1661,7 +1664,7 @@
|
||||
"processwire/processwire": "<=3.0.246",
|
||||
"propel/propel": ">=2.0.0.0-alpha1,<=2.0.0.0-alpha7",
|
||||
"propel/propel1": ">=1,<=1.7.1",
|
||||
"pterodactyl/panel": "<=1.11.10",
|
||||
"pterodactyl/panel": "<1.12",
|
||||
"ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2",
|
||||
"ptrofimov/beanstalk_console": "<1.7.14",
|
||||
"pubnub/pubnub": "<6.1",
|
||||
@@ -1679,7 +1682,7 @@
|
||||
"rap2hpoutre/laravel-log-viewer": "<0.13",
|
||||
"react/http": ">=0.7,<1.9",
|
||||
"really-simple-plugins/complianz-gdpr": "<6.4.2",
|
||||
"redaxo/source": "<5.20.1",
|
||||
"redaxo/source": "<=5.20.1",
|
||||
"remdex/livehelperchat": "<4.29",
|
||||
"renolit/reint-downloadmanager": "<4.0.2|>=5,<5.0.1",
|
||||
"reportico-web/reportico": "<=8.1",
|
||||
@@ -1838,7 +1841,7 @@
|
||||
"thelia/thelia": ">=2.1,<2.1.3",
|
||||
"theonedemon/phpwhois": "<=4.2.5",
|
||||
"thinkcmf/thinkcmf": "<6.0.8",
|
||||
"thorsten/phpmyfaq": "<=4.0.13",
|
||||
"thorsten/phpmyfaq": "<4.0.16|>=4.1.0.0-alpha,<=4.1.0.0-beta2",
|
||||
"tikiwiki/tiki-manager": "<=17.1",
|
||||
"timber/timber": ">=0.16.6,<1.23.1|>=1.24,<1.24.1|>=2,<2.1",
|
||||
"tinymce/tinymce": "<7.2",
|
||||
@@ -1954,7 +1957,7 @@
|
||||
"yiisoft/yii2-redis": "<2.0.20",
|
||||
"yikesinc/yikes-inc-easy-mailchimp-extender": "<6.8.6",
|
||||
"yoast-seo-for-typo3/yoast_seo": "<7.2.3",
|
||||
"yourls/yourls": "<=1.8.2",
|
||||
"yourls/yourls": "<=1.10.2",
|
||||
"yuan1994/tpadmin": "<=1.3.12",
|
||||
"yungifez/skuul": "<=2.6.5",
|
||||
"z-push/z-push-dev": "<2.7.6",
|
||||
@@ -2032,7 +2035,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2025-12-17T21:06:23+00:00"
|
||||
"time": "2026-01-09T19:06:26+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/cli-parser",
|
||||
|
||||
85
gen/component/{{pascalCase name}}.test.ts
Normal file
85
gen/component/{{pascalCase name}}.test.ts
Normal file
@@ -0,0 +1,85 @@
|
||||
// SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
|
||||
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
/**
|
||||
* Unit tests for {{pascalCase name}} component.
|
||||
*
|
||||
* See src/components/StatusBadge.test.ts for a complete example.
|
||||
*/
|
||||
import { mount } from '@vue/test-utils'
|
||||
import { describe, expect, it, vi } from 'vitest'
|
||||
|
||||
import { createIconMock, nextcloudL10nMock } from '@/test-utils'
|
||||
import {{ pascalCase name }} from './{{pascalCase name}}.vue'
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Mocks - uncomment as needed
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
// Mock @nextcloud/l10n (if your component uses t() or n())
|
||||
// vi.mock('@nextcloud/l10n', () => nextcloudL10nMock)
|
||||
|
||||
// Mock icon components (adjust path and name as needed)
|
||||
// vi.mock('@icons/Check.vue', () => createIconMock('CheckIcon'))
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// Tests
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
describe('{{pascalCase name}}', () => {
|
||||
// Example: Basic rendering
|
||||
// it('renders correctly', () => {
|
||||
// const wrapper = mount({{pascalCase name}})
|
||||
// expect(wrapper.exists()).toBe(true)
|
||||
// })
|
||||
|
||||
// Example: Testing with props
|
||||
// it('renders with props', () => {
|
||||
// const wrapper = mount({{pascalCase name}}, {
|
||||
// props: { title: 'Hello' },
|
||||
// })
|
||||
// expect(wrapper.text()).toContain('Hello')
|
||||
// })
|
||||
|
||||
// Example: Testing CSS classes
|
||||
// it('applies correct CSS class', () => {
|
||||
// const wrapper = mount({{pascalCase name}}, {
|
||||
// props: { variant: 'primary' },
|
||||
// })
|
||||
// expect(wrapper.classes()).toContain('is-primary')
|
||||
// })
|
||||
|
||||
// Example: Testing emitted events
|
||||
// it('emits click event', async () => {
|
||||
// const wrapper = mount({{pascalCase name}})
|
||||
// await wrapper.trigger('click')
|
||||
// expect(wrapper.emitted('click')).toBeTruthy()
|
||||
// })
|
||||
|
||||
// Example: Testing computed properties
|
||||
// it('computes derived value', () => {
|
||||
// const wrapper = mount({{pascalCase name}}, {
|
||||
// props: { count: 5 },
|
||||
// })
|
||||
// const vm = wrapper.vm as InstanceType<typeof {{pascalCase name}}>
|
||||
// expect(vm.doubleCount).toBe(10)
|
||||
// })
|
||||
|
||||
// Example: Testing conditional rendering
|
||||
// it('shows content when condition is met', () => {
|
||||
// const wrapper = mount({{pascalCase name}}, {
|
||||
// props: { showDetails: true },
|
||||
// })
|
||||
// expect(wrapper.find('.details').exists()).toBe(true)
|
||||
// })
|
||||
|
||||
// Example: Testing slots
|
||||
// it('renders slot content', () => {
|
||||
// const wrapper = mount({{pascalCase name}}, {
|
||||
// slots: { default: 'Slot content' },
|
||||
// })
|
||||
// expect(wrapper.text()).toContain('Slot content')
|
||||
// })
|
||||
|
||||
it.todo('add your tests here')
|
||||
})
|
||||
@@ -40,7 +40,7 @@ class {{pascalCase name}}Mapper extends QBMapper {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $projectId
|
||||
* @param string $id
|
||||
* @return array<{{pascalCase name}}>
|
||||
*/
|
||||
public function findAll(): array {
|
||||
|
||||
@@ -38,6 +38,7 @@ OC.L10N.register(
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "غير مقروء",
|
||||
"Save" : "حفظ",
|
||||
"Current version" : "النسخة الحالية",
|
||||
"React with {emoji}" : "تفاعل باستخدام {emoji}",
|
||||
"Uncategorized" : "غير مُصنّفة",
|
||||
"Views" : "مشاهدات",
|
||||
|
||||
@@ -36,6 +36,7 @@
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "غير مقروء",
|
||||
"Save" : "حفظ",
|
||||
"Current version" : "النسخة الحالية",
|
||||
"React with {emoji}" : "تفاعل باستخدام {emoji}",
|
||||
"Uncategorized" : "غير مُصنّفة",
|
||||
"Views" : "مشاهدات",
|
||||
|
||||
@@ -34,6 +34,7 @@ OC.L10N.register(
|
||||
"Delete" : "Desaniciar",
|
||||
"Unread" : "Ensin lleer",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"Uncategorized" : "Ensin categoría",
|
||||
"Views" : "Vistes",
|
||||
"Title" : "Títulu",
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
"Delete" : "Desaniciar",
|
||||
"Unread" : "Ensin lleer",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"Uncategorized" : "Ensin categoría",
|
||||
"Views" : "Vistes",
|
||||
"Title" : "Títulu",
|
||||
|
||||
@@ -8,11 +8,11 @@ OC.L10N.register(
|
||||
"General" : "Агульныя",
|
||||
"Support" : "Падтрымка",
|
||||
"Attachment" : "Далучэнне",
|
||||
"Welcome to Nextcloud Forums" : "Вітаем на Форумах Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Вітаем на Форумах Nextcloud!",
|
||||
"Bold text" : "Тоўсты тэкст",
|
||||
"Italic text" : "Тэкст курсівам",
|
||||
"Underlined text" : "Падкрэслены тэкст",
|
||||
"Welcome to Nextcloud Forums" : "Вітаем на Форумах Nextcloud",
|
||||
"Forum" : "Форум",
|
||||
"Welcome to the forum!" : "Вітаем на форуме!",
|
||||
"Deleted user" : "Выдалены карыстальнік",
|
||||
@@ -56,6 +56,8 @@ OC.L10N.register(
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Вы ўпэўнены, што хочаце выдаліць гэты допіс? Гэта дзеянне нельга адрабіць.",
|
||||
"Unread" : "Непрачытанае",
|
||||
"Save" : "Захаваць",
|
||||
"Current version" : "Бягучая версія",
|
||||
"Version {index}" : "Версія {index}",
|
||||
"Add reaction" : "Дадаць рэакцыю",
|
||||
"React with {emoji}" : "Адрэагаваць з {emoji}",
|
||||
"_%n reply_::_%n replies_" : ["%n адказ","%n адказы","%n адказаў","%n адказаў"],
|
||||
|
||||
@@ -6,11 +6,11 @@
|
||||
"General" : "Агульныя",
|
||||
"Support" : "Падтрымка",
|
||||
"Attachment" : "Далучэнне",
|
||||
"Welcome to Nextcloud Forums" : "Вітаем на Форумах Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Вітаем на Форумах Nextcloud!",
|
||||
"Bold text" : "Тоўсты тэкст",
|
||||
"Italic text" : "Тэкст курсівам",
|
||||
"Underlined text" : "Падкрэслены тэкст",
|
||||
"Welcome to Nextcloud Forums" : "Вітаем на Форумах Nextcloud",
|
||||
"Forum" : "Форум",
|
||||
"Welcome to the forum!" : "Вітаем на форуме!",
|
||||
"Deleted user" : "Выдалены карыстальнік",
|
||||
@@ -54,6 +54,8 @@
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Вы ўпэўнены, што хочаце выдаліць гэты допіс? Гэта дзеянне нельга адрабіць.",
|
||||
"Unread" : "Непрачытанае",
|
||||
"Save" : "Захаваць",
|
||||
"Current version" : "Бягучая версія",
|
||||
"Version {index}" : "Версія {index}",
|
||||
"Add reaction" : "Дадаць рэакцыю",
|
||||
"React with {emoji}" : "Адрэагаваць з {emoji}",
|
||||
"_%n reply_::_%n replies_" : ["%n адказ","%n адказы","%n адказаў","%n адказаў"],
|
||||
|
||||
@@ -40,6 +40,7 @@ OC.L10N.register(
|
||||
"Delete" : "Изтриване",
|
||||
"Unread" : "Непрочетено",
|
||||
"Save" : "Запиши",
|
||||
"Current version" : "Текуща версия",
|
||||
"React with {emoji}" : "Реагирайте с {emoji}",
|
||||
"Uncategorized" : "Некатегоризирани",
|
||||
"Views" : "Изгледи",
|
||||
|
||||
@@ -38,6 +38,7 @@
|
||||
"Delete" : "Изтриване",
|
||||
"Unread" : "Непрочетено",
|
||||
"Save" : "Запиши",
|
||||
"Current version" : "Текуща версия",
|
||||
"React with {emoji}" : "Реагирайте с {emoji}",
|
||||
"Uncategorized" : "Некатегоризирани",
|
||||
"Views" : "Изгледи",
|
||||
|
||||
@@ -43,6 +43,7 @@ OC.L10N.register(
|
||||
"Delete" : "Suprimir",
|
||||
"Unread" : "Per llegir",
|
||||
"Save" : "Desar",
|
||||
"Current version" : "Versió actual",
|
||||
"React with {emoji}" : "Reacciona amb {emoji}",
|
||||
"Uncategorized" : "Sense categoria",
|
||||
"Views" : "Vistes",
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
"Delete" : "Suprimir",
|
||||
"Unread" : "Per llegir",
|
||||
"Save" : "Desar",
|
||||
"Current version" : "Versió actual",
|
||||
"React with {emoji}" : "Reacciona amb {emoji}",
|
||||
"Uncategorized" : "Sense categoria",
|
||||
"Views" : "Vistes",
|
||||
|
||||
46
l10n/cs.js
46
l10n/cs.js
@@ -20,7 +20,6 @@ OC.L10N.register(
|
||||
"Hidden content" : "Skrytý obsah",
|
||||
"Spoilers" : "Spoilery",
|
||||
"Attachment" : "Příloha",
|
||||
"Welcome to Nextcloud Forums" : "Vítejte v Nextcloud fórech",
|
||||
"Welcome to the Nextcloud Forums!" : "Vítejte v Nextcloud fórech!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Toto je komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud. Je možné zde probírat témata, sdílet nápady a spolupracovat s ostatními uživateli.",
|
||||
"Features:" : "Funkce:",
|
||||
@@ -36,8 +35,10 @@ OC.L10N.register(
|
||||
"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!.",
|
||||
"Welcome to Nextcloud Forums" : "Vítejte v Nextcloud fórech",
|
||||
"Forum" : "Diskuzní fórum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nová odpověď v {thread} ","{count} nové odpovědi v {thread} ","{count} nových odpovědí v {thread} ","{count} nové odpovědi v {thread} "],
|
||||
"{user} mentioned you in {thread}" : "{user} vás zmínil(a) v {thread}",
|
||||
"Welcome to the forum!" : "Vítejte ve fóru!",
|
||||
"Deleted user" : "Smazaný uživatel",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud",
|
||||
@@ -121,24 +122,36 @@ OC.L10N.register(
|
||||
"The page you are looking for could not be found." : "Stránka kterou hledáte nebylo možné nalézt.",
|
||||
"Back" : "Zpět",
|
||||
"Go to home" : "Přejít na úvodní stránku",
|
||||
"Pagination" : "Stránkování",
|
||||
"First page" : "První stránka",
|
||||
"Previous page" : "Předchozí stránka",
|
||||
"Next page" : "Následující stránka",
|
||||
"Last page" : "Poslední stránka",
|
||||
"Go to page {page}" : "Přejít na stránku {page}",
|
||||
"Edited" : "Upraveno",
|
||||
"Quote reply" : "Odpovědět s citací",
|
||||
"Edit" : "Upravit",
|
||||
"Delete" : "Smazat",
|
||||
"View edit history" : "Zobrazit historii úprav",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Opravdu chcete tento příspěvek smazat? Tuto akci nepůjde vzít zpět.",
|
||||
"Unread" : "Nastavit jako nepřečtené",
|
||||
"Edit your reply …" : "Upravit vaši odpověď …",
|
||||
"Save" : "Uložit",
|
||||
"Are you sure you want to discard your changes?" : "Opravdu chcete vámi provedené změny zahodit?",
|
||||
"Edit history" : "Upravit historii",
|
||||
"Loading history …" : "Načítání historie …",
|
||||
"This post has no edit history." : "Tento příspěvek nemá žádnou historii úprav.",
|
||||
"Current version" : "Stávající verze",
|
||||
"Edited by" : "Upravil/a",
|
||||
"Failed to load edit history" : "Nepodařilo se načíst historii úprav",
|
||||
"Version {index}" : "Verze {index}",
|
||||
"Add reaction" : "Přidat reakci",
|
||||
"React with {emoji}" : "Zareagovat {emoji}",
|
||||
"You reacted with {emoji}" : "Zareagovali jste s použitím {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n dalších jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n osoba zareagovala s použitím {emoji}","%n lidé zareagovali s použitím {emoji}","%n lidí zareagovalo s použitím {emoji}","%n lidé zareagovali s použitím {emoji}"],
|
||||
"Write your reply …" : "Napište svou odpověď …",
|
||||
"Submit reply" : "Odeslat odpověď",
|
||||
"Are you sure you want to discard your reply?" : "Opravdu chcete svou odpověď zahodit?",
|
||||
"In thread" : "Ve vláknu",
|
||||
"Thread unavailable" : "Vlákno není k dispozici",
|
||||
@@ -150,6 +163,7 @@ OC.L10N.register(
|
||||
"Views" : "Zobrazení",
|
||||
"Title" : "Titul",
|
||||
"Enter thread title …" : "Zadejte titulek vlákna …",
|
||||
"Write your thread content …" : "Napište obsah vašeho vlákna …",
|
||||
"Create thread" : "Vytvořit vlákno",
|
||||
"Are you sure you want to discard this thread?" : "Opravdu chcete toto vlákno zahodit?",
|
||||
"Saving draft …" : "Ukládání konceptu…",
|
||||
@@ -157,8 +171,13 @@ OC.L10N.register(
|
||||
"Unsaved changes" : "Neuložené změny",
|
||||
"Back to home" : "Zpět na začátek",
|
||||
"Refresh" : "Znovu načíst",
|
||||
"Your bookmarked threads" : "Vaše záložky na vlákna",
|
||||
"Error loading bookmarks" : "Chyba při načítání záložek",
|
||||
"No bookmarks yet" : "Zatím ještě žádné záložky",
|
||||
"Bookmark threads to quickly find them later." : "Ukládejte si vlákna do záložek, abyste je později rychle našli.",
|
||||
"Retry" : "Zkusit znovu",
|
||||
"An unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||
"Failed to load bookmarks" : "Nepodařilo se načíst záložky",
|
||||
"No categories yet" : "Zatím ještě žádné kategorie",
|
||||
"Categories will appear here once they are created." : "Kategorie se objeví, jakmile budou vytvořeny.",
|
||||
"No categories in this section" : "Žádné kategorie v této sekci",
|
||||
@@ -178,14 +197,17 @@ OC.L10N.register(
|
||||
"Failed to create thread" : "Vlákno se nepodařilo vytvořit",
|
||||
"No category specified" : "Neurčena žádná kategorie",
|
||||
"Error" : "Error",
|
||||
"First activity" : "První aktivita",
|
||||
"Threads ({count})" : "Vlákna ({count})",
|
||||
"Replies ({count})" : "Odpovědi ({count})",
|
||||
"No threads" : "Žádná vlákna",
|
||||
"This user has not created any threads yet" : "Tento uživatel zatím nevytvořil žádná vlákna",
|
||||
"No replies" : "Žádné odpovědi",
|
||||
"This user has not written any replies yet" : "Tento uživatel zatím nenapsal žádné odpovědi",
|
||||
"Failed to load user profile" : "Nepodařilo se načíst uživatelský profil",
|
||||
"Enter search query …" : "Zadejte vyhledávací dotaz …",
|
||||
"Search in threads" : "Hledat ve vláknech",
|
||||
"Search in replies" : "Hledat v odpovědích",
|
||||
"Syntax help" : "Nápověda k syntaxi",
|
||||
"Search syntax" : "Syntaxe vyhledávání",
|
||||
"Match exact phrase" : "Hledat shodu v přesné frázi",
|
||||
@@ -196,9 +218,11 @@ OC.L10N.register(
|
||||
"Searching …" : "Hledání …",
|
||||
"Search Error" : "Chyba hledání",
|
||||
"Enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Use the search box above to find threads and replies" : "Ve vláknech a odpovědích je možné vyhledávat pomocí kolonky výše",
|
||||
"No results found" : "Nic nenalezeno",
|
||||
"Try different keywords or check your syntax" : "Zkuste jiná klíčová slova nebo zkontrolujte syntaxi",
|
||||
"_%n thread found_::_%n threads found_" : ["Nalezeno %n vlákno","Nalezena %n vlákna","Nalezeno %n vláken","Nalezena %n vlákna"],
|
||||
"_%n reply found_::_%n replies found_" : ["Nalezena %n odpověď","Nalezeny %n odpovědi","Nalezeno %n odpovědí","Nalezeny %n odpovědi"],
|
||||
"Please enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Please select at least one search scope" : "Vyberte alespoň jednu oblast vyhledávání",
|
||||
"Failed to search" : "Nepodařilo se hledat",
|
||||
@@ -207,7 +231,10 @@ OC.L10N.register(
|
||||
"Back to {category}" : "Zpět na {category}",
|
||||
"Reply" : "Odpověď",
|
||||
"Error loading thread" : "Chyba při načítání vlákna",
|
||||
"No replies yet" : "Zatím žádné odpovědi",
|
||||
"Be the first to reply in this thread." : "Buďte první kdo odpoví v tomto vlákně.",
|
||||
"by" : "od",
|
||||
"This thread is locked. Only moderators can add replies." : "Toto vlákno je uzamčené. Odpovědi mohou přidávat pouze moderátoři.",
|
||||
"You must be signed in to reply to this thread." : "Pokud chcete v tomto vlákně odpovědět, je třeba, abyste byli přihlášení.",
|
||||
"Sign in to reply" : "Pokud chcete odpovědět, přihlaste se ke svému účtu",
|
||||
"Lock thread" : "Uzamknout vlákno",
|
||||
@@ -223,16 +250,27 @@ OC.L10N.register(
|
||||
"Subscribed to thread" : "Přihlášeno se k odběru vlákna",
|
||||
"Unsubscribed from thread" : "Zrušeno odebírání vlákna",
|
||||
"Bookmark" : "Záložka",
|
||||
"Remove bookmark" : "Odebrat záložku",
|
||||
"Thread bookmarked" : "Vlákno uloženo do záložek",
|
||||
"Bookmark removed" : "Záložka odebrána",
|
||||
"Edit title" : "Upravit nadpis",
|
||||
"Save title" : "Uložit nadpis",
|
||||
"Thread title updated" : "Nadpis vlákna zaktualizován",
|
||||
"Move thread" : "Přesunout vlákno",
|
||||
"Thread moved successfully" : "Vlákno úspěšně přesunuto",
|
||||
"No thread ID or slug provided" : "Nezadán žádný identifikátor vlákna nebo slug",
|
||||
"Failed to load replies" : "Nepodařilo se načíst odpovědi",
|
||||
"Thread updated" : "Vlákno zaktualizováno",
|
||||
"Reply updated" : "Odpověď zaktualizována",
|
||||
"Failed to update thread" : "Nepodařilo se zaktualizovat vlákno",
|
||||
"Failed to update reply" : "Nepodařilo se zaktualizovat odpověď",
|
||||
"Thread deleted" : "Vlákno smazáno",
|
||||
"Reply deleted" : "Odpověď smazána",
|
||||
"Failed to delete reply" : "Nepodařilo se smazat odpověď",
|
||||
"Failed to update thread lock status" : "Nepodařilo se zaktualizovat stav zámku vlákna",
|
||||
"Failed to update thread pin status" : "Nepodařilo se zaktualizovat stav připnutí vlákna",
|
||||
"Failed to update subscription" : "Nepodařilo se zaktualizovat přihlášení se k odběru",
|
||||
"Failed to update bookmark" : "Nepodařilo se zaktualizovat záložku",
|
||||
"Failed to update thread title" : "Nepodařilo se zaktualizovat nadpis vlákna",
|
||||
"Failed to move thread" : "Nepodařilo se přesunout vlákno",
|
||||
"Preferences" : "Předvolby",
|
||||
@@ -246,12 +284,17 @@ OC.L10N.register(
|
||||
"Files" : "Soubory",
|
||||
"Configure file upload settings" : "Nastavit nahrávání souborů",
|
||||
"Upload directory" : "Složka pro nahrání",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Soubory připojené k vláknům nebo odpovědím budou nahrány do této složky v Nextcloud Soubory",
|
||||
"Browse" : "Procházet",
|
||||
"Preferences saved" : "Předvolby uloženy",
|
||||
"Signature" : "Podpis",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Váš podpis se objevuje ve spodní části vašich vláken nebo odpovědí",
|
||||
"You can use BBCode formatting in your signature" : "Svůj podpis můžete formátovat pomocí BBCode",
|
||||
"Enter your signature …" : "Zadejte svůj podpis …",
|
||||
"Failed to save preferences" : "Nepodařilo se uložit vaše předvolby",
|
||||
"Select upload directory" : "Vyberte složku pro nahrávání",
|
||||
"BBCode management" : "Správa BBCode",
|
||||
"Manage custom BBCode tags for formatting" : "Spravovat uživatelsky určené BBCode značky pro formátování",
|
||||
"Error loading BBCodes" : "Chyba při načítání BBCode kódů",
|
||||
"Create BBCode" : "Vytvořit BBCode",
|
||||
"Enable" : "Povolit",
|
||||
@@ -333,6 +376,7 @@ OC.L10N.register(
|
||||
"Recent activity (last 7 days)" : "Nedávná aktivita (uplynulých 7 dnů)",
|
||||
"New users" : "Nový uživatelé",
|
||||
"New threads" : "Nová vlákna",
|
||||
"New replies" : "Nové odpovědi",
|
||||
"Top contributors" : "Nejaktivnější přispěvatelé",
|
||||
"No contributors yet" : "Zatím žádní přispěvatelé",
|
||||
"Last 7 days" : "Uplynulých 7 dnů",
|
||||
|
||||
46
l10n/cs.json
46
l10n/cs.json
@@ -18,7 +18,6 @@
|
||||
"Hidden content" : "Skrytý obsah",
|
||||
"Spoilers" : "Spoilery",
|
||||
"Attachment" : "Příloha",
|
||||
"Welcome to Nextcloud Forums" : "Vítejte v Nextcloud fórech",
|
||||
"Welcome to the Nextcloud Forums!" : "Vítejte v Nextcloud fórech!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Toto je komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud. Je možné zde probírat témata, sdílet nápady a spolupracovat s ostatními uživateli.",
|
||||
"Features:" : "Funkce:",
|
||||
@@ -34,8 +33,10 @@
|
||||
"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!.",
|
||||
"Welcome to Nextcloud Forums" : "Vítejte v Nextcloud fórech",
|
||||
"Forum" : "Diskuzní fórum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nová odpověď v {thread} ","{count} nové odpovědi v {thread} ","{count} nových odpovědí v {thread} ","{count} nové odpovědi v {thread} "],
|
||||
"{user} mentioned you in {thread}" : "{user} vás zmínil(a) v {thread}",
|
||||
"Welcome to the forum!" : "Vítejte ve fóru!",
|
||||
"Deleted user" : "Smazaný uživatel",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Komunitou řízené fórum, vestavěné přímo do vámi využívané instance Nextcloud",
|
||||
@@ -119,24 +120,36 @@
|
||||
"The page you are looking for could not be found." : "Stránka kterou hledáte nebylo možné nalézt.",
|
||||
"Back" : "Zpět",
|
||||
"Go to home" : "Přejít na úvodní stránku",
|
||||
"Pagination" : "Stránkování",
|
||||
"First page" : "První stránka",
|
||||
"Previous page" : "Předchozí stránka",
|
||||
"Next page" : "Následující stránka",
|
||||
"Last page" : "Poslední stránka",
|
||||
"Go to page {page}" : "Přejít na stránku {page}",
|
||||
"Edited" : "Upraveno",
|
||||
"Quote reply" : "Odpovědět s citací",
|
||||
"Edit" : "Upravit",
|
||||
"Delete" : "Smazat",
|
||||
"View edit history" : "Zobrazit historii úprav",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Opravdu chcete tento příspěvek smazat? Tuto akci nepůjde vzít zpět.",
|
||||
"Unread" : "Nastavit jako nepřečtené",
|
||||
"Edit your reply …" : "Upravit vaši odpověď …",
|
||||
"Save" : "Uložit",
|
||||
"Are you sure you want to discard your changes?" : "Opravdu chcete vámi provedené změny zahodit?",
|
||||
"Edit history" : "Upravit historii",
|
||||
"Loading history …" : "Načítání historie …",
|
||||
"This post has no edit history." : "Tento příspěvek nemá žádnou historii úprav.",
|
||||
"Current version" : "Stávající verze",
|
||||
"Edited by" : "Upravil/a",
|
||||
"Failed to load edit history" : "Nepodařilo se načíst historii úprav",
|
||||
"Version {index}" : "Verze {index}",
|
||||
"Add reaction" : "Přidat reakci",
|
||||
"React with {emoji}" : "Zareagovat {emoji}",
|
||||
"You reacted with {emoji}" : "Zareagovali jste s použitím {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}","Vy a %n dalších jste zareagovali s použitím {emoji}","Vy a %n další jste zareagovali s použitím {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n osoba zareagovala s použitím {emoji}","%n lidé zareagovali s použitím {emoji}","%n lidí zareagovalo s použitím {emoji}","%n lidé zareagovali s použitím {emoji}"],
|
||||
"Write your reply …" : "Napište svou odpověď …",
|
||||
"Submit reply" : "Odeslat odpověď",
|
||||
"Are you sure you want to discard your reply?" : "Opravdu chcete svou odpověď zahodit?",
|
||||
"In thread" : "Ve vláknu",
|
||||
"Thread unavailable" : "Vlákno není k dispozici",
|
||||
@@ -148,6 +161,7 @@
|
||||
"Views" : "Zobrazení",
|
||||
"Title" : "Titul",
|
||||
"Enter thread title …" : "Zadejte titulek vlákna …",
|
||||
"Write your thread content …" : "Napište obsah vašeho vlákna …",
|
||||
"Create thread" : "Vytvořit vlákno",
|
||||
"Are you sure you want to discard this thread?" : "Opravdu chcete toto vlákno zahodit?",
|
||||
"Saving draft …" : "Ukládání konceptu…",
|
||||
@@ -155,8 +169,13 @@
|
||||
"Unsaved changes" : "Neuložené změny",
|
||||
"Back to home" : "Zpět na začátek",
|
||||
"Refresh" : "Znovu načíst",
|
||||
"Your bookmarked threads" : "Vaše záložky na vlákna",
|
||||
"Error loading bookmarks" : "Chyba při načítání záložek",
|
||||
"No bookmarks yet" : "Zatím ještě žádné záložky",
|
||||
"Bookmark threads to quickly find them later." : "Ukládejte si vlákna do záložek, abyste je později rychle našli.",
|
||||
"Retry" : "Zkusit znovu",
|
||||
"An unexpected error occurred" : "Došlo k neočekávané chybě",
|
||||
"Failed to load bookmarks" : "Nepodařilo se načíst záložky",
|
||||
"No categories yet" : "Zatím ještě žádné kategorie",
|
||||
"Categories will appear here once they are created." : "Kategorie se objeví, jakmile budou vytvořeny.",
|
||||
"No categories in this section" : "Žádné kategorie v této sekci",
|
||||
@@ -176,14 +195,17 @@
|
||||
"Failed to create thread" : "Vlákno se nepodařilo vytvořit",
|
||||
"No category specified" : "Neurčena žádná kategorie",
|
||||
"Error" : "Error",
|
||||
"First activity" : "První aktivita",
|
||||
"Threads ({count})" : "Vlákna ({count})",
|
||||
"Replies ({count})" : "Odpovědi ({count})",
|
||||
"No threads" : "Žádná vlákna",
|
||||
"This user has not created any threads yet" : "Tento uživatel zatím nevytvořil žádná vlákna",
|
||||
"No replies" : "Žádné odpovědi",
|
||||
"This user has not written any replies yet" : "Tento uživatel zatím nenapsal žádné odpovědi",
|
||||
"Failed to load user profile" : "Nepodařilo se načíst uživatelský profil",
|
||||
"Enter search query …" : "Zadejte vyhledávací dotaz …",
|
||||
"Search in threads" : "Hledat ve vláknech",
|
||||
"Search in replies" : "Hledat v odpovědích",
|
||||
"Syntax help" : "Nápověda k syntaxi",
|
||||
"Search syntax" : "Syntaxe vyhledávání",
|
||||
"Match exact phrase" : "Hledat shodu v přesné frázi",
|
||||
@@ -194,9 +216,11 @@
|
||||
"Searching …" : "Hledání …",
|
||||
"Search Error" : "Chyba hledání",
|
||||
"Enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Use the search box above to find threads and replies" : "Ve vláknech a odpovědích je možné vyhledávat pomocí kolonky výše",
|
||||
"No results found" : "Nic nenalezeno",
|
||||
"Try different keywords or check your syntax" : "Zkuste jiná klíčová slova nebo zkontrolujte syntaxi",
|
||||
"_%n thread found_::_%n threads found_" : ["Nalezeno %n vlákno","Nalezena %n vlákna","Nalezeno %n vláken","Nalezena %n vlákna"],
|
||||
"_%n reply found_::_%n replies found_" : ["Nalezena %n odpověď","Nalezeny %n odpovědi","Nalezeno %n odpovědí","Nalezeny %n odpovědi"],
|
||||
"Please enter a search query" : "Zadejte vyhledávací dotaz",
|
||||
"Please select at least one search scope" : "Vyberte alespoň jednu oblast vyhledávání",
|
||||
"Failed to search" : "Nepodařilo se hledat",
|
||||
@@ -205,7 +229,10 @@
|
||||
"Back to {category}" : "Zpět na {category}",
|
||||
"Reply" : "Odpověď",
|
||||
"Error loading thread" : "Chyba při načítání vlákna",
|
||||
"No replies yet" : "Zatím žádné odpovědi",
|
||||
"Be the first to reply in this thread." : "Buďte první kdo odpoví v tomto vlákně.",
|
||||
"by" : "od",
|
||||
"This thread is locked. Only moderators can add replies." : "Toto vlákno je uzamčené. Odpovědi mohou přidávat pouze moderátoři.",
|
||||
"You must be signed in to reply to this thread." : "Pokud chcete v tomto vlákně odpovědět, je třeba, abyste byli přihlášení.",
|
||||
"Sign in to reply" : "Pokud chcete odpovědět, přihlaste se ke svému účtu",
|
||||
"Lock thread" : "Uzamknout vlákno",
|
||||
@@ -221,16 +248,27 @@
|
||||
"Subscribed to thread" : "Přihlášeno se k odběru vlákna",
|
||||
"Unsubscribed from thread" : "Zrušeno odebírání vlákna",
|
||||
"Bookmark" : "Záložka",
|
||||
"Remove bookmark" : "Odebrat záložku",
|
||||
"Thread bookmarked" : "Vlákno uloženo do záložek",
|
||||
"Bookmark removed" : "Záložka odebrána",
|
||||
"Edit title" : "Upravit nadpis",
|
||||
"Save title" : "Uložit nadpis",
|
||||
"Thread title updated" : "Nadpis vlákna zaktualizován",
|
||||
"Move thread" : "Přesunout vlákno",
|
||||
"Thread moved successfully" : "Vlákno úspěšně přesunuto",
|
||||
"No thread ID or slug provided" : "Nezadán žádný identifikátor vlákna nebo slug",
|
||||
"Failed to load replies" : "Nepodařilo se načíst odpovědi",
|
||||
"Thread updated" : "Vlákno zaktualizováno",
|
||||
"Reply updated" : "Odpověď zaktualizována",
|
||||
"Failed to update thread" : "Nepodařilo se zaktualizovat vlákno",
|
||||
"Failed to update reply" : "Nepodařilo se zaktualizovat odpověď",
|
||||
"Thread deleted" : "Vlákno smazáno",
|
||||
"Reply deleted" : "Odpověď smazána",
|
||||
"Failed to delete reply" : "Nepodařilo se smazat odpověď",
|
||||
"Failed to update thread lock status" : "Nepodařilo se zaktualizovat stav zámku vlákna",
|
||||
"Failed to update thread pin status" : "Nepodařilo se zaktualizovat stav připnutí vlákna",
|
||||
"Failed to update subscription" : "Nepodařilo se zaktualizovat přihlášení se k odběru",
|
||||
"Failed to update bookmark" : "Nepodařilo se zaktualizovat záložku",
|
||||
"Failed to update thread title" : "Nepodařilo se zaktualizovat nadpis vlákna",
|
||||
"Failed to move thread" : "Nepodařilo se přesunout vlákno",
|
||||
"Preferences" : "Předvolby",
|
||||
@@ -244,12 +282,17 @@
|
||||
"Files" : "Soubory",
|
||||
"Configure file upload settings" : "Nastavit nahrávání souborů",
|
||||
"Upload directory" : "Složka pro nahrání",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Soubory připojené k vláknům nebo odpovědím budou nahrány do této složky v Nextcloud Soubory",
|
||||
"Browse" : "Procházet",
|
||||
"Preferences saved" : "Předvolby uloženy",
|
||||
"Signature" : "Podpis",
|
||||
"Your signature appears at the bottom of your threads or replies" : "Váš podpis se objevuje ve spodní části vašich vláken nebo odpovědí",
|
||||
"You can use BBCode formatting in your signature" : "Svůj podpis můžete formátovat pomocí BBCode",
|
||||
"Enter your signature …" : "Zadejte svůj podpis …",
|
||||
"Failed to save preferences" : "Nepodařilo se uložit vaše předvolby",
|
||||
"Select upload directory" : "Vyberte složku pro nahrávání",
|
||||
"BBCode management" : "Správa BBCode",
|
||||
"Manage custom BBCode tags for formatting" : "Spravovat uživatelsky určené BBCode značky pro formátování",
|
||||
"Error loading BBCodes" : "Chyba při načítání BBCode kódů",
|
||||
"Create BBCode" : "Vytvořit BBCode",
|
||||
"Enable" : "Povolit",
|
||||
@@ -331,6 +374,7 @@
|
||||
"Recent activity (last 7 days)" : "Nedávná aktivita (uplynulých 7 dnů)",
|
||||
"New users" : "Nový uživatelé",
|
||||
"New threads" : "Nová vlákna",
|
||||
"New replies" : "Nové odpovědi",
|
||||
"Top contributors" : "Nejaktivnější přispěvatelé",
|
||||
"No contributors yet" : "Zatím žádní přispěvatelé",
|
||||
"Last 7 days" : "Uplynulých 7 dnů",
|
||||
|
||||
@@ -39,6 +39,7 @@ OC.L10N.register(
|
||||
"Delete" : "Slet",
|
||||
"Unread" : "Ulæst",
|
||||
"Save" : "Gem",
|
||||
"Current version" : "Nuværende version",
|
||||
"Uncategorized" : "Udenfor kategori",
|
||||
"_%n reply_::_%n replies_" : ["%n svar","%n svar"],
|
||||
"Views" : "Visninger",
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
"Delete" : "Slet",
|
||||
"Unread" : "Ulæst",
|
||||
"Save" : "Gem",
|
||||
"Current version" : "Nuværende version",
|
||||
"Uncategorized" : "Udenfor kategori",
|
||||
"_%n reply_::_%n replies_" : ["%n svar","%n svar"],
|
||||
"Views" : "Visninger",
|
||||
|
||||
16
l10n/de.js
16
l10n/de.js
File diff suppressed because one or more lines are too long
16
l10n/de.json
16
l10n/de.json
File diff suppressed because one or more lines are too long
@@ -20,7 +20,6 @@ OC.L10N.register(
|
||||
"Hidden content" : "Versteckter Inhalt",
|
||||
"Spoilers" : "Spoilerwarnung",
|
||||
"Attachment" : "Anhang",
|
||||
"Welcome to Nextcloud Forums" : "Willkommen in den Nextcloud Foren",
|
||||
"Welcome to the Nextcloud Forums!" : "Willkommen in den Nextcloud Foren!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Dies ist ein Community-Forum, das direkt in Ihre Nextcloud-Instanz integriert ist. Hier können Sie Themen diskutieren, Ideen austauschen und mit anderen Nutzern zusammenarbeiten.",
|
||||
"Features:" : "Funktionen:",
|
||||
@@ -36,6 +35,7 @@ OC.L10N.register(
|
||||
"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!",
|
||||
"Welcome to Nextcloud Forums" : "Willkommen in den Nextcloud Foren",
|
||||
"Forum" : "Forum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} neue Antwort in {thread}","{count} neue Antworten in {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} hat Sie in {thread} erwähnt",
|
||||
@@ -133,17 +133,25 @@ OC.L10N.register(
|
||||
"Quote reply" : "Antwort zitieren",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Delete" : "Löschen",
|
||||
"View edit history" : "Bearbeitungsverlauf anzeigen",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Soll dieser Beitrag wirklich gelöscht werden? Diese Aktion kann nicht rückgängig gemacht werden.",
|
||||
"Unread" : "Ungelesen",
|
||||
"Edit your reply …" : "Ihre Antwort bearbeiten …",
|
||||
"Save" : "Speichern",
|
||||
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
|
||||
"Edit history" : "Verlauf bearbeiten",
|
||||
"Loading history …" : "Lade Verlauf …",
|
||||
"This post has no edit history." : "Diese Nachricht hat keinen Bearbeitungsverlauf.",
|
||||
"Current version" : "Aktuelle Version",
|
||||
"Edited by" : "Bearbeitet von",
|
||||
"Failed to load edit history" : "Bearbeitungsverlauf konnte nicht geladen werden",
|
||||
"Version {index}" : "Version {index}",
|
||||
"Add reaction" : "Reaktion hinzufügen",
|
||||
"React with {emoji}" : "Mit {emoji} reagieren",
|
||||
"You reacted with {emoji}" : "Sie haben mit {emoji} reagiert",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Sie und %n Anderer haben mit {emoji} reagiert","Sie und %n Andere haben mit {emoji} reagiert"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n Person hat mit {emoji} reagiert","%n Personen haben mit {emoji} reagiert"],
|
||||
"Write your reply …" : "Ihre Antwort schreiben ...",
|
||||
"Write your reply …" : "Ihre Antwort schreiben …",
|
||||
"Submit reply" : "Antwort absenden",
|
||||
"Are you sure you want to discard your reply?" : "Soll Ihre Antwort wirklich verworfen werden?",
|
||||
"In thread" : "Im Thema",
|
||||
@@ -253,7 +261,9 @@ OC.L10N.register(
|
||||
"Thread moved successfully" : "Thema verschoben",
|
||||
"No thread ID or slug provided" : "Keine Themen-ID oder Slug angegeben",
|
||||
"Failed to load replies" : "Antworten konnten nicht geladen werden",
|
||||
"Thread updated" : "Thema aktualisiert",
|
||||
"Reply updated" : "Antwort aktualisiert",
|
||||
"Failed to update thread" : "Thema konnte nicht aktualisiert werden",
|
||||
"Failed to update reply" : "Antwort konnte nicht aktualisiert werden",
|
||||
"Thread deleted" : "Thema gelöscht",
|
||||
"Reply deleted" : "Antwort gelöscht",
|
||||
@@ -272,6 +282,8 @@ OC.L10N.register(
|
||||
"Configure how you receive notifications" : "Einrichten, wie Sie Benachrichtigungen erhalten",
|
||||
"Auto-subscribe to threads I create" : "Themen die ich erstellt habe, automatisch abonnieren",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Wenn diese Option aktiviert ist, erhalten Sie automatisch Benachrichtigungen für Antworten auf von Ihnen erstellte Themen",
|
||||
"Auto-subscribe to threads I reply to" : "Themen auf die ich geantwortet habe, automatisch abonnieren",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "Wenn diese Option aktiviert ist, erhalten Sie automatisch Benachrichtigungen für Antworten in Themen, in denen Sie geantwortet haben",
|
||||
"Files" : "Dateien",
|
||||
"Configure file upload settings" : "Einstellungen für das Hochladen von Dateien",
|
||||
"Upload directory" : "Hochladeverzeichnis",
|
||||
|
||||
@@ -18,7 +18,6 @@
|
||||
"Hidden content" : "Versteckter Inhalt",
|
||||
"Spoilers" : "Spoilerwarnung",
|
||||
"Attachment" : "Anhang",
|
||||
"Welcome to Nextcloud Forums" : "Willkommen in den Nextcloud Foren",
|
||||
"Welcome to the Nextcloud Forums!" : "Willkommen in den Nextcloud Foren!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Dies ist ein Community-Forum, das direkt in Ihre Nextcloud-Instanz integriert ist. Hier können Sie Themen diskutieren, Ideen austauschen und mit anderen Nutzern zusammenarbeiten.",
|
||||
"Features:" : "Funktionen:",
|
||||
@@ -34,6 +33,7 @@
|
||||
"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!",
|
||||
"Welcome to Nextcloud Forums" : "Willkommen in den Nextcloud Foren",
|
||||
"Forum" : "Forum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} neue Antwort in {thread}","{count} neue Antworten in {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} hat Sie in {thread} erwähnt",
|
||||
@@ -131,17 +131,25 @@
|
||||
"Quote reply" : "Antwort zitieren",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Delete" : "Löschen",
|
||||
"View edit history" : "Bearbeitungsverlauf anzeigen",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Soll dieser Beitrag wirklich gelöscht werden? Diese Aktion kann nicht rückgängig gemacht werden.",
|
||||
"Unread" : "Ungelesen",
|
||||
"Edit your reply …" : "Ihre Antwort bearbeiten …",
|
||||
"Save" : "Speichern",
|
||||
"Are you sure you want to discard your changes?" : "Sollen die Änderungen verworfen werden?",
|
||||
"Edit history" : "Verlauf bearbeiten",
|
||||
"Loading history …" : "Lade Verlauf …",
|
||||
"This post has no edit history." : "Diese Nachricht hat keinen Bearbeitungsverlauf.",
|
||||
"Current version" : "Aktuelle Version",
|
||||
"Edited by" : "Bearbeitet von",
|
||||
"Failed to load edit history" : "Bearbeitungsverlauf konnte nicht geladen werden",
|
||||
"Version {index}" : "Version {index}",
|
||||
"Add reaction" : "Reaktion hinzufügen",
|
||||
"React with {emoji}" : "Mit {emoji} reagieren",
|
||||
"You reacted with {emoji}" : "Sie haben mit {emoji} reagiert",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["Sie und %n Anderer haben mit {emoji} reagiert","Sie und %n Andere haben mit {emoji} reagiert"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["%n Person hat mit {emoji} reagiert","%n Personen haben mit {emoji} reagiert"],
|
||||
"Write your reply …" : "Ihre Antwort schreiben ...",
|
||||
"Write your reply …" : "Ihre Antwort schreiben …",
|
||||
"Submit reply" : "Antwort absenden",
|
||||
"Are you sure you want to discard your reply?" : "Soll Ihre Antwort wirklich verworfen werden?",
|
||||
"In thread" : "Im Thema",
|
||||
@@ -251,7 +259,9 @@
|
||||
"Thread moved successfully" : "Thema verschoben",
|
||||
"No thread ID or slug provided" : "Keine Themen-ID oder Slug angegeben",
|
||||
"Failed to load replies" : "Antworten konnten nicht geladen werden",
|
||||
"Thread updated" : "Thema aktualisiert",
|
||||
"Reply updated" : "Antwort aktualisiert",
|
||||
"Failed to update thread" : "Thema konnte nicht aktualisiert werden",
|
||||
"Failed to update reply" : "Antwort konnte nicht aktualisiert werden",
|
||||
"Thread deleted" : "Thema gelöscht",
|
||||
"Reply deleted" : "Antwort gelöscht",
|
||||
@@ -270,6 +280,8 @@
|
||||
"Configure how you receive notifications" : "Einrichten, wie Sie Benachrichtigungen erhalten",
|
||||
"Auto-subscribe to threads I create" : "Themen die ich erstellt habe, automatisch abonnieren",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Wenn diese Option aktiviert ist, erhalten Sie automatisch Benachrichtigungen für Antworten auf von Ihnen erstellte Themen",
|
||||
"Auto-subscribe to threads I reply to" : "Themen auf die ich geantwortet habe, automatisch abonnieren",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "Wenn diese Option aktiviert ist, erhalten Sie automatisch Benachrichtigungen für Antworten in Themen, in denen Sie geantwortet haben",
|
||||
"Files" : "Dateien",
|
||||
"Configure file upload settings" : "Einstellungen für das Hochladen von Dateien",
|
||||
"Upload directory" : "Hochladeverzeichnis",
|
||||
|
||||
@@ -47,6 +47,7 @@ OC.L10N.register(
|
||||
"Delete" : "Διαγραφή",
|
||||
"Unread" : "Μη αναγνωσμένο",
|
||||
"Save" : "Αποθήκευση",
|
||||
"Current version" : "Τρέχουσα έκδοση",
|
||||
"React with {emoji}" : "Αντίδραση με {emoji}",
|
||||
"Uncategorized" : "Μή-κατηγοριοποιημένα",
|
||||
"_%n reply_::_%n replies_" : ["%n απάντηση","%n απαντήσεις"],
|
||||
|
||||
@@ -45,6 +45,7 @@
|
||||
"Delete" : "Διαγραφή",
|
||||
"Unread" : "Μη αναγνωσμένο",
|
||||
"Save" : "Αποθήκευση",
|
||||
"Current version" : "Τρέχουσα έκδοση",
|
||||
"React with {emoji}" : "Αντίδραση με {emoji}",
|
||||
"Uncategorized" : "Μή-κατηγοριοποιημένα",
|
||||
"_%n reply_::_%n replies_" : ["%n απάντηση","%n απαντήσεις"],
|
||||
|
||||
@@ -20,7 +20,6 @@ OC.L10N.register(
|
||||
"Hidden content" : "Hidden content",
|
||||
"Spoilers" : "Spoilers",
|
||||
"Attachment" : "Attachment",
|
||||
"Welcome to Nextcloud Forums" : "Welcome to Nextcloud Forums",
|
||||
"Welcome to the Nextcloud Forums!" : "Welcome to the Nextcloud Forums!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users.",
|
||||
"Features:" : "Features:",
|
||||
@@ -36,6 +35,7 @@ OC.L10N.register(
|
||||
"Italic text" : "Italic text",
|
||||
"Underlined text" : "Underlined text",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Feel free to start a new discussion or reply to existing threads. Happy posting!",
|
||||
"Welcome to Nextcloud Forums" : "Welcome to Nextcloud Forums",
|
||||
"Forum" : "Forum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} new reply in {thread}","{count} new replies in {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mentioned you in {thread}",
|
||||
@@ -133,11 +133,19 @@ OC.L10N.register(
|
||||
"Quote reply" : "Quote reply",
|
||||
"Edit" : "Edit",
|
||||
"Delete" : "Delete",
|
||||
"View edit history" : "View edit history",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Are you sure you want to delete this post? This action cannot be undone.",
|
||||
"Unread" : "Unread",
|
||||
"Edit your reply …" : "Edit your reply …",
|
||||
"Save" : "Save",
|
||||
"Are you sure you want to discard your changes?" : "Are you sure you want to discard your changes?",
|
||||
"Edit history" : "Edit history",
|
||||
"Loading history …" : "Loading history …",
|
||||
"This post has no edit history." : "This post has no edit history.",
|
||||
"Current version" : "Current version",
|
||||
"Edited by" : "Edited by",
|
||||
"Failed to load edit history" : "Failed to load edit history",
|
||||
"Version {index}" : "Version {index}",
|
||||
"Add reaction" : "Add reaction",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"You reacted with {emoji}" : "You reacted with {emoji}",
|
||||
@@ -253,7 +261,9 @@ OC.L10N.register(
|
||||
"Thread moved successfully" : "Thread moved successfully",
|
||||
"No thread ID or slug provided" : "No thread ID or slug provided",
|
||||
"Failed to load replies" : "Failed to load replies",
|
||||
"Thread updated" : "Thread updated",
|
||||
"Reply updated" : "Reply updated",
|
||||
"Failed to update thread" : "Failed to update thread",
|
||||
"Failed to update reply" : "Failed to update reply",
|
||||
"Thread deleted" : "Thread deleted",
|
||||
"Reply deleted" : "Reply deleted",
|
||||
|
||||
@@ -18,7 +18,6 @@
|
||||
"Hidden content" : "Hidden content",
|
||||
"Spoilers" : "Spoilers",
|
||||
"Attachment" : "Attachment",
|
||||
"Welcome to Nextcloud Forums" : "Welcome to Nextcloud Forums",
|
||||
"Welcome to the Nextcloud Forums!" : "Welcome to the Nextcloud Forums!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users.",
|
||||
"Features:" : "Features:",
|
||||
@@ -34,6 +33,7 @@
|
||||
"Italic text" : "Italic text",
|
||||
"Underlined text" : "Underlined text",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Feel free to start a new discussion or reply to existing threads. Happy posting!",
|
||||
"Welcome to Nextcloud Forums" : "Welcome to Nextcloud Forums",
|
||||
"Forum" : "Forum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} new reply in {thread}","{count} new replies in {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mentioned you in {thread}",
|
||||
@@ -131,11 +131,19 @@
|
||||
"Quote reply" : "Quote reply",
|
||||
"Edit" : "Edit",
|
||||
"Delete" : "Delete",
|
||||
"View edit history" : "View edit history",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Are you sure you want to delete this post? This action cannot be undone.",
|
||||
"Unread" : "Unread",
|
||||
"Edit your reply …" : "Edit your reply …",
|
||||
"Save" : "Save",
|
||||
"Are you sure you want to discard your changes?" : "Are you sure you want to discard your changes?",
|
||||
"Edit history" : "Edit history",
|
||||
"Loading history …" : "Loading history …",
|
||||
"This post has no edit history." : "This post has no edit history.",
|
||||
"Current version" : "Current version",
|
||||
"Edited by" : "Edited by",
|
||||
"Failed to load edit history" : "Failed to load edit history",
|
||||
"Version {index}" : "Version {index}",
|
||||
"Add reaction" : "Add reaction",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"You reacted with {emoji}" : "You reacted with {emoji}",
|
||||
@@ -251,7 +259,9 @@
|
||||
"Thread moved successfully" : "Thread moved successfully",
|
||||
"No thread ID or slug provided" : "No thread ID or slug provided",
|
||||
"Failed to load replies" : "Failed to load replies",
|
||||
"Thread updated" : "Thread updated",
|
||||
"Reply updated" : "Reply updated",
|
||||
"Failed to update thread" : "Failed to update thread",
|
||||
"Failed to update reply" : "Failed to update reply",
|
||||
"Thread deleted" : "Thread deleted",
|
||||
"Reply deleted" : "Reply deleted",
|
||||
|
||||
@@ -24,6 +24,7 @@ OC.L10N.register(
|
||||
"Edit" : "Modifi",
|
||||
"Delete" : "Forigi",
|
||||
"Save" : "Konservi",
|
||||
"Current version" : "Nuna versio",
|
||||
"Uncategorized" : "Senkategoria",
|
||||
"Saving draft …" : "Konservado de malneto...",
|
||||
"Draft saved" : "Malneto konservita",
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
"Edit" : "Modifi",
|
||||
"Delete" : "Forigi",
|
||||
"Save" : "Konservi",
|
||||
"Current version" : "Nuna versio",
|
||||
"Uncategorized" : "Senkategoria",
|
||||
"Saving draft …" : "Konservado de malneto...",
|
||||
"Draft saved" : "Malneto konservita",
|
||||
|
||||
@@ -2,11 +2,15 @@ OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Admin" : "Administrador",
|
||||
"Administrator role with full permissions" : "Rol de administrador con permisos completos",
|
||||
"Moderator" : "Moderador",
|
||||
"Moderator role with elevated permissions" : "Rol de moderador con permisos elevados",
|
||||
"User" : "Usuario",
|
||||
"Default user role with basic permissions" : "Rol de usuario por defecto con permisos básicos",
|
||||
"Guest" : "Invitado",
|
||||
"Guest role for unauthenticated users with read-only access" : "Rol de invitado para usuarios sin autenticar con acceso de solo lectura",
|
||||
"General" : "General",
|
||||
"General discussion categories" : "Categorías de discusión general",
|
||||
"Support" : "Soporte",
|
||||
"Bold text" : "Texto en negrita",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
@@ -46,6 +50,7 @@ OC.L10N.register(
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"_%n reply_::_%n replies_" : ["%n respuesta","%n respuestas","%n respuestas"],
|
||||
|
||||
@@ -1,10 +1,14 @@
|
||||
{ "translations": {
|
||||
"Admin" : "Administrador",
|
||||
"Administrator role with full permissions" : "Rol de administrador con permisos completos",
|
||||
"Moderator" : "Moderador",
|
||||
"Moderator role with elevated permissions" : "Rol de moderador con permisos elevados",
|
||||
"User" : "Usuario",
|
||||
"Default user role with basic permissions" : "Rol de usuario por defecto con permisos básicos",
|
||||
"Guest" : "Invitado",
|
||||
"Guest role for unauthenticated users with read-only access" : "Rol de invitado para usuarios sin autenticar con acceso de solo lectura",
|
||||
"General" : "General",
|
||||
"General discussion categories" : "Categorías de discusión general",
|
||||
"Support" : "Soporte",
|
||||
"Bold text" : "Texto en negrita",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
@@ -44,6 +48,7 @@
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"_%n reply_::_%n replies_" : ["%n respuesta","%n respuestas","%n respuestas"],
|
||||
|
||||
@@ -18,7 +18,6 @@ OC.L10N.register(
|
||||
"Inline code" : "Código en línea",
|
||||
"Spoilers" : "Spoilers",
|
||||
"Attachment" : "Adjunto",
|
||||
"Welcome to Nextcloud Forums" : "Bienvenido a los Foros de Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "¡Bienvenido a los Foros de Nextcloud!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Este es un foro impulsado por la comunidad integrado directamente en tu instancia de Nextcloud. Aquí puedes discutir temas, compartir ideas y colaborar con otros usuarios.",
|
||||
"Features:" : "Funciones:",
|
||||
@@ -34,6 +33,7 @@ OC.L10N.register(
|
||||
"Italic text" : "Texto en cursiva",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "No dudes en iniciar una nueva discusión o responder a hilos existentes. ¡Feliz publicación!",
|
||||
"Welcome to Nextcloud Forums" : "Bienvenido a los Foros de Nextcloud",
|
||||
"Forum" : "Foro",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nueva respuesta en {thread}","{count} nuevas respuestas en {thread}","{count} nuevas respuestas en {thread}"],
|
||||
"Welcome to the forum!" : "¡Bienvenido al foro!",
|
||||
@@ -115,6 +115,7 @@ OC.L10N.register(
|
||||
"Unread" : "No leído",
|
||||
"Save" : "Guardar",
|
||||
"Are you sure you want to discard your changes?" : "¿Estás seguro de que deseas descartar tus cambios?",
|
||||
"Current version" : "Versión actual",
|
||||
"Add reaction" : "Agregar reacción",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"You reacted with {emoji}" : "Has reaccionado con {emoji}",
|
||||
|
||||
@@ -16,7 +16,6 @@
|
||||
"Inline code" : "Código en línea",
|
||||
"Spoilers" : "Spoilers",
|
||||
"Attachment" : "Adjunto",
|
||||
"Welcome to Nextcloud Forums" : "Bienvenido a los Foros de Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "¡Bienvenido a los Foros de Nextcloud!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Este es un foro impulsado por la comunidad integrado directamente en tu instancia de Nextcloud. Aquí puedes discutir temas, compartir ideas y colaborar con otros usuarios.",
|
||||
"Features:" : "Funciones:",
|
||||
@@ -32,6 +31,7 @@
|
||||
"Italic text" : "Texto en cursiva",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "No dudes en iniciar una nueva discusión o responder a hilos existentes. ¡Feliz publicación!",
|
||||
"Welcome to Nextcloud Forums" : "Bienvenido a los Foros de Nextcloud",
|
||||
"Forum" : "Foro",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nueva respuesta en {thread}","{count} nuevas respuestas en {thread}","{count} nuevas respuestas en {thread}"],
|
||||
"Welcome to the forum!" : "¡Bienvenido al foro!",
|
||||
@@ -113,6 +113,7 @@
|
||||
"Unread" : "No leído",
|
||||
"Save" : "Guardar",
|
||||
"Are you sure you want to discard your changes?" : "¿Estás seguro de que deseas descartar tus cambios?",
|
||||
"Current version" : "Versión actual",
|
||||
"Add reaction" : "Agregar reacción",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"You reacted with {emoji}" : "Has reaccionado con {emoji}",
|
||||
|
||||
@@ -32,6 +32,7 @@ OC.L10N.register(
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Views" : "Vistas",
|
||||
"Saving draft …" : "Guardando borrador...",
|
||||
|
||||
@@ -30,6 +30,7 @@
|
||||
"Delete" : "Eliminar",
|
||||
"Unread" : "No leído",
|
||||
"Save" : "Guardar",
|
||||
"Current version" : "Versión actual",
|
||||
"Uncategorized" : "Sin categoría",
|
||||
"Views" : "Vistas",
|
||||
"Saving draft …" : "Guardando borrador...",
|
||||
|
||||
@@ -20,7 +20,6 @@ OC.L10N.register(
|
||||
"Hidden content" : "Peidetud sisu",
|
||||
"Spoilers" : "Spoilerid/tujurikkujad",
|
||||
"Attachment" : "Manus",
|
||||
"Welcome to Nextcloud Forums" : "Tere tulemast kasutama Nextcloudi Foorumit",
|
||||
"Welcome to the Nextcloud Forums!" : "Tere tulemast kasutama rakendust Nextcloudi Foorumid!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "See on kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris. Siin saad arutleda erinevatel teemadel, jagada mõtteid ning osaleda ühistöös.",
|
||||
"Features:" : "Foorumi võimalused:",
|
||||
@@ -36,6 +35,7 @@ OC.L10N.register(
|
||||
"Italic text" : "Tekst kaldkirjas",
|
||||
"Underlined text" : "Allajoonitud tekst",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Alusta uut keskustelu või vasta olemasolevale jutulõngale. Soovime sulle toimekat suhtlust!",
|
||||
"Welcome to Nextcloud Forums" : "Tere tulemast kasutama Nextcloudi Foorumit",
|
||||
"Forum" : "Foorum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} uus vastus jutulõngas {thread}","{count} uut vastust jutulõngas {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mainis sind jutulõngas „{thread}“",
|
||||
@@ -132,11 +132,19 @@ OC.L10N.register(
|
||||
"Quote reply" : "Tsiteeri vastust",
|
||||
"Edit" : "Muuda",
|
||||
"Delete" : "Kustuta",
|
||||
"View edit history" : "Vaata muudatuste ajalugu",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Kas sa oled kindel, et soovid selle postituse kustutada? Seda tegevust ei saa tagasi pöörata.",
|
||||
"Unread" : "Lugemata",
|
||||
"Edit your reply …" : "Muuda oma vastust…",
|
||||
"Save" : "Salvesta",
|
||||
"Are you sure you want to discard your changes?" : "Kas sa oled kindel, et soovid oma muudatustest loobuda?",
|
||||
"Edit history" : "Muudatuste ajalugu",
|
||||
"Loading history …" : "Laadin muudatuste ajalugu…",
|
||||
"This post has no edit history." : "Sellel postitusel puudub muudatuste ajalugu.",
|
||||
"Current version" : "Hetkeversioon",
|
||||
"Edited by" : "Muutja",
|
||||
"Failed to load edit history" : "Muudatuste ajaloo laadimine ei õnnestunud",
|
||||
"Version {index}" : "Versioon {index}",
|
||||
"Add reaction" : "Lisa reaktsioon",
|
||||
"React with {emoji}" : "Reageeri {emoji} emojiga",
|
||||
"You reacted with {emoji}" : "Sa reageerisid {emoji} emojiga",
|
||||
@@ -252,7 +260,9 @@ OC.L10N.register(
|
||||
"Thread moved successfully" : "Jutulõnga ümbertõstmine õnnestus",
|
||||
"No thread ID or slug provided" : "Ühtegi jutulõnga tunnust või aadressi lõputunnust pole lisatud",
|
||||
"Failed to load replies" : "Vastuste laadimine ei õnnestunud",
|
||||
"Thread updated" : "Jutulõng on uuendatud",
|
||||
"Reply updated" : "Vastus on muudetud",
|
||||
"Failed to update thread" : "Jutulõnga uuendamine ei õnnestunud",
|
||||
"Failed to update reply" : "Vastuse muutmine ei õnnestunud",
|
||||
"Thread deleted" : "Jutulõng on kustutatud",
|
||||
"Reply deleted" : "Vastus on kustutatud",
|
||||
@@ -271,6 +281,8 @@ OC.L10N.register(
|
||||
"Configure how you receive notifications" : "Seadista endale teavituste saatmise viisi",
|
||||
"Auto-subscribe to threads I create" : "Telli minu loodud jutulõngad automaatselt",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Kui see eelistus on kasutusel, siis saad automaatselt teavituse sinu loodud jutulõngade vastuste puhul",
|
||||
"Auto-subscribe to threads I reply to" : "Telli minu poolt vastatud jutulõngad automaatselt",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "Kui see eelistus on kasutusel, siis saad automaatselt teavituse nende jutulõngade kohta, kuhu oled vastuse kirjutanud",
|
||||
"Files" : "Failid",
|
||||
"Configure file upload settings" : "Seadista failide üleslaadimise seadistusi",
|
||||
"Upload directory" : "Üleslaadimiskaust",
|
||||
@@ -294,15 +306,24 @@ OC.L10N.register(
|
||||
"Disabled BBCodes" : "BBCode'id, mis pole kasutusel",
|
||||
"These BBCode tags are currently inactive" : "Need BBCode'id pole hetkel kasutusel",
|
||||
"No enabled BBCodes" : "Ühtegi BBCode'i pole kasutusel",
|
||||
"Parses Inner" : "Töötleb sisemist sisu",
|
||||
"Delete BBCode" : "Kustuta BBCode",
|
||||
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Kas oled kindel, et soovid kustutada BBCode'i sildi [{tag}]?",
|
||||
"This action cannot be undone." : "Seda tegevust ei saa tagasi võtta.",
|
||||
"Edit BBCode" : "Muuda BBCode'i",
|
||||
"Tag" : "Silt",
|
||||
"e.g., b, i, url, color" : "näiteks b, i, url, värv",
|
||||
"The BBCode tag name (without brackets)" : "BBCode'i sildi nimi (ilma nurksulgudeta)",
|
||||
"HTML replacement" : "Asendus HTML-is",
|
||||
"e.g., {strongStart}{content}{strongEnd}" : "nt. {strongStart}{content}{strongEnd}",
|
||||
"Use {content} for the tag content and {paramName} for parameters" : "Kasuta „{content}“ sildi sisu jaoksja „{paramName}“ parameetrite jaoks",
|
||||
"e.g., {tagStart}Hello world{tagEnd}" : "nt. {tagStart}Tere maailm{tagEnd}",
|
||||
"Example usage of this BBCode tag" : "Selle BBCode'i sildi kasutuse näide",
|
||||
"Description" : "Kirjeldus",
|
||||
"Brief description of what this BBCode does" : "Lühikirjeldus, mida see BBCode teeb",
|
||||
"Enabled" : "Sisse lülitatud",
|
||||
"Parse inner content" : "Töötle sisemist sisu („inner content“)",
|
||||
"If enabled, BBCode tags inside this tag will also be parsed" : "Selle eelistuse kasutamisel ka selle sildi sees asuvad BBCode'i sildid kuuluvad töötlemisele",
|
||||
"Create category" : "Lisa kategooria",
|
||||
"Edit category" : "Muuda kategooriat",
|
||||
"Configure category details" : "Seadista kategooria üksikasju",
|
||||
|
||||
@@ -18,7 +18,6 @@
|
||||
"Hidden content" : "Peidetud sisu",
|
||||
"Spoilers" : "Spoilerid/tujurikkujad",
|
||||
"Attachment" : "Manus",
|
||||
"Welcome to Nextcloud Forums" : "Tere tulemast kasutama Nextcloudi Foorumit",
|
||||
"Welcome to the Nextcloud Forums!" : "Tere tulemast kasutama rakendust Nextcloudi Foorumid!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "See on kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris. Siin saad arutleda erinevatel teemadel, jagada mõtteid ning osaleda ühistöös.",
|
||||
"Features:" : "Foorumi võimalused:",
|
||||
@@ -34,6 +33,7 @@
|
||||
"Italic text" : "Tekst kaldkirjas",
|
||||
"Underlined text" : "Allajoonitud tekst",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Alusta uut keskustelu või vasta olemasolevale jutulõngale. Soovime sulle toimekat suhtlust!",
|
||||
"Welcome to Nextcloud Forums" : "Tere tulemast kasutama Nextcloudi Foorumit",
|
||||
"Forum" : "Foorum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} uus vastus jutulõngas {thread}","{count} uut vastust jutulõngas {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mainis sind jutulõngas „{thread}“",
|
||||
@@ -130,11 +130,19 @@
|
||||
"Quote reply" : "Tsiteeri vastust",
|
||||
"Edit" : "Muuda",
|
||||
"Delete" : "Kustuta",
|
||||
"View edit history" : "Vaata muudatuste ajalugu",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Kas sa oled kindel, et soovid selle postituse kustutada? Seda tegevust ei saa tagasi pöörata.",
|
||||
"Unread" : "Lugemata",
|
||||
"Edit your reply …" : "Muuda oma vastust…",
|
||||
"Save" : "Salvesta",
|
||||
"Are you sure you want to discard your changes?" : "Kas sa oled kindel, et soovid oma muudatustest loobuda?",
|
||||
"Edit history" : "Muudatuste ajalugu",
|
||||
"Loading history …" : "Laadin muudatuste ajalugu…",
|
||||
"This post has no edit history." : "Sellel postitusel puudub muudatuste ajalugu.",
|
||||
"Current version" : "Hetkeversioon",
|
||||
"Edited by" : "Muutja",
|
||||
"Failed to load edit history" : "Muudatuste ajaloo laadimine ei õnnestunud",
|
||||
"Version {index}" : "Versioon {index}",
|
||||
"Add reaction" : "Lisa reaktsioon",
|
||||
"React with {emoji}" : "Reageeri {emoji} emojiga",
|
||||
"You reacted with {emoji}" : "Sa reageerisid {emoji} emojiga",
|
||||
@@ -250,7 +258,9 @@
|
||||
"Thread moved successfully" : "Jutulõnga ümbertõstmine õnnestus",
|
||||
"No thread ID or slug provided" : "Ühtegi jutulõnga tunnust või aadressi lõputunnust pole lisatud",
|
||||
"Failed to load replies" : "Vastuste laadimine ei õnnestunud",
|
||||
"Thread updated" : "Jutulõng on uuendatud",
|
||||
"Reply updated" : "Vastus on muudetud",
|
||||
"Failed to update thread" : "Jutulõnga uuendamine ei õnnestunud",
|
||||
"Failed to update reply" : "Vastuse muutmine ei õnnestunud",
|
||||
"Thread deleted" : "Jutulõng on kustutatud",
|
||||
"Reply deleted" : "Vastus on kustutatud",
|
||||
@@ -269,6 +279,8 @@
|
||||
"Configure how you receive notifications" : "Seadista endale teavituste saatmise viisi",
|
||||
"Auto-subscribe to threads I create" : "Telli minu loodud jutulõngad automaatselt",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Kui see eelistus on kasutusel, siis saad automaatselt teavituse sinu loodud jutulõngade vastuste puhul",
|
||||
"Auto-subscribe to threads I reply to" : "Telli minu poolt vastatud jutulõngad automaatselt",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "Kui see eelistus on kasutusel, siis saad automaatselt teavituse nende jutulõngade kohta, kuhu oled vastuse kirjutanud",
|
||||
"Files" : "Failid",
|
||||
"Configure file upload settings" : "Seadista failide üleslaadimise seadistusi",
|
||||
"Upload directory" : "Üleslaadimiskaust",
|
||||
@@ -292,15 +304,24 @@
|
||||
"Disabled BBCodes" : "BBCode'id, mis pole kasutusel",
|
||||
"These BBCode tags are currently inactive" : "Need BBCode'id pole hetkel kasutusel",
|
||||
"No enabled BBCodes" : "Ühtegi BBCode'i pole kasutusel",
|
||||
"Parses Inner" : "Töötleb sisemist sisu",
|
||||
"Delete BBCode" : "Kustuta BBCode",
|
||||
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Kas oled kindel, et soovid kustutada BBCode'i sildi [{tag}]?",
|
||||
"This action cannot be undone." : "Seda tegevust ei saa tagasi võtta.",
|
||||
"Edit BBCode" : "Muuda BBCode'i",
|
||||
"Tag" : "Silt",
|
||||
"e.g., b, i, url, color" : "näiteks b, i, url, värv",
|
||||
"The BBCode tag name (without brackets)" : "BBCode'i sildi nimi (ilma nurksulgudeta)",
|
||||
"HTML replacement" : "Asendus HTML-is",
|
||||
"e.g., {strongStart}{content}{strongEnd}" : "nt. {strongStart}{content}{strongEnd}",
|
||||
"Use {content} for the tag content and {paramName} for parameters" : "Kasuta „{content}“ sildi sisu jaoksja „{paramName}“ parameetrite jaoks",
|
||||
"e.g., {tagStart}Hello world{tagEnd}" : "nt. {tagStart}Tere maailm{tagEnd}",
|
||||
"Example usage of this BBCode tag" : "Selle BBCode'i sildi kasutuse näide",
|
||||
"Description" : "Kirjeldus",
|
||||
"Brief description of what this BBCode does" : "Lühikirjeldus, mida see BBCode teeb",
|
||||
"Enabled" : "Sisse lülitatud",
|
||||
"Parse inner content" : "Töötle sisemist sisu („inner content“)",
|
||||
"If enabled, BBCode tags inside this tag will also be parsed" : "Selle eelistuse kasutamisel ka selle sildi sees asuvad BBCode'i sildid kuuluvad töötlemisele",
|
||||
"Create category" : "Lisa kategooria",
|
||||
"Edit category" : "Muuda kategooriat",
|
||||
"Configure category details" : "Seadista kategooria üksikasju",
|
||||
|
||||
@@ -42,6 +42,7 @@ OC.L10N.register(
|
||||
"Delete" : "Ezabatu",
|
||||
"Unread" : "Irakurri gabe",
|
||||
"Save" : "Gorde",
|
||||
"Current version" : "Uneko bertsioa",
|
||||
"React with {emoji}" : "Erreakzionatu {emoji}-(r)ekin",
|
||||
"Uncategorized" : "Kategoria gabe",
|
||||
"Views" : "Ikuspegiak",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"Delete" : "Ezabatu",
|
||||
"Unread" : "Irakurri gabe",
|
||||
"Save" : "Gorde",
|
||||
"Current version" : "Uneko bertsioa",
|
||||
"React with {emoji}" : "Erreakzionatu {emoji}-(r)ekin",
|
||||
"Uncategorized" : "Kategoria gabe",
|
||||
"Views" : "Ikuspegiak",
|
||||
|
||||
@@ -38,6 +38,7 @@ OC.L10N.register(
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "Unread",
|
||||
"Save" : "ذخیره",
|
||||
"Current version" : "نسخه فعلی",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "دستهبندی نشده",
|
||||
"Views" : "بازدیدها",
|
||||
|
||||
@@ -36,6 +36,7 @@
|
||||
"Delete" : "حذف",
|
||||
"Unread" : "Unread",
|
||||
"Save" : "ذخیره",
|
||||
"Current version" : "نسخه فعلی",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "دستهبندی نشده",
|
||||
"Views" : "بازدیدها",
|
||||
|
||||
@@ -41,6 +41,7 @@ OC.L10N.register(
|
||||
"Delete" : "Poista",
|
||||
"Unread" : "Lukematon",
|
||||
"Save" : "Tallenna",
|
||||
"Current version" : "Nykyinen versio",
|
||||
"React with {emoji}" : "Reagoi emojilla {emoji}",
|
||||
"Uncategorized" : "Luokittelematon",
|
||||
"Views" : "Näkymät",
|
||||
|
||||
@@ -39,6 +39,7 @@
|
||||
"Delete" : "Poista",
|
||||
"Unread" : "Lukematon",
|
||||
"Save" : "Tallenna",
|
||||
"Current version" : "Nykyinen versio",
|
||||
"React with {emoji}" : "Reagoi emojilla {emoji}",
|
||||
"Uncategorized" : "Luokittelematon",
|
||||
"Views" : "Näkymät",
|
||||
|
||||
@@ -44,6 +44,7 @@ OC.L10N.register(
|
||||
"Delete" : "Supprimer",
|
||||
"Unread" : "Non lu",
|
||||
"Save" : "Enregistrer",
|
||||
"Current version" : "Version actuelle",
|
||||
"React with {emoji}" : "Réagir avec {emoji}",
|
||||
"Uncategorized" : "Non catégorisé",
|
||||
"_%n reply_::_%n replies_" : ["%n réponse","%n réponses","%n réponses"],
|
||||
|
||||
@@ -42,6 +42,7 @@
|
||||
"Delete" : "Supprimer",
|
||||
"Unread" : "Non lu",
|
||||
"Save" : "Enregistrer",
|
||||
"Current version" : "Version actuelle",
|
||||
"React with {emoji}" : "Réagir avec {emoji}",
|
||||
"Uncategorized" : "Non catégorisé",
|
||||
"_%n reply_::_%n replies_" : ["%n réponse","%n réponses","%n réponses"],
|
||||
|
||||
14
l10n/ga.js
14
l10n/ga.js
@@ -20,7 +20,6 @@ OC.L10N.register(
|
||||
"Hidden content" : "Ábhar i bhfolach",
|
||||
"Spoilers" : "Spoiléirí",
|
||||
"Attachment" : "Ceangaltán",
|
||||
"Welcome to Nextcloud Forums" : "Fáilte go Fóraim Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Fáilte go dtí Fóraim Nextcloud!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Is fóram pobail-thiomáinte é seo atá tógtha isteach i do chás Nextcloud. Anseo is féidir leat topaicí a phlé, smaointe a roinnt agus comhoibriú le húsáideoirí eile.",
|
||||
"Features:" : "Gnéithe:",
|
||||
@@ -36,6 +35,7 @@ OC.L10N.register(
|
||||
"Italic text" : "Téacs iodálach",
|
||||
"Underlined text" : "Téacs a bhfuil líne faoi",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Ná bíodh drogall ort plé nua a thosú nó freagra a thabhairt ar shnáitheanna atá ann cheana féin. Go n-éirí leat ag postáil!",
|
||||
"Welcome to Nextcloud Forums" : "Fáilte go Fóraim Nextcloud",
|
||||
"Forum" : "Fóram",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count}freagra nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}"],
|
||||
"{user} mentioned you in {thread}" : "Luaigh {user} thú i {thread}",
|
||||
@@ -133,11 +133,19 @@ OC.L10N.register(
|
||||
"Quote reply" : "Freagra luachana",
|
||||
"Edit" : "Cuir in eagar",
|
||||
"Delete" : "Scrios",
|
||||
"View edit history" : "Féach ar stair eagarthóireachta",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "An bhfuil tú cinnte gur mian leat an post seo a scriosadh? Ní féidir an gníomh seo a chealú.",
|
||||
"Unread" : "Neamhléite",
|
||||
"Edit your reply …" : "Cuir d’fhreagra in eagar …",
|
||||
"Save" : "Sábháil",
|
||||
"Are you sure you want to discard your changes?" : "An bhfuil tú cinnte gur mian leat do chuid athruithe a chaitheamh amach?",
|
||||
"Edit history" : "Stair eagarthóireachta",
|
||||
"Loading history …" : "Stair á luchtú …",
|
||||
"This post has no edit history." : "Níl aon stair eagarthóireachta ag an bpost seo.",
|
||||
"Current version" : "Leagan reatha",
|
||||
"Edited by" : "Eagarthóireacht déanta ag",
|
||||
"Failed to load edit history" : "Theip ar stair eagarthóireachta a lódáil",
|
||||
"Version {index}" : "Leagan {index}",
|
||||
"Add reaction" : "Cuir imoibriú leis",
|
||||
"React with {emoji}" : "Freagair le {emoji}",
|
||||
"You reacted with {emoji}" : "D'imoibrigh tú le {emoji}",
|
||||
@@ -253,7 +261,9 @@ OC.L10N.register(
|
||||
"Thread moved successfully" : "Bogadh an snáithe go rathúil",
|
||||
"No thread ID or slug provided" : "Níor soláthraíodh aon ID snáithe ná slug",
|
||||
"Failed to load replies" : "Theip ar lódáil na freagraí",
|
||||
"Thread updated" : "Nuashonraithe ag an snáithe",
|
||||
"Reply updated" : "Freagra nuashonraithe",
|
||||
"Failed to update thread" : "Theip ar an snáithe a nuashonrú",
|
||||
"Failed to update reply" : "Theip ar an bhfreagra a nuashonrú",
|
||||
"Thread deleted" : "Scriosadh an snáithe",
|
||||
"Reply deleted" : "Scriosadh an freagra",
|
||||
@@ -272,6 +282,8 @@ OC.L10N.register(
|
||||
"Configure how you receive notifications" : "Cumraigh conas a fhaigheann tú fógraí",
|
||||
"Auto-subscribe to threads I create" : "Liostáil go huathoibríoch le snáitheanna a chruthaím",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Nuair a bheidh sé cumasaithe, gheobhaidh tú fógraí go huathoibríoch le haghaidh freagraí ar shnáitheanna a chruthaíonn tú",
|
||||
"Auto-subscribe to threads I reply to" : "Liostáil go huathoibríoch le snáitheanna a bhfreagraím orthu",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "Nuair a bheidh sé cumasaithe, gheobhaidh tú fógraí go huathoibríoch faoi fhreagraí nua i snáitheanna ar fhreagair tú iad",
|
||||
"Files" : "Comhaid",
|
||||
"Configure file upload settings" : "Cumraigh socruithe uaslódála comhad",
|
||||
"Upload directory" : "Uaslódáil eolaire",
|
||||
|
||||
14
l10n/ga.json
14
l10n/ga.json
@@ -18,7 +18,6 @@
|
||||
"Hidden content" : "Ábhar i bhfolach",
|
||||
"Spoilers" : "Spoiléirí",
|
||||
"Attachment" : "Ceangaltán",
|
||||
"Welcome to Nextcloud Forums" : "Fáilte go Fóraim Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Fáilte go dtí Fóraim Nextcloud!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Is fóram pobail-thiomáinte é seo atá tógtha isteach i do chás Nextcloud. Anseo is féidir leat topaicí a phlé, smaointe a roinnt agus comhoibriú le húsáideoirí eile.",
|
||||
"Features:" : "Gnéithe:",
|
||||
@@ -34,6 +33,7 @@
|
||||
"Italic text" : "Téacs iodálach",
|
||||
"Underlined text" : "Téacs a bhfuil líne faoi",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Ná bíodh drogall ort plé nua a thosú nó freagra a thabhairt ar shnáitheanna atá ann cheana féin. Go n-éirí leat ag postáil!",
|
||||
"Welcome to Nextcloud Forums" : "Fáilte go Fóraim Nextcloud",
|
||||
"Forum" : "Fóram",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count}freagra nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}","{count} freagraí nua i {thread}"],
|
||||
"{user} mentioned you in {thread}" : "Luaigh {user} thú i {thread}",
|
||||
@@ -131,11 +131,19 @@
|
||||
"Quote reply" : "Freagra luachana",
|
||||
"Edit" : "Cuir in eagar",
|
||||
"Delete" : "Scrios",
|
||||
"View edit history" : "Féach ar stair eagarthóireachta",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "An bhfuil tú cinnte gur mian leat an post seo a scriosadh? Ní féidir an gníomh seo a chealú.",
|
||||
"Unread" : "Neamhléite",
|
||||
"Edit your reply …" : "Cuir d’fhreagra in eagar …",
|
||||
"Save" : "Sábháil",
|
||||
"Are you sure you want to discard your changes?" : "An bhfuil tú cinnte gur mian leat do chuid athruithe a chaitheamh amach?",
|
||||
"Edit history" : "Stair eagarthóireachta",
|
||||
"Loading history …" : "Stair á luchtú …",
|
||||
"This post has no edit history." : "Níl aon stair eagarthóireachta ag an bpost seo.",
|
||||
"Current version" : "Leagan reatha",
|
||||
"Edited by" : "Eagarthóireacht déanta ag",
|
||||
"Failed to load edit history" : "Theip ar stair eagarthóireachta a lódáil",
|
||||
"Version {index}" : "Leagan {index}",
|
||||
"Add reaction" : "Cuir imoibriú leis",
|
||||
"React with {emoji}" : "Freagair le {emoji}",
|
||||
"You reacted with {emoji}" : "D'imoibrigh tú le {emoji}",
|
||||
@@ -251,7 +259,9 @@
|
||||
"Thread moved successfully" : "Bogadh an snáithe go rathúil",
|
||||
"No thread ID or slug provided" : "Níor soláthraíodh aon ID snáithe ná slug",
|
||||
"Failed to load replies" : "Theip ar lódáil na freagraí",
|
||||
"Thread updated" : "Nuashonraithe ag an snáithe",
|
||||
"Reply updated" : "Freagra nuashonraithe",
|
||||
"Failed to update thread" : "Theip ar an snáithe a nuashonrú",
|
||||
"Failed to update reply" : "Theip ar an bhfreagra a nuashonrú",
|
||||
"Thread deleted" : "Scriosadh an snáithe",
|
||||
"Reply deleted" : "Scriosadh an freagra",
|
||||
@@ -270,6 +280,8 @@
|
||||
"Configure how you receive notifications" : "Cumraigh conas a fhaigheann tú fógraí",
|
||||
"Auto-subscribe to threads I create" : "Liostáil go huathoibríoch le snáitheanna a chruthaím",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Nuair a bheidh sé cumasaithe, gheobhaidh tú fógraí go huathoibríoch le haghaidh freagraí ar shnáitheanna a chruthaíonn tú",
|
||||
"Auto-subscribe to threads I reply to" : "Liostáil go huathoibríoch le snáitheanna a bhfreagraím orthu",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "Nuair a bheidh sé cumasaithe, gheobhaidh tú fógraí go huathoibríoch faoi fhreagraí nua i snáitheanna ar fhreagair tú iad",
|
||||
"Files" : "Comhaid",
|
||||
"Configure file upload settings" : "Cumraigh socruithe uaslódála comhad",
|
||||
"Upload directory" : "Uaslódáil eolaire",
|
||||
|
||||
18
l10n/gl.js
18
l10n/gl.js
@@ -20,7 +20,6 @@ OC.L10N.register(
|
||||
"Hidden content" : "Contido agochado",
|
||||
"Spoilers" : "Destripes",
|
||||
"Attachment" : "Anexo",
|
||||
"Welcome to Nextcloud Forums" : "Dámoslle a benvida a os Foros de Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Dámoslle a benvida a os Foros de Nextcloud!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Este é un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud. Aquí pode debater temas, compartir ideas e colaborar con outros usuarios.",
|
||||
"Features:" : "Funcionalidades:",
|
||||
@@ -36,6 +35,7 @@ OC.L10N.register(
|
||||
"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!",
|
||||
"Welcome to Nextcloud Forums" : "Dámoslle a benvida a os Foros de Nextcloud",
|
||||
"Forum" : "Foro",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta en {thread}","{count} novas respostas en {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mencionouno a Vde. en {thread}",
|
||||
@@ -93,7 +93,7 @@ OC.L10N.register(
|
||||
"Pick file from Nextcloud" : "Seleccionar un ficheiro en Nextcloud",
|
||||
"Upload file to Nextcloud" : "Enviar un ficheiro a Nextcloud",
|
||||
"Uploading file …" : "Enviando o ficheiro…",
|
||||
"Upload failed" : "Produciuse algún fallo no envío",
|
||||
"Upload failed" : "Produciuse un fallo no envío",
|
||||
"Close" : "Pechar",
|
||||
"Pick a file to attach" : "Escolla un ficheiro para anexar",
|
||||
"Failed to upload file" : "Produciuse un fallo ao enviar o ficheiro",
|
||||
@@ -133,11 +133,19 @@ OC.L10N.register(
|
||||
"Quote reply" : "Responder á cita",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"View edit history" : "Ver o historial de edicións",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Confirma que quere eliminar esta publicación? Esta acción non é posíbel desfacela.",
|
||||
"Unread" : "Sen ler",
|
||||
"Edit your reply …" : "Edite a súa resposta…",
|
||||
"Save" : "Gardar",
|
||||
"Are you sure you want to discard your changes?" : "Confirma que quere desbotar os seus cambios?",
|
||||
"Edit history" : "Historial da edicións",
|
||||
"Loading history …" : "Cargando o historial…",
|
||||
"This post has no edit history." : "Esta publicación non ten historial de edicións.",
|
||||
"Current version" : "Versión actual",
|
||||
"Edited by" : "Editada por",
|
||||
"Failed to load edit history" : "Produciuse un fallo ao cargar o historial de edicións",
|
||||
"Version {index}" : "Versión {index}",
|
||||
"Add reaction" : "Engadir reacción",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"You reacted with {emoji}" : "Vde. reaccionou con {emoji}",
|
||||
@@ -253,7 +261,9 @@ OC.L10N.register(
|
||||
"Thread moved successfully" : "O fío foi movido satisfactoriamente",
|
||||
"No thread ID or slug provided" : "Non foi fornecido ningún ID ou URL semántico",
|
||||
"Failed to load replies" : "Produciuse un fallo ao cargar as respostas",
|
||||
"Thread updated" : "Fío actualizado",
|
||||
"Reply updated" : "Resposta actualizada",
|
||||
"Failed to update thread" : "Produciuse un fallo ao actualizar o fío",
|
||||
"Failed to update reply" : "Produciuse un fallo ao actualizar a resposta",
|
||||
"Thread deleted" : "Fío eliminado",
|
||||
"Reply deleted" : "Resposta eliminada",
|
||||
@@ -270,8 +280,10 @@ OC.L10N.register(
|
||||
"Error loading preferences" : "Produciuse un erro ao cargar as preferencias",
|
||||
"Notifications" : "Notificacións",
|
||||
"Configure how you receive notifications" : "Configure como quere recibir as notificacións",
|
||||
"Auto-subscribe to threads I create" : "Subscríbirse automaticamente aos fíos que creou",
|
||||
"Auto-subscribe to threads I create" : "Subscribirme automaticamente aos fíos que creo",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Cando estea activado, recibirá automaticamente notificacións das respostas aos fíos que cree",
|
||||
"Auto-subscribe to threads I reply to" : "Subscribirme automaticamente aos fíos que respondo",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "Cando estea activado, recibirá automaticamente notificacións de novas respostas nos fíos aos que respondeu",
|
||||
"Files" : "Ficheiros",
|
||||
"Configure file upload settings" : "Configurar os axustes de envío de ficheiros",
|
||||
"Upload directory" : "Directorio ao que enviar",
|
||||
|
||||
18
l10n/gl.json
18
l10n/gl.json
@@ -18,7 +18,6 @@
|
||||
"Hidden content" : "Contido agochado",
|
||||
"Spoilers" : "Destripes",
|
||||
"Attachment" : "Anexo",
|
||||
"Welcome to Nextcloud Forums" : "Dámoslle a benvida a os Foros de Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Dámoslle a benvida a os Foros de Nextcloud!",
|
||||
"This is a community-driven forum built right into your Nextcloud instance. Here you can discuss topics, share ideas and collaborate with other users." : "Este é un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud. Aquí pode debater temas, compartir ideas e colaborar con outros usuarios.",
|
||||
"Features:" : "Funcionalidades:",
|
||||
@@ -34,6 +33,7 @@
|
||||
"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!",
|
||||
"Welcome to Nextcloud Forums" : "Dámoslle a benvida a os Foros de Nextcloud",
|
||||
"Forum" : "Foro",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta en {thread}","{count} novas respostas en {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mencionouno a Vde. en {thread}",
|
||||
@@ -91,7 +91,7 @@
|
||||
"Pick file from Nextcloud" : "Seleccionar un ficheiro en Nextcloud",
|
||||
"Upload file to Nextcloud" : "Enviar un ficheiro a Nextcloud",
|
||||
"Uploading file …" : "Enviando o ficheiro…",
|
||||
"Upload failed" : "Produciuse algún fallo no envío",
|
||||
"Upload failed" : "Produciuse un fallo no envío",
|
||||
"Close" : "Pechar",
|
||||
"Pick a file to attach" : "Escolla un ficheiro para anexar",
|
||||
"Failed to upload file" : "Produciuse un fallo ao enviar o ficheiro",
|
||||
@@ -131,11 +131,19 @@
|
||||
"Quote reply" : "Responder á cita",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Eliminar",
|
||||
"View edit history" : "Ver o historial de edicións",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Confirma que quere eliminar esta publicación? Esta acción non é posíbel desfacela.",
|
||||
"Unread" : "Sen ler",
|
||||
"Edit your reply …" : "Edite a súa resposta…",
|
||||
"Save" : "Gardar",
|
||||
"Are you sure you want to discard your changes?" : "Confirma que quere desbotar os seus cambios?",
|
||||
"Edit history" : "Historial da edicións",
|
||||
"Loading history …" : "Cargando o historial…",
|
||||
"This post has no edit history." : "Esta publicación non ten historial de edicións.",
|
||||
"Current version" : "Versión actual",
|
||||
"Edited by" : "Editada por",
|
||||
"Failed to load edit history" : "Produciuse un fallo ao cargar o historial de edicións",
|
||||
"Version {index}" : "Versión {index}",
|
||||
"Add reaction" : "Engadir reacción",
|
||||
"React with {emoji}" : "Reaccionar con {emoji}",
|
||||
"You reacted with {emoji}" : "Vde. reaccionou con {emoji}",
|
||||
@@ -251,7 +259,9 @@
|
||||
"Thread moved successfully" : "O fío foi movido satisfactoriamente",
|
||||
"No thread ID or slug provided" : "Non foi fornecido ningún ID ou URL semántico",
|
||||
"Failed to load replies" : "Produciuse un fallo ao cargar as respostas",
|
||||
"Thread updated" : "Fío actualizado",
|
||||
"Reply updated" : "Resposta actualizada",
|
||||
"Failed to update thread" : "Produciuse un fallo ao actualizar o fío",
|
||||
"Failed to update reply" : "Produciuse un fallo ao actualizar a resposta",
|
||||
"Thread deleted" : "Fío eliminado",
|
||||
"Reply deleted" : "Resposta eliminada",
|
||||
@@ -268,8 +278,10 @@
|
||||
"Error loading preferences" : "Produciuse un erro ao cargar as preferencias",
|
||||
"Notifications" : "Notificacións",
|
||||
"Configure how you receive notifications" : "Configure como quere recibir as notificacións",
|
||||
"Auto-subscribe to threads I create" : "Subscríbirse automaticamente aos fíos que creou",
|
||||
"Auto-subscribe to threads I create" : "Subscribirme automaticamente aos fíos que creo",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Cando estea activado, recibirá automaticamente notificacións das respostas aos fíos que cree",
|
||||
"Auto-subscribe to threads I reply to" : "Subscribirme automaticamente aos fíos que respondo",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "Cando estea activado, recibirá automaticamente notificacións de novas respostas nos fíos aos que respondeu",
|
||||
"Files" : "Ficheiros",
|
||||
"Configure file upload settings" : "Configurar os axustes de envío de ficheiros",
|
||||
"Upload directory" : "Directorio ao que enviar",
|
||||
|
||||
129
l10n/he.js
129
l10n/he.js
@@ -1,14 +1,14 @@
|
||||
OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Admin" : "מנהל",
|
||||
"Administrator role with full permissions" : "תפקיד מנהל עם הרשאות מלאות",
|
||||
"Admin" : "אדמין",
|
||||
"Administrator role with full permissions" : "תפקיד אדמין עם הרשאות מלאות",
|
||||
"Moderator" : "מפקח",
|
||||
"Moderator role with elevated permissions" : "תפקיד מפקח עם הרשאות מוגבהות",
|
||||
"User" : "משתמש",
|
||||
"Default user role with basic permissions" : "תפקיד משתמש רגיל עם הרשאות בסיסיות",
|
||||
"Default user role with basic permissions" : "תפקיד משתמש ברירת מחדל עם הרשאות בסיסיות",
|
||||
"Guest" : "אורח",
|
||||
"Guest role for unauthenticated users with read-only access" : "תפקיד אורח עם הרשאות גישה לקריאה בלבד",
|
||||
"Guest role for unauthenticated users with read-only access" : "תפקיד אורח למשתמשים לא-מחוברים עם הרשאות גישה לקריאה בלבד",
|
||||
"General" : "כללי",
|
||||
"General discussion categories" : "קטגוריות לדיונים כלליים",
|
||||
"General discussions" : "דיונים כלליים",
|
||||
@@ -20,24 +20,29 @@ OC.L10N.register(
|
||||
"Hidden content" : "תוכן מוסתר",
|
||||
"Spoilers" : "ספוילרים",
|
||||
"Attachment" : "קובץ מצורף",
|
||||
"Welcome to Nextcloud Forums" : "ברוכים הבאים לפורום Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "ברוכים הבאים לפורום של 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." : "זהו פורום מונחה-קהילה מובנה ישירות ל-Nextcloud שלך. כאן ניתן להתדיין בנושאים שונים, לחלוק רעיונות ולשתף פעולה עם משתמשים אחרים.",
|
||||
"Features:" : "יכולות:",
|
||||
"Create and reply to threads" : "יצירה והגבה לשרשורים",
|
||||
"Organize discussions by categories" : "אירגון דיונים על-פי קטגוריות",
|
||||
"Use BBCode for rich text formatting" : "השתמשו ב-BBCode לפורמט טקסט עשיר",
|
||||
"Attach files from your Nextcloud storage" : "צירוף קבצים מאחסון ה-Nextcloud שלך",
|
||||
"React to posts" : "תגובות לשרשורים",
|
||||
"Track read/unread threads" : "מעקב אחר שרשורים שנקראו\\לא נקראו",
|
||||
"BBCode examples:" : "דוגמאות BBCode:",
|
||||
"Bold text" : "טקסט בולט",
|
||||
"Use %1$stext%2$s" : "השתמשו ב%1$sטקסט%2$s",
|
||||
"Italic text" : "טקסט מוטה",
|
||||
"Underlined text" : "טקסט בקו תחתון",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "הרגישו חופשי להתחיל שרשור חדש או להגיב לשרשורים קיימים. כתיבה מהנה!",
|
||||
"Welcome to Nextcloud Forums" : "ברוכים הבאים לפורום Nextcloud",
|
||||
"Forum" : "פורום",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["תגובה {count} חדשה ב-{thread}","{count} תגובות חדשות ב-{thread}","{count} תגובות חדשות ב-{thread}"],
|
||||
"{user} mentioned you in {thread}" : "אוזכרת על ידי {user}בנושא {thread}",
|
||||
"Welcome to the forum!" : "ברוכים הבאים לפורום!",
|
||||
"Deleted user" : "משתמש מחוק",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "פורום מונחה-קהילה מובנה ישירות להתקנת ה Nextcloud שלכם.",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "צרו דיונים, חלקו רעיונות ושתפו פעולה עם משתמשים ישירות ב-Nextcloud.\n\n**⚠️ הודעה לגבי שלב פיתוח מוקדם:**\nהיישום הזה נמצא בשלבי פיתוח מוקדמים. בעוד היישום שמיש, אתם עלולים להיתקל בבאגים או יכולות לא שלמות. נא לדווח בעיות ב-GitHub ולשקול לגבות את המידע שלכם באופן תכוף.\n\n**יכולות מפתח:**\n- **דיונים מונחי נושאים** - צרו והגיבו לנושאי דיון\n- **ארגון קטגוריות** - צרו מבנה לפורום שלכם עם קטגוריות וכותרות הניתנות להתאמה\n- **פורמט טקסט עשיר** - השתמשו ב-BBCode לפרמוט של פוסטים עם הדגשות, הטיות, קישורים, תמונות, קטעי קוד ועוד\n- **צירוף קבצים** - צרפו קבצים מתוך ה-Nextcloud שלכם לפוסטים\n- **תגובונים לפוסטים** - הגיבו לפוסטים עם תגובוני אמוג'י\n- **מעקב נקרא\\לא נקרא** - עקבו אחרי סטטוס הקריאה של פוסטים\n- **חיפוש** - מצאו דיונים מהר בעזרת חיפוש מובנה\n- **פרופילי משתמשים** - צפו בהיסטוריה וסטטיסטיקות של משתמשים\n- **הרשאות מבוססי תפקיד** - שלטו בגישה ומודרציה עם תפקידים גמישים\n- **גישה לאורחים**: גישת רשות ציבורית למשתמשים לא מחוברים עם הרשאות ניתנות להתאמה\n- **כלי ניהול** - נהלו קטגוריות, תפקידים, BBCode והגדרות פורום\n- **כלי מודרציה** - נעלו, הדביקו, ונהלו נושאים ותגובות\n\n**מושלם עבור:**\n- דיוני צוותים ושיתוף פעולה\n- פורום קהילתי\n- ערוצי תמיכה\n- ניהול ידע\n- דיוני פרוייקטים\n- תקשורת פנימית\n\nהפורום מתממשק באופן ישיר ל-Nextcloud שלכם, ומשתמש במשתמשים קיימים וקבוצות קיימות לניהול גישה והתחברות.",
|
||||
"Loading …" : "בטעינה…",
|
||||
"Search" : "חיפוש",
|
||||
"Home" : "בית",
|
||||
@@ -48,6 +53,7 @@ OC.L10N.register(
|
||||
"Users" : "משתמשים",
|
||||
"Roles" : "תפקידים",
|
||||
"Categories" : "קטגוריות",
|
||||
"BBCodes" : "BBCodes",
|
||||
"Expand" : "הרחבה",
|
||||
"Collapse" : "קיווץ",
|
||||
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}נא לשים לב:{bEnd} קבצים מצורפים יהיו זמינים לכל מי שנמצא בפורום, ללא התחשבות בהגדרות השיתוף של הקובץ.",
|
||||
@@ -73,8 +79,16 @@ OC.L10N.register(
|
||||
"List" : "רשימה",
|
||||
"List item within a list" : "פריט רשימה בתוך רשימה",
|
||||
"List item within a list (alias)" : "פריט רשימה בתוך רשימה (חלופה)",
|
||||
"BBCode help" : "עזרה עם BBCode",
|
||||
"Built-in BBCodes" : "BBCode מובנים",
|
||||
"These BBCodes are available by default." : "ה-BBCode הללו זמינים כברירת מחדל.",
|
||||
"Custom BBCodes" : "BBCode מותאמים אישית",
|
||||
"These BBCodes are custom to this forum and configured by administrators." : "ה-BBCodes הללו מותאמים לפורום הזה וניתנים להגדרה על ידי צוות הניהול.",
|
||||
"Example" : "דוגמה",
|
||||
"Replacement" : "החלפה",
|
||||
"Loading custom BBCodes …" : "טוען BBCodes מותאמים …",
|
||||
"No custom BBCodes configured." : "אין BBCodes מותאמים מוגדרים.",
|
||||
"Failed to load custom BBCodes" : "כשלון בטעינת BBCodes מותאמים",
|
||||
"Insert emoji" : "הכנסת אימוג'י",
|
||||
"Pick file from Nextcloud" : "בחירת קובץ מ-Nextcloud",
|
||||
"Upload file to Nextcloud" : "העלאת קובץ ל-Nextcloud",
|
||||
@@ -84,6 +98,7 @@ OC.L10N.register(
|
||||
"Pick a file to attach" : "בחירת קובץ לצירוף",
|
||||
"Failed to upload file" : "כשלון בהעלאת קובץ",
|
||||
"Threads" : "שרשורים",
|
||||
"Replies" : "תגובות",
|
||||
"No description available" : "תיאור לא זמין",
|
||||
"Create category header" : "יצירת כותרת קטגוריות",
|
||||
"Edit category header" : "עריכת כותרת קטגוריות",
|
||||
@@ -108,25 +123,129 @@ OC.L10N.register(
|
||||
"The page you are looking for could not be found." : "העמוד שחיפשתם לא נמצא.",
|
||||
"Back" : "אחורה",
|
||||
"Go to home" : "חזרה אל דף הבית",
|
||||
"Pagination" : "דפדוף",
|
||||
"First page" : "דף ראשון",
|
||||
"Previous page" : "דף קודם",
|
||||
"Next page" : "דף הבא",
|
||||
"Last page" : "דף אחרון",
|
||||
"Go to page {page}" : "עבור לדף {page}",
|
||||
"Edited" : "נערך",
|
||||
"Quote reply" : "ציטוט בתגובה",
|
||||
"Edit" : "עריכה",
|
||||
"Delete" : "מחיקה",
|
||||
"View edit history" : "צפייה בהיסטוריית עריכה",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "האם אתם בטוחים שתרצו למחוק את הפוסט הזה? הפעולה בלתי ניתנת להפיכה.",
|
||||
"Unread" : "לא נקרא",
|
||||
"Edit your reply …" : "ערכו את תגובתכם …",
|
||||
"Save" : "שמירה",
|
||||
"Are you sure you want to discard your changes?" : "האם אתם בטוחים שתרצו לבטל את השינויים שלכם?",
|
||||
"Edit history" : "היסטוריית עריכה",
|
||||
"Loading history …" : "טוען היסטוריה …",
|
||||
"This post has no edit history." : "לפוסט הזה אין היסטוריית עריכה.",
|
||||
"Current version" : "גרסה נוכחית",
|
||||
"Edited by" : "נערך על ידי",
|
||||
"Failed to load edit history" : "כשלון בטעינת היסטוריית עריכה",
|
||||
"Version {index}" : "גרסה {index}",
|
||||
"Add reaction" : "הוספת תגובון",
|
||||
"React with {emoji}" : "הגיבו עם {emoji}",
|
||||
"You reacted with {emoji}" : "הגבת עם {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["את\\ה ועוד %n אחר הגבתם עם {emoji}","את\\ה ועוד %n אחרים הגבתם עם {emoji}","את\\ה ועוד %n אחרים הגבתם עם {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["אדם אחד הגיב עם {emoji}","%n אנשים הגיבו עם {emoji}","%n אנשים הגיבו עם {emoji}"],
|
||||
"Write your reply …" : "כתבו את תגובתכם …",
|
||||
"Submit reply" : "שליחת תגובה",
|
||||
"Are you sure you want to discard your reply?" : "אתם בטוחים שברצונכם לבטל את התגובה?",
|
||||
"In thread" : "בנושא",
|
||||
"Thread unavailable" : "נושא לא זמין",
|
||||
"Pinned thread" : "נושא מודבק",
|
||||
"Locked thread" : "נושא נעול",
|
||||
"Uncategorized" : "ללא קטגוריה",
|
||||
"_%n reply_::_%n replies_" : ["תגובה אחת","%n תגובות","%n תגובות"],
|
||||
"_%n view_::_%n views_" : ["צפייה אחת","%n צפיות","%n צפיות"],
|
||||
"Views" : "תצוגות",
|
||||
"Title" : "כותרת",
|
||||
"Enter thread title …" : "כתבו כותרת לנושא …",
|
||||
"Write your thread content …" : "כתבו תוכן לנושא שלכם …",
|
||||
"Create thread" : "צרו נושא",
|
||||
"Are you sure you want to discard this thread?" : "אתם בטוחים שברצונכם לבטל את הנושא?",
|
||||
"Saving draft …" : "הטיוטה נשמרת…",
|
||||
"Draft saved" : "הטיוטה נשמרה",
|
||||
"Unsaved changes" : "שינויים שלא נשמרו",
|
||||
"Back to home" : "חזרה לדף בית",
|
||||
"Refresh" : "רענון",
|
||||
"Your bookmarked threads" : "הנושאים בסימניה שלכם",
|
||||
"Error loading bookmarks" : "שגיאה בטעינת סימניות",
|
||||
"No bookmarks yet" : "ללא סימניות עדיין",
|
||||
"Bookmark threads to quickly find them later." : "סמנו נושאים כדי למצוא אותם מהר מאוחר יותר",
|
||||
"Retry" : "ניסיון חוזר",
|
||||
"An unexpected error occurred" : "קרתה שגיאה בלתי צפוייה",
|
||||
"Failed to load bookmarks" : "כשלון בטעינת סימניות",
|
||||
"No categories yet" : "ללא קטגוריות עדיין",
|
||||
"Categories will appear here once they are created." : "קטגוריות יופיעו כאן ברגע שייוצרו",
|
||||
"No categories in this section" : "אין קטגוריות באיזור הזה",
|
||||
"Category not found" : "קטגוריה לא נמצאה",
|
||||
"The category you are looking for does not exist or has been removed." : "הקטגוריה שאתם מחפשים לא קיימת או הוסרה.",
|
||||
"Back to categories" : "חזרה אל קטגוריות",
|
||||
"New thread" : "נושא חדש",
|
||||
"Error loading category" : "שגיאה בטעינת קטגוריות",
|
||||
"No threads yet" : "ללא נושאים עדיין",
|
||||
"Be the first to start a discussion in this category." : "היו הראשונים שיוצרים דיון בקטגוריה זאת.",
|
||||
"No category ID or slug provided" : "מזהה קטגוריה לא סופק ",
|
||||
"Failed to load threads" : "שגיאה בטעינת נושאים",
|
||||
"Create New Thread" : "צרו נושא חדש",
|
||||
"In {category}" : "בתוך {category}",
|
||||
"Creating thread …" : "יוצר נושא …",
|
||||
"Thread created" : "נושא נוצר",
|
||||
"Failed to create thread" : "כשלון ביצירת נושא",
|
||||
"No category specified" : "קטגוריה לא סופקה",
|
||||
"Error" : "שגיאה",
|
||||
"First activity" : "פעילות ראשונה",
|
||||
"Threads ({count})" : "נושאים ({count})",
|
||||
"Replies ({count})" : "תגובות ({count})",
|
||||
"No threads" : "ללא נושאים",
|
||||
"This user has not created any threads yet" : "משתמש זה לא יצר נושאים עדיין",
|
||||
"No replies" : "ללא תגובות",
|
||||
"This user has not written any replies yet" : "משתמש זה לא כתב תגובות עדיין",
|
||||
"Failed to load user profile" : "כשלון בטעינת פרופיל משתמש",
|
||||
"Enter search query …" : "הכניסו שאילתת חיפוש …",
|
||||
"Search in threads" : "חפשו בנושאים",
|
||||
"Search in replies" : "חפשו בתגובות",
|
||||
"Syntax help" : "עזרה בתחביר",
|
||||
"Search syntax" : "תחביר חיפוש",
|
||||
"Match exact phrase" : "התאם מלל מדוייק",
|
||||
"Both terms required" : "שני הערכים הם חובה",
|
||||
"Either term matches" : "ערך אחד או אחר מתאים",
|
||||
"Group conditions with parentheses" : "קבצו תנאים בעזרת סוגריים",
|
||||
"Exclude term from results" : "השמיטו מתוצאות החיפוש",
|
||||
"Searching …" : "מתבצע חיפוש…",
|
||||
"Search Error" : "שגיאה בחיפוש",
|
||||
"Enter a search query" : "הכניסו שאילתת חיפוש",
|
||||
"Use the search box above to find threads and replies" : "השתמשו בתיבת החיפוש למעלה כדי למצוא נושאים ותגובות",
|
||||
"No results found" : "לא נמצאו תוצאות",
|
||||
"Try different keywords or check your syntax" : "נסו מילות מפתח אחרות או בדקו שוב את תחביר החיפוש שלכם",
|
||||
"_%n thread found_::_%n threads found_" : ["נמצא נושא אחד","נמצאו %n נושאים","נמצאו %n נושאים"],
|
||||
"_%n reply found_::_%n replies found_" : ["נמצאה תגובה אחת","נמצאו %n תגובות","נמצאו %n תגובות"],
|
||||
"Please enter a search query" : "נא להכניס שאילתת חיפוש",
|
||||
"Please select at least one search scope" : "נא בחרו לפחות איזור חיפוש אחד",
|
||||
"Failed to search" : "כשלון בחיפוש",
|
||||
"Thread not found" : "נושא לא נמצא",
|
||||
"The thread you are looking for does not exist or has been removed." : "הנושא שאתם מנסים לפתוח לא קיים או הוסר",
|
||||
"Back to {category}" : "חזרה אל {category}",
|
||||
"Reply" : "תגובה",
|
||||
"Error loading thread" : "שגיאה בטעינת נושא",
|
||||
"No replies yet" : "ללא תגובות עדיין",
|
||||
"Be the first to reply in this thread." : "היו הראשונים שיגיבו לנושא זה",
|
||||
"by" : "מאת",
|
||||
"This thread is locked. Only moderators can add replies." : "הנושא הזה נעול. רק מנהלים יכולים להוסיף תגובות.",
|
||||
"You must be signed in to reply to this thread." : "אתם חייבים להיות מחוברים כדי להגיב לנושא זה.",
|
||||
"Sign in to reply" : "התחברו כדי להגיב",
|
||||
"Lock thread" : "נעילת נושא",
|
||||
"Unlock thread" : "ביטול נעילת נושא",
|
||||
"Pin thread" : "הדבקת נושא",
|
||||
"Unpin thread" : "ביטול הדבקת נושא",
|
||||
"Thread locked" : "הנושא ננעל",
|
||||
"Thread unlocked" : "בוטלה נעילת הנושא",
|
||||
"Thread pinned" : "הנושא הודבק",
|
||||
"Thread unpinned" : "בוטלה הדבקת הנושא",
|
||||
"Subscribe" : "הרשמה",
|
||||
"Bookmark" : "סימנייה",
|
||||
"Edit title" : "עריכת כותרת",
|
||||
|
||||
129
l10n/he.json
129
l10n/he.json
@@ -1,12 +1,12 @@
|
||||
{ "translations": {
|
||||
"Admin" : "מנהל",
|
||||
"Administrator role with full permissions" : "תפקיד מנהל עם הרשאות מלאות",
|
||||
"Admin" : "אדמין",
|
||||
"Administrator role with full permissions" : "תפקיד אדמין עם הרשאות מלאות",
|
||||
"Moderator" : "מפקח",
|
||||
"Moderator role with elevated permissions" : "תפקיד מפקח עם הרשאות מוגבהות",
|
||||
"User" : "משתמש",
|
||||
"Default user role with basic permissions" : "תפקיד משתמש רגיל עם הרשאות בסיסיות",
|
||||
"Default user role with basic permissions" : "תפקיד משתמש ברירת מחדל עם הרשאות בסיסיות",
|
||||
"Guest" : "אורח",
|
||||
"Guest role for unauthenticated users with read-only access" : "תפקיד אורח עם הרשאות גישה לקריאה בלבד",
|
||||
"Guest role for unauthenticated users with read-only access" : "תפקיד אורח למשתמשים לא-מחוברים עם הרשאות גישה לקריאה בלבד",
|
||||
"General" : "כללי",
|
||||
"General discussion categories" : "קטגוריות לדיונים כלליים",
|
||||
"General discussions" : "דיונים כלליים",
|
||||
@@ -18,24 +18,29 @@
|
||||
"Hidden content" : "תוכן מוסתר",
|
||||
"Spoilers" : "ספוילרים",
|
||||
"Attachment" : "קובץ מצורף",
|
||||
"Welcome to Nextcloud Forums" : "ברוכים הבאים לפורום Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "ברוכים הבאים לפורום של 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." : "זהו פורום מונחה-קהילה מובנה ישירות ל-Nextcloud שלך. כאן ניתן להתדיין בנושאים שונים, לחלוק רעיונות ולשתף פעולה עם משתמשים אחרים.",
|
||||
"Features:" : "יכולות:",
|
||||
"Create and reply to threads" : "יצירה והגבה לשרשורים",
|
||||
"Organize discussions by categories" : "אירגון דיונים על-פי קטגוריות",
|
||||
"Use BBCode for rich text formatting" : "השתמשו ב-BBCode לפורמט טקסט עשיר",
|
||||
"Attach files from your Nextcloud storage" : "צירוף קבצים מאחסון ה-Nextcloud שלך",
|
||||
"React to posts" : "תגובות לשרשורים",
|
||||
"Track read/unread threads" : "מעקב אחר שרשורים שנקראו\\לא נקראו",
|
||||
"BBCode examples:" : "דוגמאות BBCode:",
|
||||
"Bold text" : "טקסט בולט",
|
||||
"Use %1$stext%2$s" : "השתמשו ב%1$sטקסט%2$s",
|
||||
"Italic text" : "טקסט מוטה",
|
||||
"Underlined text" : "טקסט בקו תחתון",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "הרגישו חופשי להתחיל שרשור חדש או להגיב לשרשורים קיימים. כתיבה מהנה!",
|
||||
"Welcome to Nextcloud Forums" : "ברוכים הבאים לפורום Nextcloud",
|
||||
"Forum" : "פורום",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["תגובה {count} חדשה ב-{thread}","{count} תגובות חדשות ב-{thread}","{count} תגובות חדשות ב-{thread}"],
|
||||
"{user} mentioned you in {thread}" : "אוזכרת על ידי {user}בנושא {thread}",
|
||||
"Welcome to the forum!" : "ברוכים הבאים לפורום!",
|
||||
"Deleted user" : "משתמש מחוק",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "פורום מונחה-קהילה מובנה ישירות להתקנת ה Nextcloud שלכם.",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "צרו דיונים, חלקו רעיונות ושתפו פעולה עם משתמשים ישירות ב-Nextcloud.\n\n**⚠️ הודעה לגבי שלב פיתוח מוקדם:**\nהיישום הזה נמצא בשלבי פיתוח מוקדמים. בעוד היישום שמיש, אתם עלולים להיתקל בבאגים או יכולות לא שלמות. נא לדווח בעיות ב-GitHub ולשקול לגבות את המידע שלכם באופן תכוף.\n\n**יכולות מפתח:**\n- **דיונים מונחי נושאים** - צרו והגיבו לנושאי דיון\n- **ארגון קטגוריות** - צרו מבנה לפורום שלכם עם קטגוריות וכותרות הניתנות להתאמה\n- **פורמט טקסט עשיר** - השתמשו ב-BBCode לפרמוט של פוסטים עם הדגשות, הטיות, קישורים, תמונות, קטעי קוד ועוד\n- **צירוף קבצים** - צרפו קבצים מתוך ה-Nextcloud שלכם לפוסטים\n- **תגובונים לפוסטים** - הגיבו לפוסטים עם תגובוני אמוג'י\n- **מעקב נקרא\\לא נקרא** - עקבו אחרי סטטוס הקריאה של פוסטים\n- **חיפוש** - מצאו דיונים מהר בעזרת חיפוש מובנה\n- **פרופילי משתמשים** - צפו בהיסטוריה וסטטיסטיקות של משתמשים\n- **הרשאות מבוססי תפקיד** - שלטו בגישה ומודרציה עם תפקידים גמישים\n- **גישה לאורחים**: גישת רשות ציבורית למשתמשים לא מחוברים עם הרשאות ניתנות להתאמה\n- **כלי ניהול** - נהלו קטגוריות, תפקידים, BBCode והגדרות פורום\n- **כלי מודרציה** - נעלו, הדביקו, ונהלו נושאים ותגובות\n\n**מושלם עבור:**\n- דיוני צוותים ושיתוף פעולה\n- פורום קהילתי\n- ערוצי תמיכה\n- ניהול ידע\n- דיוני פרוייקטים\n- תקשורת פנימית\n\nהפורום מתממשק באופן ישיר ל-Nextcloud שלכם, ומשתמש במשתמשים קיימים וקבוצות קיימות לניהול גישה והתחברות.",
|
||||
"Loading …" : "בטעינה…",
|
||||
"Search" : "חיפוש",
|
||||
"Home" : "בית",
|
||||
@@ -46,6 +51,7 @@
|
||||
"Users" : "משתמשים",
|
||||
"Roles" : "תפקידים",
|
||||
"Categories" : "קטגוריות",
|
||||
"BBCodes" : "BBCodes",
|
||||
"Expand" : "הרחבה",
|
||||
"Collapse" : "קיווץ",
|
||||
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}נא לשים לב:{bEnd} קבצים מצורפים יהיו זמינים לכל מי שנמצא בפורום, ללא התחשבות בהגדרות השיתוף של הקובץ.",
|
||||
@@ -71,8 +77,16 @@
|
||||
"List" : "רשימה",
|
||||
"List item within a list" : "פריט רשימה בתוך רשימה",
|
||||
"List item within a list (alias)" : "פריט רשימה בתוך רשימה (חלופה)",
|
||||
"BBCode help" : "עזרה עם BBCode",
|
||||
"Built-in BBCodes" : "BBCode מובנים",
|
||||
"These BBCodes are available by default." : "ה-BBCode הללו זמינים כברירת מחדל.",
|
||||
"Custom BBCodes" : "BBCode מותאמים אישית",
|
||||
"These BBCodes are custom to this forum and configured by administrators." : "ה-BBCodes הללו מותאמים לפורום הזה וניתנים להגדרה על ידי צוות הניהול.",
|
||||
"Example" : "דוגמה",
|
||||
"Replacement" : "החלפה",
|
||||
"Loading custom BBCodes …" : "טוען BBCodes מותאמים …",
|
||||
"No custom BBCodes configured." : "אין BBCodes מותאמים מוגדרים.",
|
||||
"Failed to load custom BBCodes" : "כשלון בטעינת BBCodes מותאמים",
|
||||
"Insert emoji" : "הכנסת אימוג'י",
|
||||
"Pick file from Nextcloud" : "בחירת קובץ מ-Nextcloud",
|
||||
"Upload file to Nextcloud" : "העלאת קובץ ל-Nextcloud",
|
||||
@@ -82,6 +96,7 @@
|
||||
"Pick a file to attach" : "בחירת קובץ לצירוף",
|
||||
"Failed to upload file" : "כשלון בהעלאת קובץ",
|
||||
"Threads" : "שרשורים",
|
||||
"Replies" : "תגובות",
|
||||
"No description available" : "תיאור לא זמין",
|
||||
"Create category header" : "יצירת כותרת קטגוריות",
|
||||
"Edit category header" : "עריכת כותרת קטגוריות",
|
||||
@@ -106,25 +121,129 @@
|
||||
"The page you are looking for could not be found." : "העמוד שחיפשתם לא נמצא.",
|
||||
"Back" : "אחורה",
|
||||
"Go to home" : "חזרה אל דף הבית",
|
||||
"Pagination" : "דפדוף",
|
||||
"First page" : "דף ראשון",
|
||||
"Previous page" : "דף קודם",
|
||||
"Next page" : "דף הבא",
|
||||
"Last page" : "דף אחרון",
|
||||
"Go to page {page}" : "עבור לדף {page}",
|
||||
"Edited" : "נערך",
|
||||
"Quote reply" : "ציטוט בתגובה",
|
||||
"Edit" : "עריכה",
|
||||
"Delete" : "מחיקה",
|
||||
"View edit history" : "צפייה בהיסטוריית עריכה",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "האם אתם בטוחים שתרצו למחוק את הפוסט הזה? הפעולה בלתי ניתנת להפיכה.",
|
||||
"Unread" : "לא נקרא",
|
||||
"Edit your reply …" : "ערכו את תגובתכם …",
|
||||
"Save" : "שמירה",
|
||||
"Are you sure you want to discard your changes?" : "האם אתם בטוחים שתרצו לבטל את השינויים שלכם?",
|
||||
"Edit history" : "היסטוריית עריכה",
|
||||
"Loading history …" : "טוען היסטוריה …",
|
||||
"This post has no edit history." : "לפוסט הזה אין היסטוריית עריכה.",
|
||||
"Current version" : "גרסה נוכחית",
|
||||
"Edited by" : "נערך על ידי",
|
||||
"Failed to load edit history" : "כשלון בטעינת היסטוריית עריכה",
|
||||
"Version {index}" : "גרסה {index}",
|
||||
"Add reaction" : "הוספת תגובון",
|
||||
"React with {emoji}" : "הגיבו עם {emoji}",
|
||||
"You reacted with {emoji}" : "הגבת עם {emoji}",
|
||||
"_You and %n other reacted with {emoji}_::_You and %n others reacted with {emoji}_" : ["את\\ה ועוד %n אחר הגבתם עם {emoji}","את\\ה ועוד %n אחרים הגבתם עם {emoji}","את\\ה ועוד %n אחרים הגבתם עם {emoji}"],
|
||||
"_%n person reacted with {emoji}_::_%n people reacted with {emoji}_" : ["אדם אחד הגיב עם {emoji}","%n אנשים הגיבו עם {emoji}","%n אנשים הגיבו עם {emoji}"],
|
||||
"Write your reply …" : "כתבו את תגובתכם …",
|
||||
"Submit reply" : "שליחת תגובה",
|
||||
"Are you sure you want to discard your reply?" : "אתם בטוחים שברצונכם לבטל את התגובה?",
|
||||
"In thread" : "בנושא",
|
||||
"Thread unavailable" : "נושא לא זמין",
|
||||
"Pinned thread" : "נושא מודבק",
|
||||
"Locked thread" : "נושא נעול",
|
||||
"Uncategorized" : "ללא קטגוריה",
|
||||
"_%n reply_::_%n replies_" : ["תגובה אחת","%n תגובות","%n תגובות"],
|
||||
"_%n view_::_%n views_" : ["צפייה אחת","%n צפיות","%n צפיות"],
|
||||
"Views" : "תצוגות",
|
||||
"Title" : "כותרת",
|
||||
"Enter thread title …" : "כתבו כותרת לנושא …",
|
||||
"Write your thread content …" : "כתבו תוכן לנושא שלכם …",
|
||||
"Create thread" : "צרו נושא",
|
||||
"Are you sure you want to discard this thread?" : "אתם בטוחים שברצונכם לבטל את הנושא?",
|
||||
"Saving draft …" : "הטיוטה נשמרת…",
|
||||
"Draft saved" : "הטיוטה נשמרה",
|
||||
"Unsaved changes" : "שינויים שלא נשמרו",
|
||||
"Back to home" : "חזרה לדף בית",
|
||||
"Refresh" : "רענון",
|
||||
"Your bookmarked threads" : "הנושאים בסימניה שלכם",
|
||||
"Error loading bookmarks" : "שגיאה בטעינת סימניות",
|
||||
"No bookmarks yet" : "ללא סימניות עדיין",
|
||||
"Bookmark threads to quickly find them later." : "סמנו נושאים כדי למצוא אותם מהר מאוחר יותר",
|
||||
"Retry" : "ניסיון חוזר",
|
||||
"An unexpected error occurred" : "קרתה שגיאה בלתי צפוייה",
|
||||
"Failed to load bookmarks" : "כשלון בטעינת סימניות",
|
||||
"No categories yet" : "ללא קטגוריות עדיין",
|
||||
"Categories will appear here once they are created." : "קטגוריות יופיעו כאן ברגע שייוצרו",
|
||||
"No categories in this section" : "אין קטגוריות באיזור הזה",
|
||||
"Category not found" : "קטגוריה לא נמצאה",
|
||||
"The category you are looking for does not exist or has been removed." : "הקטגוריה שאתם מחפשים לא קיימת או הוסרה.",
|
||||
"Back to categories" : "חזרה אל קטגוריות",
|
||||
"New thread" : "נושא חדש",
|
||||
"Error loading category" : "שגיאה בטעינת קטגוריות",
|
||||
"No threads yet" : "ללא נושאים עדיין",
|
||||
"Be the first to start a discussion in this category." : "היו הראשונים שיוצרים דיון בקטגוריה זאת.",
|
||||
"No category ID or slug provided" : "מזהה קטגוריה לא סופק ",
|
||||
"Failed to load threads" : "שגיאה בטעינת נושאים",
|
||||
"Create New Thread" : "צרו נושא חדש",
|
||||
"In {category}" : "בתוך {category}",
|
||||
"Creating thread …" : "יוצר נושא …",
|
||||
"Thread created" : "נושא נוצר",
|
||||
"Failed to create thread" : "כשלון ביצירת נושא",
|
||||
"No category specified" : "קטגוריה לא סופקה",
|
||||
"Error" : "שגיאה",
|
||||
"First activity" : "פעילות ראשונה",
|
||||
"Threads ({count})" : "נושאים ({count})",
|
||||
"Replies ({count})" : "תגובות ({count})",
|
||||
"No threads" : "ללא נושאים",
|
||||
"This user has not created any threads yet" : "משתמש זה לא יצר נושאים עדיין",
|
||||
"No replies" : "ללא תגובות",
|
||||
"This user has not written any replies yet" : "משתמש זה לא כתב תגובות עדיין",
|
||||
"Failed to load user profile" : "כשלון בטעינת פרופיל משתמש",
|
||||
"Enter search query …" : "הכניסו שאילתת חיפוש …",
|
||||
"Search in threads" : "חפשו בנושאים",
|
||||
"Search in replies" : "חפשו בתגובות",
|
||||
"Syntax help" : "עזרה בתחביר",
|
||||
"Search syntax" : "תחביר חיפוש",
|
||||
"Match exact phrase" : "התאם מלל מדוייק",
|
||||
"Both terms required" : "שני הערכים הם חובה",
|
||||
"Either term matches" : "ערך אחד או אחר מתאים",
|
||||
"Group conditions with parentheses" : "קבצו תנאים בעזרת סוגריים",
|
||||
"Exclude term from results" : "השמיטו מתוצאות החיפוש",
|
||||
"Searching …" : "מתבצע חיפוש…",
|
||||
"Search Error" : "שגיאה בחיפוש",
|
||||
"Enter a search query" : "הכניסו שאילתת חיפוש",
|
||||
"Use the search box above to find threads and replies" : "השתמשו בתיבת החיפוש למעלה כדי למצוא נושאים ותגובות",
|
||||
"No results found" : "לא נמצאו תוצאות",
|
||||
"Try different keywords or check your syntax" : "נסו מילות מפתח אחרות או בדקו שוב את תחביר החיפוש שלכם",
|
||||
"_%n thread found_::_%n threads found_" : ["נמצא נושא אחד","נמצאו %n נושאים","נמצאו %n נושאים"],
|
||||
"_%n reply found_::_%n replies found_" : ["נמצאה תגובה אחת","נמצאו %n תגובות","נמצאו %n תגובות"],
|
||||
"Please enter a search query" : "נא להכניס שאילתת חיפוש",
|
||||
"Please select at least one search scope" : "נא בחרו לפחות איזור חיפוש אחד",
|
||||
"Failed to search" : "כשלון בחיפוש",
|
||||
"Thread not found" : "נושא לא נמצא",
|
||||
"The thread you are looking for does not exist or has been removed." : "הנושא שאתם מנסים לפתוח לא קיים או הוסר",
|
||||
"Back to {category}" : "חזרה אל {category}",
|
||||
"Reply" : "תגובה",
|
||||
"Error loading thread" : "שגיאה בטעינת נושא",
|
||||
"No replies yet" : "ללא תגובות עדיין",
|
||||
"Be the first to reply in this thread." : "היו הראשונים שיגיבו לנושא זה",
|
||||
"by" : "מאת",
|
||||
"This thread is locked. Only moderators can add replies." : "הנושא הזה נעול. רק מנהלים יכולים להוסיף תגובות.",
|
||||
"You must be signed in to reply to this thread." : "אתם חייבים להיות מחוברים כדי להגיב לנושא זה.",
|
||||
"Sign in to reply" : "התחברו כדי להגיב",
|
||||
"Lock thread" : "נעילת נושא",
|
||||
"Unlock thread" : "ביטול נעילת נושא",
|
||||
"Pin thread" : "הדבקת נושא",
|
||||
"Unpin thread" : "ביטול הדבקת נושא",
|
||||
"Thread locked" : "הנושא ננעל",
|
||||
"Thread unlocked" : "בוטלה נעילת הנושא",
|
||||
"Thread pinned" : "הנושא הודבק",
|
||||
"Thread unpinned" : "בוטלה הדבקת הנושא",
|
||||
"Subscribe" : "הרשמה",
|
||||
"Bookmark" : "סימנייה",
|
||||
"Edit title" : "עריכת כותרת",
|
||||
|
||||
@@ -30,6 +30,7 @@ OC.L10N.register(
|
||||
"Edit" : "Uredi",
|
||||
"Delete" : "Izbriši",
|
||||
"Save" : "Spremi",
|
||||
"Current version" : "Trenutna verzija",
|
||||
"Uncategorized" : "Nekategorizirani",
|
||||
"Views" : "Prikazi",
|
||||
"Title" : "Naslov",
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
"Edit" : "Uredi",
|
||||
"Delete" : "Izbriši",
|
||||
"Save" : "Spremi",
|
||||
"Current version" : "Trenutna verzija",
|
||||
"Uncategorized" : "Nekategorizirani",
|
||||
"Views" : "Prikazi",
|
||||
"Title" : "Naslov",
|
||||
|
||||
@@ -43,6 +43,7 @@ OC.L10N.register(
|
||||
"Delete" : "Törlés",
|
||||
"Unread" : "Olvasatlan",
|
||||
"Save" : "Mentés",
|
||||
"Current version" : "Jelenlegi verzió",
|
||||
"React with {emoji}" : "Reagálás ezzel: {emoji}",
|
||||
"Uncategorized" : "Kategorizálatlan",
|
||||
"_%n reply_::_%n replies_" : ["%n válasz","%n válasz"],
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
"Delete" : "Törlés",
|
||||
"Unread" : "Olvasatlan",
|
||||
"Save" : "Mentés",
|
||||
"Current version" : "Jelenlegi verzió",
|
||||
"React with {emoji}" : "Reagálás ezzel: {emoji}",
|
||||
"Uncategorized" : "Kategorizálatlan",
|
||||
"_%n reply_::_%n replies_" : ["%n válasz","%n válasz"],
|
||||
|
||||
@@ -2,6 +2,7 @@ OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderator",
|
||||
"User" : "Pengguna",
|
||||
"Guest" : "Tamu",
|
||||
"General" : "Umum",
|
||||
@@ -27,6 +28,7 @@ OC.L10N.register(
|
||||
"Update" : "Perbarui",
|
||||
"Move" : "Pindah",
|
||||
"Page not found" : "Halaman tidak ditemukan",
|
||||
"Back" : "Kembali",
|
||||
"Edit" : "Sunting",
|
||||
"Delete" : "Hapus",
|
||||
"Save" : "Simpan",
|
||||
@@ -36,12 +38,14 @@ OC.L10N.register(
|
||||
"Refresh" : "Muat ulang",
|
||||
"Retry" : "Ulangi",
|
||||
"Error" : "Galat",
|
||||
"Searching …" : "Mencari …",
|
||||
"Back to {category}" : "Kembali ke {category}",
|
||||
"by" : "oleh",
|
||||
"Subscribe" : "Berlangganan",
|
||||
"Edit title" : "Edit judul",
|
||||
"Preferences" : "Preferensi",
|
||||
"Notifications" : "Notifikasi",
|
||||
"Files" : "File",
|
||||
"Signature" : "Tanda tangan",
|
||||
"Enable" : "Aktifkan",
|
||||
"Disable" : "Nonaktifkan",
|
||||
@@ -49,6 +53,7 @@ OC.L10N.register(
|
||||
"Enabled" : "Diaktifkan",
|
||||
"Name" : "Nama",
|
||||
"New" : "Baru",
|
||||
"Last 7 days" : "7 hari terakhir",
|
||||
"Appearance" : "Tampilan",
|
||||
"Access control" : "Kontol akses",
|
||||
"Settings saved" : "Setelan tersimpan",
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{ "translations": {
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderator",
|
||||
"User" : "Pengguna",
|
||||
"Guest" : "Tamu",
|
||||
"General" : "Umum",
|
||||
@@ -25,6 +26,7 @@
|
||||
"Update" : "Perbarui",
|
||||
"Move" : "Pindah",
|
||||
"Page not found" : "Halaman tidak ditemukan",
|
||||
"Back" : "Kembali",
|
||||
"Edit" : "Sunting",
|
||||
"Delete" : "Hapus",
|
||||
"Save" : "Simpan",
|
||||
@@ -34,12 +36,14 @@
|
||||
"Refresh" : "Muat ulang",
|
||||
"Retry" : "Ulangi",
|
||||
"Error" : "Galat",
|
||||
"Searching …" : "Mencari …",
|
||||
"Back to {category}" : "Kembali ke {category}",
|
||||
"by" : "oleh",
|
||||
"Subscribe" : "Berlangganan",
|
||||
"Edit title" : "Edit judul",
|
||||
"Preferences" : "Preferensi",
|
||||
"Notifications" : "Notifikasi",
|
||||
"Files" : "File",
|
||||
"Signature" : "Tanda tangan",
|
||||
"Enable" : "Aktifkan",
|
||||
"Disable" : "Nonaktifkan",
|
||||
@@ -47,6 +51,7 @@
|
||||
"Enabled" : "Diaktifkan",
|
||||
"Name" : "Nama",
|
||||
"New" : "Baru",
|
||||
"Last 7 days" : "7 hari terakhir",
|
||||
"Appearance" : "Tampilan",
|
||||
"Access control" : "Kontol akses",
|
||||
"Settings saved" : "Setelan tersimpan",
|
||||
|
||||
@@ -36,6 +36,7 @@ OC.L10N.register(
|
||||
"Delete" : "Eyða",
|
||||
"Unread" : "Ólesið",
|
||||
"Save" : "Vista",
|
||||
"Current version" : "Fyrirliggjandi útgáfa",
|
||||
"Uncategorized" : "Óflokkað",
|
||||
"Views" : "Skoðun",
|
||||
"Saving draft …" : "Vista drög …",
|
||||
|
||||
@@ -34,6 +34,7 @@
|
||||
"Delete" : "Eyða",
|
||||
"Unread" : "Ólesið",
|
||||
"Save" : "Vista",
|
||||
"Current version" : "Fyrirliggjandi útgáfa",
|
||||
"Uncategorized" : "Óflokkað",
|
||||
"Views" : "Skoðun",
|
||||
"Saving draft …" : "Vista drög …",
|
||||
|
||||
@@ -41,6 +41,7 @@ OC.L10N.register(
|
||||
"Delete" : "Elimina",
|
||||
"Unread" : "Da leggere",
|
||||
"Save" : "Salva",
|
||||
"Current version" : "Versione corrente",
|
||||
"React with {emoji}" : "Regisci con {emoji}",
|
||||
"Uncategorized" : "Senza categoria",
|
||||
"_%n reply_::_%n replies_" : ["%n risposta","%n risposte","%n risposte"],
|
||||
|
||||
@@ -39,6 +39,7 @@
|
||||
"Delete" : "Elimina",
|
||||
"Unread" : "Da leggere",
|
||||
"Save" : "Salva",
|
||||
"Current version" : "Versione corrente",
|
||||
"React with {emoji}" : "Regisci con {emoji}",
|
||||
"Uncategorized" : "Senza categoria",
|
||||
"_%n reply_::_%n replies_" : ["%n risposta","%n risposte","%n risposte"],
|
||||
|
||||
@@ -37,6 +37,7 @@ OC.L10N.register(
|
||||
"Delete" : "削除",
|
||||
"Unread" : "未読",
|
||||
"Save" : "保存する",
|
||||
"Current version" : "現在のバージョン",
|
||||
"React with {emoji}" : "{emoji} で反応する",
|
||||
"Uncategorized" : "未分類",
|
||||
"_%n reply_::_%n replies_" : ["%n件の返信"],
|
||||
|
||||
@@ -35,6 +35,7 @@
|
||||
"Delete" : "削除",
|
||||
"Unread" : "未読",
|
||||
"Save" : "保存する",
|
||||
"Current version" : "現在のバージョン",
|
||||
"React with {emoji}" : "{emoji} で反応する",
|
||||
"Uncategorized" : "未分類",
|
||||
"_%n reply_::_%n replies_" : ["%n件の返信"],
|
||||
|
||||
@@ -32,6 +32,7 @@ OC.L10N.register(
|
||||
"Delete" : "წაშლა",
|
||||
"Unread" : "Unread",
|
||||
"Save" : "დამახსოვრება",
|
||||
"Current version" : "Current version",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "Uncategorized",
|
||||
"Views" : "Views",
|
||||
|
||||
@@ -30,6 +30,7 @@
|
||||
"Delete" : "წაშლა",
|
||||
"Unread" : "Unread",
|
||||
"Save" : "დამახსოვრება",
|
||||
"Current version" : "Current version",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "Uncategorized",
|
||||
"Views" : "Views",
|
||||
|
||||
@@ -19,6 +19,7 @@ OC.L10N.register(
|
||||
"Collapse" : "접기",
|
||||
"Hello world!" : "Hello world!",
|
||||
"Code" : "코드",
|
||||
"Quote" : "ㅇ",
|
||||
"Font size" : "글꼴 크기",
|
||||
"List" : "목록",
|
||||
"Insert emoji" : "이모지 삽입",
|
||||
@@ -34,6 +35,7 @@ OC.L10N.register(
|
||||
"Delete" : "삭제",
|
||||
"Unread" : "읽지 않음",
|
||||
"Save" : "저장",
|
||||
"Current version" : "현재 버전",
|
||||
"React with {emoji}" : "{emoji}(으)로 반응",
|
||||
"Uncategorized" : "분류되지 않음",
|
||||
"Views" : "보기",
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
"Collapse" : "접기",
|
||||
"Hello world!" : "Hello world!",
|
||||
"Code" : "코드",
|
||||
"Quote" : "ㅇ",
|
||||
"Font size" : "글꼴 크기",
|
||||
"List" : "목록",
|
||||
"Insert emoji" : "이모지 삽입",
|
||||
@@ -32,6 +33,7 @@
|
||||
"Delete" : "삭제",
|
||||
"Unread" : "읽지 않음",
|
||||
"Save" : "저장",
|
||||
"Current version" : "현재 버전",
|
||||
"React with {emoji}" : "{emoji}(으)로 반응",
|
||||
"Uncategorized" : "분류되지 않음",
|
||||
"Views" : "보기",
|
||||
|
||||
@@ -42,6 +42,7 @@ OC.L10N.register(
|
||||
"Delete" : "ລຶບ",
|
||||
"Unread" : "Unread",
|
||||
"Save" : "ບັນທຶກ",
|
||||
"Current version" : "Current version",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "Uncategorized",
|
||||
"_%n reply_::_%n replies_" : ["%n replies"],
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"Delete" : "ລຶບ",
|
||||
"Unread" : "Unread",
|
||||
"Save" : "ບັນທຶກ",
|
||||
"Current version" : "Current version",
|
||||
"React with {emoji}" : "React with {emoji}",
|
||||
"Uncategorized" : "Uncategorized",
|
||||
"_%n reply_::_%n replies_" : ["%n replies"],
|
||||
|
||||
@@ -16,6 +16,7 @@ OC.L10N.register(
|
||||
"Dashboard" : "Skydelis",
|
||||
"Users" : "Naudotojai",
|
||||
"Categories" : "Kategorijos",
|
||||
"Expand" : "Išskleisti",
|
||||
"Collapse" : "Suskleisti",
|
||||
"Hello world!" : "Sveikas, pasauli!",
|
||||
"Code" : "Kodas",
|
||||
@@ -34,6 +35,7 @@ OC.L10N.register(
|
||||
"Edit" : "Taisyti",
|
||||
"Delete" : "Ištrinti",
|
||||
"Save" : "Įrašyti",
|
||||
"Current version" : "Dabartinė versija",
|
||||
"React with {emoji}" : "Reaguoti naudojant {emoji}",
|
||||
"Uncategorized" : "Nekategorizuotas",
|
||||
"Views" : "Rodiniai",
|
||||
@@ -55,6 +57,7 @@ OC.L10N.register(
|
||||
"Edit title" : "Taisyti pavadinimą",
|
||||
"Move thread" : "Perkelti giją",
|
||||
"Preferences" : "Nuostatos",
|
||||
"Notifications" : "Pranešimai",
|
||||
"Files" : "Failai",
|
||||
"Browse" : "Naršyti",
|
||||
"Signature" : "Parašas",
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
"Dashboard" : "Skydelis",
|
||||
"Users" : "Naudotojai",
|
||||
"Categories" : "Kategorijos",
|
||||
"Expand" : "Išskleisti",
|
||||
"Collapse" : "Suskleisti",
|
||||
"Hello world!" : "Sveikas, pasauli!",
|
||||
"Code" : "Kodas",
|
||||
@@ -32,6 +33,7 @@
|
||||
"Edit" : "Taisyti",
|
||||
"Delete" : "Ištrinti",
|
||||
"Save" : "Įrašyti",
|
||||
"Current version" : "Dabartinė versija",
|
||||
"React with {emoji}" : "Reaguoti naudojant {emoji}",
|
||||
"Uncategorized" : "Nekategorizuotas",
|
||||
"Views" : "Rodiniai",
|
||||
@@ -53,6 +55,7 @@
|
||||
"Edit title" : "Taisyti pavadinimą",
|
||||
"Move thread" : "Perkelti giją",
|
||||
"Preferences" : "Nuostatos",
|
||||
"Notifications" : "Pranešimai",
|
||||
"Files" : "Failai",
|
||||
"Browse" : "Naršyti",
|
||||
"Signature" : "Parašas",
|
||||
|
||||
@@ -38,6 +38,7 @@ OC.L10N.register(
|
||||
"Edit" : "Labot",
|
||||
"Delete" : "Izdzēst",
|
||||
"Save" : "Saglabāt",
|
||||
"Current version" : "Pašreizējā versija",
|
||||
"Uncategorized" : "Bez kategorijas",
|
||||
"Views" : "Skatījumi",
|
||||
"Title" : "Virsraksts",
|
||||
|
||||
@@ -36,6 +36,7 @@
|
||||
"Edit" : "Labot",
|
||||
"Delete" : "Izdzēst",
|
||||
"Save" : "Saglabāt",
|
||||
"Current version" : "Pašreizējā versija",
|
||||
"Uncategorized" : "Bez kategorijas",
|
||||
"Views" : "Skatījumi",
|
||||
"Title" : "Virsraksts",
|
||||
|
||||
@@ -31,6 +31,7 @@ OC.L10N.register(
|
||||
"Delete" : "Избриши",
|
||||
"Unread" : "Непрочитана",
|
||||
"Save" : "Сними",
|
||||
"Current version" : "Моментална верзија",
|
||||
"React with {emoji}" : "Реагирај со {emoji}",
|
||||
"Views" : "Прегледи",
|
||||
"Title" : "Наслов",
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
"Delete" : "Избриши",
|
||||
"Unread" : "Непрочитана",
|
||||
"Save" : "Сними",
|
||||
"Current version" : "Моментална верзија",
|
||||
"React with {emoji}" : "Реагирај со {emoji}",
|
||||
"Views" : "Прегледи",
|
||||
"Title" : "Наслов",
|
||||
|
||||
@@ -42,6 +42,7 @@ OC.L10N.register(
|
||||
"Delete" : "Slett",
|
||||
"Unread" : "Ulest",
|
||||
"Save" : "Lagre",
|
||||
"Current version" : "Nåværende versjon",
|
||||
"React with {emoji}" : "Reager med {emoji}",
|
||||
"Uncategorized" : "Ukategorisert",
|
||||
"Views" : "Visninger",
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"Delete" : "Slett",
|
||||
"Unread" : "Ulest",
|
||||
"Save" : "Lagre",
|
||||
"Current version" : "Nåværende versjon",
|
||||
"React with {emoji}" : "Reager med {emoji}",
|
||||
"Uncategorized" : "Ukategorisert",
|
||||
"Views" : "Visninger",
|
||||
|
||||
@@ -43,6 +43,7 @@ OC.L10N.register(
|
||||
"Delete" : "Verwijderen",
|
||||
"Unread" : "Ongelezen",
|
||||
"Save" : "Opslaan",
|
||||
"Current version" : "Huidige versie",
|
||||
"React with {emoji}" : "Reageer met {emoji}",
|
||||
"Uncategorized" : "Niet gecategoriseerd",
|
||||
"Views" : "Bekeken",
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
"Delete" : "Verwijderen",
|
||||
"Unread" : "Ongelezen",
|
||||
"Save" : "Opslaan",
|
||||
"Current version" : "Huidige versie",
|
||||
"React with {emoji}" : "Reageer met {emoji}",
|
||||
"Uncategorized" : "Niet gecategoriseerd",
|
||||
"Views" : "Bekeken",
|
||||
|
||||
@@ -43,6 +43,7 @@ OC.L10N.register(
|
||||
"Delete" : "Usuń",
|
||||
"Unread" : "Nieprzeczytane",
|
||||
"Save" : "Zapisz",
|
||||
"Current version" : "Obecna wersja",
|
||||
"React with {emoji}" : "Reakcja za pomocą {emoji}",
|
||||
"Uncategorized" : "Bez kategorii",
|
||||
"_%n reply_::_%n replies_" : ["%n odpowiedź","%n odpowiedzi","%n odpowiedzi","%n odpowiedzi"],
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
"Delete" : "Usuń",
|
||||
"Unread" : "Nieprzeczytane",
|
||||
"Save" : "Zapisz",
|
||||
"Current version" : "Obecna wersja",
|
||||
"React with {emoji}" : "Reakcja za pomocą {emoji}",
|
||||
"Uncategorized" : "Bez kategorii",
|
||||
"_%n reply_::_%n replies_" : ["%n odpowiedź","%n odpowiedzi","%n odpowiedzi","%n odpowiedzi"],
|
||||
|
||||
132
l10n/pt_BR.js
132
l10n/pt_BR.js
@@ -20,9 +20,8 @@ OC.L10N.register(
|
||||
"Hidden content" : "Conteúdo oculto",
|
||||
"Spoilers" : "Spoilers",
|
||||
"Attachment" : "Anexo",
|
||||
"Welcome to Nextcloud Forums" : "Bem-vindo ao Nextcloud Fórums",
|
||||
"Welcome to the Nextcloud Forums!" : "Bem-vindo ao Nextcloud Fórums!",
|
||||
"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 é um fórum comunitário integrado à sua instância do Nextcloud. Aqui você pode discutir tópicos, compartilhar ideias e colaborar com outros usuários.",
|
||||
"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 é um fórum comunitário integrado à sua instância Nextcloud. Aqui você pode discutir tópicos, compartilhar ideias e colaborar com outros usuários.",
|
||||
"Features:" : "Características:",
|
||||
"Create and reply to threads" : "Crie e responda a fios",
|
||||
"Organize discussions by categories" : "Organize as discussões por categorias",
|
||||
@@ -36,6 +35,7 @@ OC.L10N.register(
|
||||
"Italic text" : "Texto em itálico",
|
||||
"Underlined text" : "Texto sublinhado",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Sinta-se à vontade para iniciar uma nova discussão ou responder a fios existentes. Boas postagens!",
|
||||
"Welcome to Nextcloud Forums" : "Bem-vindo ao Nextcloud Fórums",
|
||||
"Forum" : "Fórum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta em {thread}","{count} de novas respostas em {thread}","{count} novas respostas em {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mencionou você em {thread}",
|
||||
@@ -57,7 +57,7 @@ OC.L10N.register(
|
||||
"Expand" : "Expandir",
|
||||
"Collapse" : "Recolher",
|
||||
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Observação:{bEnd} Os arquivos anexados ficarão visíveis para todos no fórum, independentemente das configurações de compartilhamento do arquivo.",
|
||||
"Drop file here to upload" : "Arraste o arquivo aqui para fazer o upload.",
|
||||
"Drop file here to upload" : "Arraste o arquivo aqui para fazer o upload",
|
||||
"Hello world!" : "Olá, mundo!",
|
||||
"Hello moon!" : "Olá, lua!",
|
||||
"Font style bold" : "Estilo da fonte em negrito",
|
||||
@@ -68,7 +68,7 @@ OC.L10N.register(
|
||||
"Email (clickable)" : "E-mail (clicável)",
|
||||
"URL (clickable)" : "URL (clicável)",
|
||||
"Image (not clickable)" : "Imagem (não clicável)",
|
||||
"Quote" : "Cotação",
|
||||
"Quote" : "Citação",
|
||||
"Embedded YouTube video" : "Vídeo do YouTube incorporado",
|
||||
"Font (name)" : "Fonte (nome)",
|
||||
"Font size" : "Tamanho da fonte",
|
||||
@@ -111,13 +111,13 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"Create" : "Criar",
|
||||
"Update" : "Atualizar",
|
||||
"Move thread to category" : "Mover tópico para categoria",
|
||||
"Select the category to move this thread to:" : "Selecione a categoria para a qual deseja mover esta discussão:",
|
||||
"Move thread to category" : "Mover fio para categoria",
|
||||
"Select the category to move this thread to:" : "Selecione a categoria para a qual deseja mover este fio:",
|
||||
"Select a category …" : "Selecione uma categoria …",
|
||||
"Loading categories …" : "Carregando categorias …",
|
||||
"Move" : "Mover",
|
||||
"Cannot move to a category header. Please select a category instead." : "Não é possível navegar até o cabeçalho de uma categoria. Por favor, selecione uma categoria.",
|
||||
"This thread is already in this category." : "Este tópico já está nesta categoria.",
|
||||
"Cannot move to a category header. Please select a category instead." : "Não é possível mover para um cabeçalho de categoria. Por favor, selecione uma categoria.",
|
||||
"This thread is already in this category." : "Este fio já está nesta categoria.",
|
||||
"Failed to load categories" : "Falha ao carregar categorias",
|
||||
"Page not found" : "Página não encontrada",
|
||||
"The page you are looking for could not be found." : "A página que você está procurando não foi encontrada.",
|
||||
@@ -130,14 +130,22 @@ OC.L10N.register(
|
||||
"Last page" : "Última página",
|
||||
"Go to page {page}" : "Ir para página {page}",
|
||||
"Edited" : "Editado",
|
||||
"Quote reply" : "Citar resposta",
|
||||
"Quote reply" : "Responder com citação",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Excluir",
|
||||
"View edit history" : "Ver histórico de edições",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Tem certeza de que deseja excluir esta postagem? Esta ação não pode ser desfeita.",
|
||||
"Unread" : "Não lido",
|
||||
"Edit your reply …" : "Edite sua resposta …",
|
||||
"Save" : "Salvar",
|
||||
"Are you sure you want to discard your changes?" : "Tem certeza de que deseja descartar suas alterações?",
|
||||
"Edit history" : "Histórico de edições",
|
||||
"Loading history …" : "Carregando histórico …",
|
||||
"This post has no edit history." : "Esta postagem não tem histórico de edições.",
|
||||
"Current version" : "Versão atual",
|
||||
"Edited by" : "Editada por",
|
||||
"Failed to load edit history" : "Falha ao carregar o histórico de edições",
|
||||
"Version {index}" : "Versão {index}",
|
||||
"Add reaction" : "Adicionar reação",
|
||||
"React with {emoji}" : "Reagir com {emoji}",
|
||||
"You reacted with {emoji}" : "Você reagiu com {emoji}",
|
||||
@@ -181,7 +189,7 @@ OC.L10N.register(
|
||||
"Error loading category" : "Erro ao carregar a categoria",
|
||||
"No threads yet" : "Ainda sem fios",
|
||||
"Be the first to start a discussion in this category." : "Seja o primeiro a iniciar uma discussão nesta categoria.",
|
||||
"No category ID or slug provided" : "Nenhuma categoria ou slug foi fornecido.",
|
||||
"No category ID or slug provided" : "Nenhuma categoria ou slug foi fornecido",
|
||||
"Failed to load threads" : "Falha ao carregar fios",
|
||||
"Create New Thread" : "Criar Novo Fio",
|
||||
"In {category}" : "Em {category}",
|
||||
@@ -206,21 +214,21 @@ OC.L10N.register(
|
||||
"Match exact phrase" : "Corresponder frase exata",
|
||||
"Both terms required" : "Ambos os termos são necessários",
|
||||
"Either term matches" : "Qualquer um dos termos corresponde",
|
||||
"Group conditions with parentheses" : "Agrupe as condições entre parênteses.",
|
||||
"Group conditions with parentheses" : "Agrupe as condições entre parênteses",
|
||||
"Exclude term from results" : "Excluir termo dos resultados",
|
||||
"Searching …" : "Pesquisando …",
|
||||
"Search Error" : "Erro na Pesquisa",
|
||||
"Enter a search query" : "Insira uma consulta de pesquisa",
|
||||
"Use the search box above to find threads and replies" : "Use a caixa de pesquisa acima para encontrar fios e respostas",
|
||||
"No results found" : "Nenhum resultado encontrado",
|
||||
"Try different keywords or check your syntax" : "Experimente palavras-chave diferentes ou verifique sua sintaxe.",
|
||||
"Try different keywords or check your syntax" : "Experimente palavras-chave diferentes ou verifique sua sintaxe",
|
||||
"_%n thread found_::_%n threads found_" : ["%n fio encontrado","%n de fios encontrados","%n fios encontrados"],
|
||||
"_%n reply found_::_%n replies found_" : ["%n resposta encontrada","%n de respostas encontradas","%n respostas encontradas"],
|
||||
"Please enter a search query" : "Por favor, insira um termo de pesquisa.",
|
||||
"Please select at least one search scope" : "Selecione pelo menos um escopo de pesquisa.",
|
||||
"Please enter a search query" : "Por favor, insira um termo de pesquisa",
|
||||
"Please select at least one search scope" : "Selecione pelo menos um escopo de pesquisa",
|
||||
"Failed to search" : "Falha na pesquisa",
|
||||
"Thread not found" : "Fio não encontrado",
|
||||
"The thread you are looking for does not exist or has been removed." : "O tópico que você está procurando não existe ou foi removido.",
|
||||
"The thread you are looking for does not exist or has been removed." : "O fio que você está procurando não existe ou foi removido.",
|
||||
"Back to {category}" : "Voltar para {category}",
|
||||
"Reply" : "Resposta",
|
||||
"Error loading thread" : "Erro ao carregar o fio",
|
||||
@@ -238,10 +246,10 @@ OC.L10N.register(
|
||||
"Thread unlocked" : "Fio destrancado",
|
||||
"Thread pinned" : "Fio fixado",
|
||||
"Thread unpinned" : "Fio desfixado",
|
||||
"Subscribe" : "Assinar",
|
||||
"Subscribed" : "Assinado",
|
||||
"Subscribed to thread" : "Inscrito no tópico",
|
||||
"Unsubscribed from thread" : "Cancelei a inscrição na discussão.",
|
||||
"Subscribe" : "Inscrever-se",
|
||||
"Subscribed" : "Inscrito",
|
||||
"Subscribed to thread" : "Inscrito no fio",
|
||||
"Unsubscribed from thread" : "Inscrição no fio cancelada",
|
||||
"Bookmark" : "Favorito",
|
||||
"Remove bookmark" : "Remover favorito",
|
||||
"Thread bookmarked" : "Fio marcado como favorito",
|
||||
@@ -251,16 +259,18 @@ OC.L10N.register(
|
||||
"Thread title updated" : "Título do fio atualizado",
|
||||
"Move thread" : "Mover fio",
|
||||
"Thread moved successfully" : "Fio movido com sucesso",
|
||||
"No thread ID or slug provided" : "Nenhuma identificação ou slug da thread foi fornecido.",
|
||||
"No thread ID or slug provided" : "Nenhum identificador de fio ou slug fornecido",
|
||||
"Failed to load replies" : "Falha ao carregar respostas",
|
||||
"Thread updated" : "Fio atualizado",
|
||||
"Reply updated" : "Resposta atualizada",
|
||||
"Failed to update thread" : "Falha ao atualizar o fio",
|
||||
"Failed to update reply" : "Falha ao atualizar a resposta",
|
||||
"Thread deleted" : "Fio excluído",
|
||||
"Reply deleted" : "Resposta excluída",
|
||||
"Failed to delete reply" : "Falha ao excluir a resposta",
|
||||
"Failed to update thread lock status" : "Falha ao atualizar o status de trancamento do fio",
|
||||
"Failed to update thread pin status" : "Falha ao atualizar o status da fixação do fio",
|
||||
"Failed to update subscription" : "Falha ao atualizar a assinatura",
|
||||
"Failed to update subscription" : "Falha ao atualizar a inscrição",
|
||||
"Failed to update bookmark" : "Falha ao atualizar o favorito",
|
||||
"Failed to update thread title" : "Falha ao atualizar o título do fio",
|
||||
"Failed to move thread" : "Falha ao mover o fio",
|
||||
@@ -270,10 +280,12 @@ OC.L10N.register(
|
||||
"Error loading preferences" : "Erro ao carregar as preferências",
|
||||
"Notifications" : "Notificações",
|
||||
"Configure how you receive notifications" : "Configure como você recebe notificações",
|
||||
"Auto-subscribe to threads I create" : "Assinar automaticamente as discussões que eu criar.",
|
||||
"Auto-subscribe to threads I create" : "Inscreva-me automaticamente nos fios que eu criar",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Quando ativado, você receberá automaticamente notificações sobre respostas aos fios que criar",
|
||||
"Auto-subscribe to threads I reply to" : "Inscrever-se automaticamente nos fios aos quais respondo",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "Quando ativado, você receberá automaticamente notificações sobre novas respostas nos fios em que você respondeu.",
|
||||
"Files" : "Arquivos",
|
||||
"Configure file upload settings" : "Configure as definições de envio de arquivos..",
|
||||
"Configure file upload settings" : "Configurar as definições de envio de arquivos",
|
||||
"Upload directory" : "Diretório de upload",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Os arquivos anexados aos fios ou respostas serão enviados para este diretório nos seus arquivos Nextcloud",
|
||||
"Browse" : "Navegar",
|
||||
@@ -283,7 +295,7 @@ OC.L10N.register(
|
||||
"You can use BBCode formatting in your signature" : "Você pode usar a formatação BBCode em sua assinatura",
|
||||
"Enter your signature …" : "Insira sua assinatura …",
|
||||
"Failed to save preferences" : "Falha ao salvar preferências",
|
||||
"Select upload directory" : "Selecione o diretório de upload",
|
||||
"Select upload directory" : "Selecionar o diretório de upload",
|
||||
"BBCode management" : "Gerenciamento do BBCode",
|
||||
"Manage custom BBCode tags for formatting" : "Gerencie etiquetas BBCode personalizadas para formatação",
|
||||
"Error loading BBCodes" : "Erro ao carregar BBCodes",
|
||||
@@ -295,7 +307,7 @@ OC.L10N.register(
|
||||
"Disabled BBCodes" : "BBCodes desativados",
|
||||
"These BBCode tags are currently inactive" : "Estas etiquetas BBCode estão atualmente inativas",
|
||||
"No enabled BBCodes" : "Nenhum BBCode ativado",
|
||||
"Parses Inner" : "Analisa o interior",
|
||||
"Parses Inner" : "Analisa o inetrno",
|
||||
"Delete BBCode" : "Excluir BBCode",
|
||||
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Tem certeza de que deseja excluir a etiqueta BBCode [{tag}]?",
|
||||
"This action cannot be undone." : "Esta ação não pode ser desfeita.",
|
||||
@@ -305,14 +317,14 @@ OC.L10N.register(
|
||||
"The BBCode tag name (without brackets)" : "O nome da etiqueta BBCode (sem colchetes)",
|
||||
"HTML replacement" : "Substituição HTML",
|
||||
"e.g., {strongStart}{content}{strongEnd}" : "p. ex., {strongStart}{content}{strongEnd}",
|
||||
"Use {content} for the tag content and {paramName} for parameters" : "Use {content} para o conteúdo da etiqueta e {paramName} para os parâmetros.",
|
||||
"Use {content} for the tag content and {paramName} for parameters" : "Use {content} para o conteúdo da etiqueta e {paramName} para os parâmetros",
|
||||
"e.g., {tagStart}Hello world{tagEnd}" : "p. ex., {tagStart}Olá, mundo{tagEnd}",
|
||||
"Example usage of this BBCode tag" : "Exemplo de uso desta etiqueta BBCode",
|
||||
"Description" : "Descrição",
|
||||
"Brief description of what this BBCode does" : "Breve descrição do que este BBCode faz",
|
||||
"Enabled" : "Ativado",
|
||||
"Parse inner content" : "Analisar conteúdo interno",
|
||||
"If enabled, BBCode tags inside this tag will also be parsed" : "Se ativada, as tags BBCode dentro desta etiqueta também serão analisadas.",
|
||||
"If enabled, BBCode tags inside this tag will also be parsed" : "Se ativada, as etiquetas BBCode dentro desta etiqueta também serão analisadas.",
|
||||
"Create category" : "Criar categoria",
|
||||
"Edit category" : "Editar categoria",
|
||||
"Configure category details" : "Configurar detalhes da categoria",
|
||||
@@ -322,27 +334,27 @@ OC.L10N.register(
|
||||
"Name" : "Nome",
|
||||
"Enter category name" : "Insira o nome da categoria",
|
||||
"Slug" : "Slug",
|
||||
"URL-friendly identifier (e.g., \"{slug}\")" : "Identificador amigável para URL (por exemplo, \"{slug}\")",
|
||||
"Slug cannot be changed after category creation" : "O slug não pode ser alterado após a criação da categoria.",
|
||||
"URL-friendly identifier (e.g., \"{slug}\")" : "Identificador amigável para URL (p. ex., \"{slug}\")",
|
||||
"Slug cannot be changed after category creation" : "O slug não pode ser alterado após a criação da categoria",
|
||||
"Enter category description (optional)" : "Insira a descrição da categoria (opcional)",
|
||||
"New" : "Nova",
|
||||
"Permissions" : "Permissões",
|
||||
"Control which roles can access and moderate this category" : "Controle quais funções podem acessar e moderar esta categoria.",
|
||||
"Control which roles can access and moderate this category" : "Controle quais funções podem acessar e moderar esta categoria",
|
||||
"Roles that can view" : "Funções que podem visualizar",
|
||||
"Select roles that can view this category and its threads" : "Selecione as funções que podem visualizar esta categoria e suas discussões.",
|
||||
"Select roles that can view this category and its threads" : "Selecione as funções que podem visualizar esta categoria e seus fios",
|
||||
"Roles that can moderate" : "Funções que podem moderar",
|
||||
"Select roles that can moderate (edit/delete) content in this category" : "Selecione as funções que podem moderar (editar/excluir) conteúdo nesta categoria.",
|
||||
"Select roles that can moderate (edit/delete) content in this category" : "Selecione as funções que podem moderar (editar/excluir) conteúdo nesta categoria",
|
||||
"Select roles …" : "Selecione as funções…",
|
||||
"Manage forum categories and organization" : "Gerenciar categorias e organização do fórum",
|
||||
"Error loading categories" : "Erro ao carregar as categorias",
|
||||
"No categories in this header" : "Nenhuma categoria neste cabeçalho",
|
||||
"Delete category" : "Excluir categoria",
|
||||
"Are you sure you want to delete the category \"{name}\"?" : "Tem certeza de que deseja excluir a categoria \"{name}\"?",
|
||||
"_This category contains %n thread._::_This category contains %n threads._" : ["Esta categoria contém %n tópicos.","Esta categoria contém %n tópicos.","Esta categoria contém %n tópicos."],
|
||||
"_This category contains %n thread._::_This category contains %n threads._" : ["Esta categoria contém %n fio.","Esta categoria contém %n de fios.","Esta categoria contém %n fios."],
|
||||
"What should happen to the threads?" : "O que deve acontecer com os fios?",
|
||||
"Move threads to another category" : "Mova os tópicos para outra categoria.",
|
||||
"Delete all threads (soft delete)" : "Excluir todas as conversas (exclusão lógica)",
|
||||
"Threads will be hidden but not permanently deleted" : "Os tópicos serão ocultados, mas não excluídos permanentemente.",
|
||||
"Move threads to another category" : "Mova os fios para outra categoria",
|
||||
"Delete all threads (soft delete)" : "Excluir todos os fios (soft delete/exclusão lógica)",
|
||||
"Threads will be hidden but not permanently deleted" : "Os fios serão ocultados, mas não excluídos permanentemente",
|
||||
"Select target category" : "Selecione a categoria alvo",
|
||||
"-- Select a category --" : "-- Selecione uma categoria --",
|
||||
"Create header" : "Criar cabeçalho",
|
||||
@@ -371,27 +383,27 @@ OC.L10N.register(
|
||||
"Top contributors" : "Principais colaboradores",
|
||||
"No contributors yet" : "Ainda sem colaboradores",
|
||||
"Last 7 days" : "Últimos 7 dias",
|
||||
"All time" : "Todo o tempo",
|
||||
"All time" : "Todos os tempos",
|
||||
"General settings" : "Configurações gerais",
|
||||
"Configure general forum settings" : "Configure as definições gerais do fórum",
|
||||
"Loading settings …" : "Carregando configurações …",
|
||||
"Error loading settings" : "Erro ao carregar configurações",
|
||||
"Appearance" : "Aparência",
|
||||
"Customize how your forum looks to users" : "Personalize a aparência do seu fórum para os usuários.",
|
||||
"Customize how your forum looks to users" : "Personalize a aparência do seu fórum para os usuários",
|
||||
"Forum title" : "Título do fórum",
|
||||
"Displayed at the top of the forum home page" : "Exibido na parte superior da página inicial do fórum.",
|
||||
"Displayed at the top of the forum home page" : "Exibido na parte superior da página inicial do fórum",
|
||||
"Forum subtitle" : "Subtítulo do fórum",
|
||||
"Welcome to the forum" : "Bem-vindo ao fórum",
|
||||
"A brief description shown below the title" : "Uma breve descrição é apresentada abaixo do título.",
|
||||
"A brief description shown below the title" : "Uma breve descrição é apresentada abaixo do título",
|
||||
"Access control" : "Controle de acesso",
|
||||
"Manage who can access the forum" : "Gerencie quem pode acessar o fórum.",
|
||||
"Manage who can access the forum" : "Gerencie quem pode acessar o fórum",
|
||||
"Allow guest access" : "Permitir acesso de convidados",
|
||||
"When enabled, unauthenticated users can view forum content in read-only mode" : "Quando ativada, essa opção permite que usuários não autenticados visualizem o conteúdo do fórum em modo somente leitura.",
|
||||
"When enabled, unauthenticated users can view forum content in read-only mode" : "Quando ativada, esta opção permite que usuários não autenticados visualizem o conteúdo do fórum em modo somente leitura",
|
||||
"Settings saved" : "Configurações salvas",
|
||||
"Failed to save settings" : "Falha ao salvar configurações",
|
||||
"Create role" : "Criar função",
|
||||
"Edit role" : "Editar função",
|
||||
"Configure role permissions and category access" : "Configure as permissões de função e o acesso por categoria.",
|
||||
"Configure role permissions and category access" : "Configure as permissões de função e o acesso por categoria",
|
||||
"Error loading role" : "Erro ao carregar a função",
|
||||
"Enter role name" : "Insira o nome da função",
|
||||
"Enter role description (optional)" : "Insira a descrição da função (opcional)",
|
||||
@@ -403,12 +415,12 @@ OC.L10N.register(
|
||||
"Reset" : "Redefinir",
|
||||
"Role permissions" : "Permissões da função",
|
||||
"Set global permissions for this role" : "Definir permissões globais para esta função",
|
||||
"Can access admin tools" : "Pode acessar as ferramentas administrativas.",
|
||||
"Allow access to the admin dashboard and tools" : "Permitir acesso ao painel de administração e às ferramentas.",
|
||||
"Can access admin tools" : "Pode acessar as ferramentas administrativas",
|
||||
"Allow access to the admin dashboard and tools" : "Permitir acesso ao painel e às ferramentas de administração",
|
||||
"Can edit roles" : "Pode editar funções",
|
||||
"Allow creating, editing and deleting roles" : "Permitir a criação, edição e exclusão de funções.",
|
||||
"Can edit categories" : "É possível editar as categorias.",
|
||||
"Allow creating, editing and deleting categories" : "Permitir a criação, edição e exclusão de categorias.",
|
||||
"Allow creating, editing and deleting roles" : "Permitir a criação, edição e exclusão de funções",
|
||||
"Can edit categories" : "Pode editar as categorias",
|
||||
"Allow creating, editing and deleting categories" : "Permitir a criação, edição e exclusão de categorias",
|
||||
"Category permissions" : "Permissões de categoria",
|
||||
"Set which categories this role can access" : "Defina quais categorias esta função pode acessar",
|
||||
"Category" : "Categoria",
|
||||
@@ -416,17 +428,17 @@ OC.L10N.register(
|
||||
"Can moderate" : "Pode moderar",
|
||||
"Allow" : "Permitir",
|
||||
"No categories available" : "Nenhuma categoria disponível",
|
||||
"Admin role must have all permissions enabled" : "A função de administrador deve ter todas as permissões ativadas.",
|
||||
"Admin role has full access to all categories" : "A função de administrador tem acesso total a todas as categorias.",
|
||||
"Guest role cannot have admin permissions" : "A função de convidado não pode ter permissões de administrador.",
|
||||
"Guest role cannot moderate categories" : "A função de convidado não pode moderar categorias.",
|
||||
"You can control which categories guests can view using the checkboxes below." : "Você pode controlar quais categorias os hóspedes podem visualizar usando as caixas de seleção abaixo.",
|
||||
"Guest access is currently disabled" : "O acesso de visitantes está desativado no momento.",
|
||||
"Admin role must have all permissions enabled" : "A função de administrador deve ter todas as permissões ativadas",
|
||||
"Admin role has full access to all categories" : "A função de administrador tem acesso total a todas as categorias",
|
||||
"Guest role cannot have admin permissions" : "A função de convidado não pode ter permissões de administrador",
|
||||
"Guest role cannot moderate categories" : "A função de convidado não pode moderar categorias",
|
||||
"You can control which categories guests can view using the checkboxes below." : "Você pode controlar quais categorias os convidados podem visualizar usando as caixas de seleção abaixo.",
|
||||
"Guest access is currently disabled" : "O acesso de convidados está desativado no momento",
|
||||
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Usuários convidados não poderão acessar o fórum até que o acesso de convidados seja habilitado nas configurações do fórum.",
|
||||
"Go to forum settings" : "Ir para as configurações do fórum",
|
||||
"Default role cannot moderate categories" : "A função padrão não pode moderar categorias.",
|
||||
"Default role cannot moderate categories" : "A função padrão não pode moderar categorias",
|
||||
"Role management" : "Gerenciamento das funções",
|
||||
"Create and manage forum roles and permissions" : "Criar e gerenciar funções e permissões no fórum.",
|
||||
"Create and manage forum roles and permissions" : "Criar e gerenciar funções e permissões no fórum",
|
||||
"Loading roles …" : "Carregando funções …",
|
||||
"Error loading roles" : "Erro ao carregar funções",
|
||||
"No roles found" : "Nenhuma função encontrada",
|
||||
@@ -436,17 +448,17 @@ OC.L10N.register(
|
||||
"Actions" : "Ações",
|
||||
"No description" : "Sem descrição",
|
||||
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Tem certeza de que deseja excluir a função \"{name}\"? Esta ação não pode ser desfeita.",
|
||||
"System roles cannot be deleted" : "As funções do sistema não podem ser excluídas.",
|
||||
"System roles cannot be deleted" : "As funções do sistema não podem ser excluídas",
|
||||
"User management" : "Gerenciamento de usuários",
|
||||
"Manage forum users, roles and permissions" : "Gerenciar usuários, funções e permissões do fórum",
|
||||
"Loading users …" : "Carregando usuários …",
|
||||
"Error loading users" : "Erro ao carregar usuários",
|
||||
"No users found" : "Nenhum usuário encontrado",
|
||||
"There are no forum users yet" : "Ainda não há usuários no fórum",
|
||||
"Joined" : "Entrou",
|
||||
"Joined" : "Se cadastrou",
|
||||
"Status" : "Status",
|
||||
"Active" : "Ativada",
|
||||
"Deleted" : "Excluída",
|
||||
"Active" : "Ativo",
|
||||
"Deleted" : "Excluído",
|
||||
"No roles" : "Sem funções",
|
||||
"Select roles" : "Selecione funções",
|
||||
"Edit roles" : "Editar funções",
|
||||
|
||||
132
l10n/pt_BR.json
132
l10n/pt_BR.json
@@ -18,9 +18,8 @@
|
||||
"Hidden content" : "Conteúdo oculto",
|
||||
"Spoilers" : "Spoilers",
|
||||
"Attachment" : "Anexo",
|
||||
"Welcome to Nextcloud Forums" : "Bem-vindo ao Nextcloud Fórums",
|
||||
"Welcome to the Nextcloud Forums!" : "Bem-vindo ao Nextcloud Fórums!",
|
||||
"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 é um fórum comunitário integrado à sua instância do Nextcloud. Aqui você pode discutir tópicos, compartilhar ideias e colaborar com outros usuários.",
|
||||
"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 é um fórum comunitário integrado à sua instância Nextcloud. Aqui você pode discutir tópicos, compartilhar ideias e colaborar com outros usuários.",
|
||||
"Features:" : "Características:",
|
||||
"Create and reply to threads" : "Crie e responda a fios",
|
||||
"Organize discussions by categories" : "Organize as discussões por categorias",
|
||||
@@ -34,6 +33,7 @@
|
||||
"Italic text" : "Texto em itálico",
|
||||
"Underlined text" : "Texto sublinhado",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Sinta-se à vontade para iniciar uma nova discussão ou responder a fios existentes. Boas postagens!",
|
||||
"Welcome to Nextcloud Forums" : "Bem-vindo ao Nextcloud Fórums",
|
||||
"Forum" : "Fórum",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} nova resposta em {thread}","{count} de novas respostas em {thread}","{count} novas respostas em {thread}"],
|
||||
"{user} mentioned you in {thread}" : "{user} mencionou você em {thread}",
|
||||
@@ -55,7 +55,7 @@
|
||||
"Expand" : "Expandir",
|
||||
"Collapse" : "Recolher",
|
||||
"{bStart}Please note:{bEnd} Attached files will be visible to anyone in the forum, regardless of the file's sharing settings." : "{bStart}Observação:{bEnd} Os arquivos anexados ficarão visíveis para todos no fórum, independentemente das configurações de compartilhamento do arquivo.",
|
||||
"Drop file here to upload" : "Arraste o arquivo aqui para fazer o upload.",
|
||||
"Drop file here to upload" : "Arraste o arquivo aqui para fazer o upload",
|
||||
"Hello world!" : "Olá, mundo!",
|
||||
"Hello moon!" : "Olá, lua!",
|
||||
"Font style bold" : "Estilo da fonte em negrito",
|
||||
@@ -66,7 +66,7 @@
|
||||
"Email (clickable)" : "E-mail (clicável)",
|
||||
"URL (clickable)" : "URL (clicável)",
|
||||
"Image (not clickable)" : "Imagem (não clicável)",
|
||||
"Quote" : "Cotação",
|
||||
"Quote" : "Citação",
|
||||
"Embedded YouTube video" : "Vídeo do YouTube incorporado",
|
||||
"Font (name)" : "Fonte (nome)",
|
||||
"Font size" : "Tamanho da fonte",
|
||||
@@ -109,13 +109,13 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"Create" : "Criar",
|
||||
"Update" : "Atualizar",
|
||||
"Move thread to category" : "Mover tópico para categoria",
|
||||
"Select the category to move this thread to:" : "Selecione a categoria para a qual deseja mover esta discussão:",
|
||||
"Move thread to category" : "Mover fio para categoria",
|
||||
"Select the category to move this thread to:" : "Selecione a categoria para a qual deseja mover este fio:",
|
||||
"Select a category …" : "Selecione uma categoria …",
|
||||
"Loading categories …" : "Carregando categorias …",
|
||||
"Move" : "Mover",
|
||||
"Cannot move to a category header. Please select a category instead." : "Não é possível navegar até o cabeçalho de uma categoria. Por favor, selecione uma categoria.",
|
||||
"This thread is already in this category." : "Este tópico já está nesta categoria.",
|
||||
"Cannot move to a category header. Please select a category instead." : "Não é possível mover para um cabeçalho de categoria. Por favor, selecione uma categoria.",
|
||||
"This thread is already in this category." : "Este fio já está nesta categoria.",
|
||||
"Failed to load categories" : "Falha ao carregar categorias",
|
||||
"Page not found" : "Página não encontrada",
|
||||
"The page you are looking for could not be found." : "A página que você está procurando não foi encontrada.",
|
||||
@@ -128,14 +128,22 @@
|
||||
"Last page" : "Última página",
|
||||
"Go to page {page}" : "Ir para página {page}",
|
||||
"Edited" : "Editado",
|
||||
"Quote reply" : "Citar resposta",
|
||||
"Quote reply" : "Responder com citação",
|
||||
"Edit" : "Editar",
|
||||
"Delete" : "Excluir",
|
||||
"View edit history" : "Ver histórico de edições",
|
||||
"Are you sure you want to delete this post? This action cannot be undone." : "Tem certeza de que deseja excluir esta postagem? Esta ação não pode ser desfeita.",
|
||||
"Unread" : "Não lido",
|
||||
"Edit your reply …" : "Edite sua resposta …",
|
||||
"Save" : "Salvar",
|
||||
"Are you sure you want to discard your changes?" : "Tem certeza de que deseja descartar suas alterações?",
|
||||
"Edit history" : "Histórico de edições",
|
||||
"Loading history …" : "Carregando histórico …",
|
||||
"This post has no edit history." : "Esta postagem não tem histórico de edições.",
|
||||
"Current version" : "Versão atual",
|
||||
"Edited by" : "Editada por",
|
||||
"Failed to load edit history" : "Falha ao carregar o histórico de edições",
|
||||
"Version {index}" : "Versão {index}",
|
||||
"Add reaction" : "Adicionar reação",
|
||||
"React with {emoji}" : "Reagir com {emoji}",
|
||||
"You reacted with {emoji}" : "Você reagiu com {emoji}",
|
||||
@@ -179,7 +187,7 @@
|
||||
"Error loading category" : "Erro ao carregar a categoria",
|
||||
"No threads yet" : "Ainda sem fios",
|
||||
"Be the first to start a discussion in this category." : "Seja o primeiro a iniciar uma discussão nesta categoria.",
|
||||
"No category ID or slug provided" : "Nenhuma categoria ou slug foi fornecido.",
|
||||
"No category ID or slug provided" : "Nenhuma categoria ou slug foi fornecido",
|
||||
"Failed to load threads" : "Falha ao carregar fios",
|
||||
"Create New Thread" : "Criar Novo Fio",
|
||||
"In {category}" : "Em {category}",
|
||||
@@ -204,21 +212,21 @@
|
||||
"Match exact phrase" : "Corresponder frase exata",
|
||||
"Both terms required" : "Ambos os termos são necessários",
|
||||
"Either term matches" : "Qualquer um dos termos corresponde",
|
||||
"Group conditions with parentheses" : "Agrupe as condições entre parênteses.",
|
||||
"Group conditions with parentheses" : "Agrupe as condições entre parênteses",
|
||||
"Exclude term from results" : "Excluir termo dos resultados",
|
||||
"Searching …" : "Pesquisando …",
|
||||
"Search Error" : "Erro na Pesquisa",
|
||||
"Enter a search query" : "Insira uma consulta de pesquisa",
|
||||
"Use the search box above to find threads and replies" : "Use a caixa de pesquisa acima para encontrar fios e respostas",
|
||||
"No results found" : "Nenhum resultado encontrado",
|
||||
"Try different keywords or check your syntax" : "Experimente palavras-chave diferentes ou verifique sua sintaxe.",
|
||||
"Try different keywords or check your syntax" : "Experimente palavras-chave diferentes ou verifique sua sintaxe",
|
||||
"_%n thread found_::_%n threads found_" : ["%n fio encontrado","%n de fios encontrados","%n fios encontrados"],
|
||||
"_%n reply found_::_%n replies found_" : ["%n resposta encontrada","%n de respostas encontradas","%n respostas encontradas"],
|
||||
"Please enter a search query" : "Por favor, insira um termo de pesquisa.",
|
||||
"Please select at least one search scope" : "Selecione pelo menos um escopo de pesquisa.",
|
||||
"Please enter a search query" : "Por favor, insira um termo de pesquisa",
|
||||
"Please select at least one search scope" : "Selecione pelo menos um escopo de pesquisa",
|
||||
"Failed to search" : "Falha na pesquisa",
|
||||
"Thread not found" : "Fio não encontrado",
|
||||
"The thread you are looking for does not exist or has been removed." : "O tópico que você está procurando não existe ou foi removido.",
|
||||
"The thread you are looking for does not exist or has been removed." : "O fio que você está procurando não existe ou foi removido.",
|
||||
"Back to {category}" : "Voltar para {category}",
|
||||
"Reply" : "Resposta",
|
||||
"Error loading thread" : "Erro ao carregar o fio",
|
||||
@@ -236,10 +244,10 @@
|
||||
"Thread unlocked" : "Fio destrancado",
|
||||
"Thread pinned" : "Fio fixado",
|
||||
"Thread unpinned" : "Fio desfixado",
|
||||
"Subscribe" : "Assinar",
|
||||
"Subscribed" : "Assinado",
|
||||
"Subscribed to thread" : "Inscrito no tópico",
|
||||
"Unsubscribed from thread" : "Cancelei a inscrição na discussão.",
|
||||
"Subscribe" : "Inscrever-se",
|
||||
"Subscribed" : "Inscrito",
|
||||
"Subscribed to thread" : "Inscrito no fio",
|
||||
"Unsubscribed from thread" : "Inscrição no fio cancelada",
|
||||
"Bookmark" : "Favorito",
|
||||
"Remove bookmark" : "Remover favorito",
|
||||
"Thread bookmarked" : "Fio marcado como favorito",
|
||||
@@ -249,16 +257,18 @@
|
||||
"Thread title updated" : "Título do fio atualizado",
|
||||
"Move thread" : "Mover fio",
|
||||
"Thread moved successfully" : "Fio movido com sucesso",
|
||||
"No thread ID or slug provided" : "Nenhuma identificação ou slug da thread foi fornecido.",
|
||||
"No thread ID or slug provided" : "Nenhum identificador de fio ou slug fornecido",
|
||||
"Failed to load replies" : "Falha ao carregar respostas",
|
||||
"Thread updated" : "Fio atualizado",
|
||||
"Reply updated" : "Resposta atualizada",
|
||||
"Failed to update thread" : "Falha ao atualizar o fio",
|
||||
"Failed to update reply" : "Falha ao atualizar a resposta",
|
||||
"Thread deleted" : "Fio excluído",
|
||||
"Reply deleted" : "Resposta excluída",
|
||||
"Failed to delete reply" : "Falha ao excluir a resposta",
|
||||
"Failed to update thread lock status" : "Falha ao atualizar o status de trancamento do fio",
|
||||
"Failed to update thread pin status" : "Falha ao atualizar o status da fixação do fio",
|
||||
"Failed to update subscription" : "Falha ao atualizar a assinatura",
|
||||
"Failed to update subscription" : "Falha ao atualizar a inscrição",
|
||||
"Failed to update bookmark" : "Falha ao atualizar o favorito",
|
||||
"Failed to update thread title" : "Falha ao atualizar o título do fio",
|
||||
"Failed to move thread" : "Falha ao mover o fio",
|
||||
@@ -268,10 +278,12 @@
|
||||
"Error loading preferences" : "Erro ao carregar as preferências",
|
||||
"Notifications" : "Notificações",
|
||||
"Configure how you receive notifications" : "Configure como você recebe notificações",
|
||||
"Auto-subscribe to threads I create" : "Assinar automaticamente as discussões que eu criar.",
|
||||
"Auto-subscribe to threads I create" : "Inscreva-me automaticamente nos fios que eu criar",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "Quando ativado, você receberá automaticamente notificações sobre respostas aos fios que criar",
|
||||
"Auto-subscribe to threads I reply to" : "Inscrever-se automaticamente nos fios aos quais respondo",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "Quando ativado, você receberá automaticamente notificações sobre novas respostas nos fios em que você respondeu.",
|
||||
"Files" : "Arquivos",
|
||||
"Configure file upload settings" : "Configure as definições de envio de arquivos..",
|
||||
"Configure file upload settings" : "Configurar as definições de envio de arquivos",
|
||||
"Upload directory" : "Diretório de upload",
|
||||
"Files attached to threads or replies will be uploaded to this directory in your Nextcloud files" : "Os arquivos anexados aos fios ou respostas serão enviados para este diretório nos seus arquivos Nextcloud",
|
||||
"Browse" : "Navegar",
|
||||
@@ -281,7 +293,7 @@
|
||||
"You can use BBCode formatting in your signature" : "Você pode usar a formatação BBCode em sua assinatura",
|
||||
"Enter your signature …" : "Insira sua assinatura …",
|
||||
"Failed to save preferences" : "Falha ao salvar preferências",
|
||||
"Select upload directory" : "Selecione o diretório de upload",
|
||||
"Select upload directory" : "Selecionar o diretório de upload",
|
||||
"BBCode management" : "Gerenciamento do BBCode",
|
||||
"Manage custom BBCode tags for formatting" : "Gerencie etiquetas BBCode personalizadas para formatação",
|
||||
"Error loading BBCodes" : "Erro ao carregar BBCodes",
|
||||
@@ -293,7 +305,7 @@
|
||||
"Disabled BBCodes" : "BBCodes desativados",
|
||||
"These BBCode tags are currently inactive" : "Estas etiquetas BBCode estão atualmente inativas",
|
||||
"No enabled BBCodes" : "Nenhum BBCode ativado",
|
||||
"Parses Inner" : "Analisa o interior",
|
||||
"Parses Inner" : "Analisa o inetrno",
|
||||
"Delete BBCode" : "Excluir BBCode",
|
||||
"Are you sure you want to delete the BBCode tag [{tag}]?" : "Tem certeza de que deseja excluir a etiqueta BBCode [{tag}]?",
|
||||
"This action cannot be undone." : "Esta ação não pode ser desfeita.",
|
||||
@@ -303,14 +315,14 @@
|
||||
"The BBCode tag name (without brackets)" : "O nome da etiqueta BBCode (sem colchetes)",
|
||||
"HTML replacement" : "Substituição HTML",
|
||||
"e.g., {strongStart}{content}{strongEnd}" : "p. ex., {strongStart}{content}{strongEnd}",
|
||||
"Use {content} for the tag content and {paramName} for parameters" : "Use {content} para o conteúdo da etiqueta e {paramName} para os parâmetros.",
|
||||
"Use {content} for the tag content and {paramName} for parameters" : "Use {content} para o conteúdo da etiqueta e {paramName} para os parâmetros",
|
||||
"e.g., {tagStart}Hello world{tagEnd}" : "p. ex., {tagStart}Olá, mundo{tagEnd}",
|
||||
"Example usage of this BBCode tag" : "Exemplo de uso desta etiqueta BBCode",
|
||||
"Description" : "Descrição",
|
||||
"Brief description of what this BBCode does" : "Breve descrição do que este BBCode faz",
|
||||
"Enabled" : "Ativado",
|
||||
"Parse inner content" : "Analisar conteúdo interno",
|
||||
"If enabled, BBCode tags inside this tag will also be parsed" : "Se ativada, as tags BBCode dentro desta etiqueta também serão analisadas.",
|
||||
"If enabled, BBCode tags inside this tag will also be parsed" : "Se ativada, as etiquetas BBCode dentro desta etiqueta também serão analisadas.",
|
||||
"Create category" : "Criar categoria",
|
||||
"Edit category" : "Editar categoria",
|
||||
"Configure category details" : "Configurar detalhes da categoria",
|
||||
@@ -320,27 +332,27 @@
|
||||
"Name" : "Nome",
|
||||
"Enter category name" : "Insira o nome da categoria",
|
||||
"Slug" : "Slug",
|
||||
"URL-friendly identifier (e.g., \"{slug}\")" : "Identificador amigável para URL (por exemplo, \"{slug}\")",
|
||||
"Slug cannot be changed after category creation" : "O slug não pode ser alterado após a criação da categoria.",
|
||||
"URL-friendly identifier (e.g., \"{slug}\")" : "Identificador amigável para URL (p. ex., \"{slug}\")",
|
||||
"Slug cannot be changed after category creation" : "O slug não pode ser alterado após a criação da categoria",
|
||||
"Enter category description (optional)" : "Insira a descrição da categoria (opcional)",
|
||||
"New" : "Nova",
|
||||
"Permissions" : "Permissões",
|
||||
"Control which roles can access and moderate this category" : "Controle quais funções podem acessar e moderar esta categoria.",
|
||||
"Control which roles can access and moderate this category" : "Controle quais funções podem acessar e moderar esta categoria",
|
||||
"Roles that can view" : "Funções que podem visualizar",
|
||||
"Select roles that can view this category and its threads" : "Selecione as funções que podem visualizar esta categoria e suas discussões.",
|
||||
"Select roles that can view this category and its threads" : "Selecione as funções que podem visualizar esta categoria e seus fios",
|
||||
"Roles that can moderate" : "Funções que podem moderar",
|
||||
"Select roles that can moderate (edit/delete) content in this category" : "Selecione as funções que podem moderar (editar/excluir) conteúdo nesta categoria.",
|
||||
"Select roles that can moderate (edit/delete) content in this category" : "Selecione as funções que podem moderar (editar/excluir) conteúdo nesta categoria",
|
||||
"Select roles …" : "Selecione as funções…",
|
||||
"Manage forum categories and organization" : "Gerenciar categorias e organização do fórum",
|
||||
"Error loading categories" : "Erro ao carregar as categorias",
|
||||
"No categories in this header" : "Nenhuma categoria neste cabeçalho",
|
||||
"Delete category" : "Excluir categoria",
|
||||
"Are you sure you want to delete the category \"{name}\"?" : "Tem certeza de que deseja excluir a categoria \"{name}\"?",
|
||||
"_This category contains %n thread._::_This category contains %n threads._" : ["Esta categoria contém %n tópicos.","Esta categoria contém %n tópicos.","Esta categoria contém %n tópicos."],
|
||||
"_This category contains %n thread._::_This category contains %n threads._" : ["Esta categoria contém %n fio.","Esta categoria contém %n de fios.","Esta categoria contém %n fios."],
|
||||
"What should happen to the threads?" : "O que deve acontecer com os fios?",
|
||||
"Move threads to another category" : "Mova os tópicos para outra categoria.",
|
||||
"Delete all threads (soft delete)" : "Excluir todas as conversas (exclusão lógica)",
|
||||
"Threads will be hidden but not permanently deleted" : "Os tópicos serão ocultados, mas não excluídos permanentemente.",
|
||||
"Move threads to another category" : "Mova os fios para outra categoria",
|
||||
"Delete all threads (soft delete)" : "Excluir todos os fios (soft delete/exclusão lógica)",
|
||||
"Threads will be hidden but not permanently deleted" : "Os fios serão ocultados, mas não excluídos permanentemente",
|
||||
"Select target category" : "Selecione a categoria alvo",
|
||||
"-- Select a category --" : "-- Selecione uma categoria --",
|
||||
"Create header" : "Criar cabeçalho",
|
||||
@@ -369,27 +381,27 @@
|
||||
"Top contributors" : "Principais colaboradores",
|
||||
"No contributors yet" : "Ainda sem colaboradores",
|
||||
"Last 7 days" : "Últimos 7 dias",
|
||||
"All time" : "Todo o tempo",
|
||||
"All time" : "Todos os tempos",
|
||||
"General settings" : "Configurações gerais",
|
||||
"Configure general forum settings" : "Configure as definições gerais do fórum",
|
||||
"Loading settings …" : "Carregando configurações …",
|
||||
"Error loading settings" : "Erro ao carregar configurações",
|
||||
"Appearance" : "Aparência",
|
||||
"Customize how your forum looks to users" : "Personalize a aparência do seu fórum para os usuários.",
|
||||
"Customize how your forum looks to users" : "Personalize a aparência do seu fórum para os usuários",
|
||||
"Forum title" : "Título do fórum",
|
||||
"Displayed at the top of the forum home page" : "Exibido na parte superior da página inicial do fórum.",
|
||||
"Displayed at the top of the forum home page" : "Exibido na parte superior da página inicial do fórum",
|
||||
"Forum subtitle" : "Subtítulo do fórum",
|
||||
"Welcome to the forum" : "Bem-vindo ao fórum",
|
||||
"A brief description shown below the title" : "Uma breve descrição é apresentada abaixo do título.",
|
||||
"A brief description shown below the title" : "Uma breve descrição é apresentada abaixo do título",
|
||||
"Access control" : "Controle de acesso",
|
||||
"Manage who can access the forum" : "Gerencie quem pode acessar o fórum.",
|
||||
"Manage who can access the forum" : "Gerencie quem pode acessar o fórum",
|
||||
"Allow guest access" : "Permitir acesso de convidados",
|
||||
"When enabled, unauthenticated users can view forum content in read-only mode" : "Quando ativada, essa opção permite que usuários não autenticados visualizem o conteúdo do fórum em modo somente leitura.",
|
||||
"When enabled, unauthenticated users can view forum content in read-only mode" : "Quando ativada, esta opção permite que usuários não autenticados visualizem o conteúdo do fórum em modo somente leitura",
|
||||
"Settings saved" : "Configurações salvas",
|
||||
"Failed to save settings" : "Falha ao salvar configurações",
|
||||
"Create role" : "Criar função",
|
||||
"Edit role" : "Editar função",
|
||||
"Configure role permissions and category access" : "Configure as permissões de função e o acesso por categoria.",
|
||||
"Configure role permissions and category access" : "Configure as permissões de função e o acesso por categoria",
|
||||
"Error loading role" : "Erro ao carregar a função",
|
||||
"Enter role name" : "Insira o nome da função",
|
||||
"Enter role description (optional)" : "Insira a descrição da função (opcional)",
|
||||
@@ -401,12 +413,12 @@
|
||||
"Reset" : "Redefinir",
|
||||
"Role permissions" : "Permissões da função",
|
||||
"Set global permissions for this role" : "Definir permissões globais para esta função",
|
||||
"Can access admin tools" : "Pode acessar as ferramentas administrativas.",
|
||||
"Allow access to the admin dashboard and tools" : "Permitir acesso ao painel de administração e às ferramentas.",
|
||||
"Can access admin tools" : "Pode acessar as ferramentas administrativas",
|
||||
"Allow access to the admin dashboard and tools" : "Permitir acesso ao painel e às ferramentas de administração",
|
||||
"Can edit roles" : "Pode editar funções",
|
||||
"Allow creating, editing and deleting roles" : "Permitir a criação, edição e exclusão de funções.",
|
||||
"Can edit categories" : "É possível editar as categorias.",
|
||||
"Allow creating, editing and deleting categories" : "Permitir a criação, edição e exclusão de categorias.",
|
||||
"Allow creating, editing and deleting roles" : "Permitir a criação, edição e exclusão de funções",
|
||||
"Can edit categories" : "Pode editar as categorias",
|
||||
"Allow creating, editing and deleting categories" : "Permitir a criação, edição e exclusão de categorias",
|
||||
"Category permissions" : "Permissões de categoria",
|
||||
"Set which categories this role can access" : "Defina quais categorias esta função pode acessar",
|
||||
"Category" : "Categoria",
|
||||
@@ -414,17 +426,17 @@
|
||||
"Can moderate" : "Pode moderar",
|
||||
"Allow" : "Permitir",
|
||||
"No categories available" : "Nenhuma categoria disponível",
|
||||
"Admin role must have all permissions enabled" : "A função de administrador deve ter todas as permissões ativadas.",
|
||||
"Admin role has full access to all categories" : "A função de administrador tem acesso total a todas as categorias.",
|
||||
"Guest role cannot have admin permissions" : "A função de convidado não pode ter permissões de administrador.",
|
||||
"Guest role cannot moderate categories" : "A função de convidado não pode moderar categorias.",
|
||||
"You can control which categories guests can view using the checkboxes below." : "Você pode controlar quais categorias os hóspedes podem visualizar usando as caixas de seleção abaixo.",
|
||||
"Guest access is currently disabled" : "O acesso de visitantes está desativado no momento.",
|
||||
"Admin role must have all permissions enabled" : "A função de administrador deve ter todas as permissões ativadas",
|
||||
"Admin role has full access to all categories" : "A função de administrador tem acesso total a todas as categorias",
|
||||
"Guest role cannot have admin permissions" : "A função de convidado não pode ter permissões de administrador",
|
||||
"Guest role cannot moderate categories" : "A função de convidado não pode moderar categorias",
|
||||
"You can control which categories guests can view using the checkboxes below." : "Você pode controlar quais categorias os convidados podem visualizar usando as caixas de seleção abaixo.",
|
||||
"Guest access is currently disabled" : "O acesso de convidados está desativado no momento",
|
||||
"Guest users will not be able to access the forum until guest access is enabled in the forum settings." : "Usuários convidados não poderão acessar o fórum até que o acesso de convidados seja habilitado nas configurações do fórum.",
|
||||
"Go to forum settings" : "Ir para as configurações do fórum",
|
||||
"Default role cannot moderate categories" : "A função padrão não pode moderar categorias.",
|
||||
"Default role cannot moderate categories" : "A função padrão não pode moderar categorias",
|
||||
"Role management" : "Gerenciamento das funções",
|
||||
"Create and manage forum roles and permissions" : "Criar e gerenciar funções e permissões no fórum.",
|
||||
"Create and manage forum roles and permissions" : "Criar e gerenciar funções e permissões no fórum",
|
||||
"Loading roles …" : "Carregando funções …",
|
||||
"Error loading roles" : "Erro ao carregar funções",
|
||||
"No roles found" : "Nenhuma função encontrada",
|
||||
@@ -434,17 +446,17 @@
|
||||
"Actions" : "Ações",
|
||||
"No description" : "Sem descrição",
|
||||
"Are you sure you want to delete the role \"{name}\"? This action cannot be undone." : "Tem certeza de que deseja excluir a função \"{name}\"? Esta ação não pode ser desfeita.",
|
||||
"System roles cannot be deleted" : "As funções do sistema não podem ser excluídas.",
|
||||
"System roles cannot be deleted" : "As funções do sistema não podem ser excluídas",
|
||||
"User management" : "Gerenciamento de usuários",
|
||||
"Manage forum users, roles and permissions" : "Gerenciar usuários, funções e permissões do fórum",
|
||||
"Loading users …" : "Carregando usuários …",
|
||||
"Error loading users" : "Erro ao carregar usuários",
|
||||
"No users found" : "Nenhum usuário encontrado",
|
||||
"There are no forum users yet" : "Ainda não há usuários no fórum",
|
||||
"Joined" : "Entrou",
|
||||
"Joined" : "Se cadastrou",
|
||||
"Status" : "Status",
|
||||
"Active" : "Ativada",
|
||||
"Deleted" : "Excluída",
|
||||
"Active" : "Ativo",
|
||||
"Deleted" : "Excluído",
|
||||
"No roles" : "Sem funções",
|
||||
"Select roles" : "Selecione funções",
|
||||
"Edit roles" : "Editar funções",
|
||||
|
||||
@@ -20,10 +20,10 @@ OC.L10N.register(
|
||||
"Hidden content" : "Conteúdo oculto",
|
||||
"Spoilers" : "Contém spoilers",
|
||||
"Attachment" : "Anexo",
|
||||
"Welcome to Nextcloud Forums" : "Bem-vindo aos Fóruns Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Bem-vindo aos Fóruns do Nextcloud!",
|
||||
"Bold text" : "Texto a negrito",
|
||||
"Underlined text" : "Texto sublinhado",
|
||||
"Welcome to Nextcloud Forums" : "Bem-vindo aos Fóruns Nextcloud",
|
||||
"Forum" : "Fórum",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Crie discussões, partilhe ideias e colabore com a sua comunidade diretamente no Nextcloud.\n\n**⚠️ Aviso de Desenvolvimento Inicial:**\nEsta aplicação está em fase inicial de desenvolvimento. Embora funcional, pode encontrar bugs ou funcionalidades incompletas. Por favor, comunique quaisquer problemas no GitHub e considere fazer cópias de segurança dos seus dados regularmente.\n\n**Principais características:**\n- **Discussões sobre tópicos** - Crie e responda a tópicos de discussão organizados\n- **Organização por categorias** - Estruture o seu fórum com categorias e cabeçalhos personalizáveis\n- **Formatação de texto avançada** - Utilize o BBCode para formatar as publicações com negrito, itálico, links, imagens, blocos de código e muito mais\n- **Anexos de ficheiros** - Anexe ficheiros do seu armazenamento Nextcloud às publicações\n- **Reações às publicações** - Reagir às publicações com emojis\n- **Controlo de leitura/não leitura** - Acompanhe quais os tópicos que já leu\n- **Pesquisa** - Encontre discussões rapidamente com a pesquisa integrada\n- **Perfis de utilizador** - Visualize o histórico de publicações e as estatísticas do utilizador\n- **Permissões baseadas em funções** - Controle o acesso e a moderação com funções flexíveis\n- **Acesso de convidado**: Acesso público opcional para utilizadores não autenticados com permissões configuráveis\n- **Ferramentas de administração** - Gerir categorias, funções, BBCodes e definições do fórum\n- **Ferramentas de moderação** - Fixar, bloquear e gerir tópicos e publicações\n\n**Ideal para:**\n- Discussões e colaboração em equipa\n- Fóruns da comunidade\n- Canais de suporte\n- Bases de conhecimento\n- Discussões sobre projetos\n- Comunicação interna\n\nO fórum integra-se perfeitamente na sua instância do Nextcloud, utilizando os seus utilizadores e grupos existentes para autenticação e controlo de acesso.",
|
||||
"Search" : "Pesquisa sobre",
|
||||
|
||||
@@ -18,10 +18,10 @@
|
||||
"Hidden content" : "Conteúdo oculto",
|
||||
"Spoilers" : "Contém spoilers",
|
||||
"Attachment" : "Anexo",
|
||||
"Welcome to Nextcloud Forums" : "Bem-vindo aos Fóruns Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Bem-vindo aos Fóruns do Nextcloud!",
|
||||
"Bold text" : "Texto a negrito",
|
||||
"Underlined text" : "Texto sublinhado",
|
||||
"Welcome to Nextcloud Forums" : "Bem-vindo aos Fóruns Nextcloud",
|
||||
"Forum" : "Fórum",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Crie discussões, partilhe ideias e colabore com a sua comunidade diretamente no Nextcloud.\n\n**⚠️ Aviso de Desenvolvimento Inicial:**\nEsta aplicação está em fase inicial de desenvolvimento. Embora funcional, pode encontrar bugs ou funcionalidades incompletas. Por favor, comunique quaisquer problemas no GitHub e considere fazer cópias de segurança dos seus dados regularmente.\n\n**Principais características:**\n- **Discussões sobre tópicos** - Crie e responda a tópicos de discussão organizados\n- **Organização por categorias** - Estruture o seu fórum com categorias e cabeçalhos personalizáveis\n- **Formatação de texto avançada** - Utilize o BBCode para formatar as publicações com negrito, itálico, links, imagens, blocos de código e muito mais\n- **Anexos de ficheiros** - Anexe ficheiros do seu armazenamento Nextcloud às publicações\n- **Reações às publicações** - Reagir às publicações com emojis\n- **Controlo de leitura/não leitura** - Acompanhe quais os tópicos que já leu\n- **Pesquisa** - Encontre discussões rapidamente com a pesquisa integrada\n- **Perfis de utilizador** - Visualize o histórico de publicações e as estatísticas do utilizador\n- **Permissões baseadas em funções** - Controle o acesso e a moderação com funções flexíveis\n- **Acesso de convidado**: Acesso público opcional para utilizadores não autenticados com permissões configuráveis\n- **Ferramentas de administração** - Gerir categorias, funções, BBCodes e definições do fórum\n- **Ferramentas de moderação** - Fixar, bloquear e gerir tópicos e publicações\n\n**Ideal para:**\n- Discussões e colaboração em equipa\n- Fóruns da comunidade\n- Canais de suporte\n- Bases de conhecimento\n- Discussões sobre projetos\n- Comunicação interna\n\nO fórum integra-se perfeitamente na sua instância do Nextcloud, utilizando os seus utilizadores e grupos existentes para autenticação e controlo de acesso.",
|
||||
"Search" : "Pesquisa sobre",
|
||||
|
||||
@@ -20,7 +20,6 @@ OC.L10N.register(
|
||||
"Hidden content" : "Скрытый контент",
|
||||
"Spoilers" : "Спойлеры",
|
||||
"Attachment" : "Вложение",
|
||||
"Welcome to Nextcloud Forums" : "Добро пожаловать на форумы Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Добро пожаловать на форумы 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." : "Это форум, созданный сообществом и встроенный прямо в ваш экземпляр Nextcloud. Здесь вы можете обсуждать темы, делиться идеями и сотрудничать с другими пользователями.",
|
||||
"Features:" : "Функции:",
|
||||
@@ -36,6 +35,7 @@ OC.L10N.register(
|
||||
"Italic text" : "Курсивный текст",
|
||||
"Underlined text" : "Подчеркнутый текст",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Не стесняйтесь начинать новое обсуждение или отвечать на уже существующие. Удачной публикации!",
|
||||
"Welcome to Nextcloud Forums" : "Добро пожаловать на форумы Nextcloud",
|
||||
"Forum" : "Форум",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} новый ответ в {thread}","{count} новых ответов в {thread}","{count} новых ответов в {thread}","{count} новых ответов в {thread}"],
|
||||
"Welcome to the forum!" : "Добро пожаловать на форум!",
|
||||
@@ -136,6 +136,7 @@ OC.L10N.register(
|
||||
"Unread" : "Непрочитанное",
|
||||
"Save" : "Сохранить",
|
||||
"Are you sure you want to discard your changes?" : "Вы уверены, что хотите отменить изменения?",
|
||||
"Current version" : "Текущая версия",
|
||||
"Add reaction" : "Добавить реакцию",
|
||||
"React with {emoji}" : "Отреагируйте с {emoji}",
|
||||
"You reacted with {emoji}" : "Вы отреагировали {emoji}",
|
||||
|
||||
@@ -18,7 +18,6 @@
|
||||
"Hidden content" : "Скрытый контент",
|
||||
"Spoilers" : "Спойлеры",
|
||||
"Attachment" : "Вложение",
|
||||
"Welcome to Nextcloud Forums" : "Добро пожаловать на форумы Nextcloud",
|
||||
"Welcome to the Nextcloud Forums!" : "Добро пожаловать на форумы 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." : "Это форум, созданный сообществом и встроенный прямо в ваш экземпляр Nextcloud. Здесь вы можете обсуждать темы, делиться идеями и сотрудничать с другими пользователями.",
|
||||
"Features:" : "Функции:",
|
||||
@@ -34,6 +33,7 @@
|
||||
"Italic text" : "Курсивный текст",
|
||||
"Underlined text" : "Подчеркнутый текст",
|
||||
"Feel free to start a new discussion or reply to existing threads. Happy posting!" : "Не стесняйтесь начинать новое обсуждение или отвечать на уже существующие. Удачной публикации!",
|
||||
"Welcome to Nextcloud Forums" : "Добро пожаловать на форумы Nextcloud",
|
||||
"Forum" : "Форум",
|
||||
"_{count} new reply in {thread}_::_{count} new replies in {thread}_" : ["{count} новый ответ в {thread}","{count} новых ответов в {thread}","{count} новых ответов в {thread}","{count} новых ответов в {thread}"],
|
||||
"Welcome to the forum!" : "Добро пожаловать на форум!",
|
||||
@@ -134,6 +134,7 @@
|
||||
"Unread" : "Непрочитанное",
|
||||
"Save" : "Сохранить",
|
||||
"Are you sure you want to discard your changes?" : "Вы уверены, что хотите отменить изменения?",
|
||||
"Current version" : "Текущая версия",
|
||||
"Add reaction" : "Добавить реакцию",
|
||||
"React with {emoji}" : "Отреагируйте с {emoji}",
|
||||
"You reacted with {emoji}" : "Вы отреагировали {emoji}",
|
||||
|
||||
@@ -32,6 +32,7 @@ OC.L10N.register(
|
||||
"Delete" : "Cantzella",
|
||||
"Unread" : "De lèghere",
|
||||
"Save" : "Sarva",
|
||||
"Current version" : "Versione atuale",
|
||||
"Views" : "Visualizatziones",
|
||||
"Title" : "Tìtulu",
|
||||
"Saving draft …" : "Sarvende sa brutacòpia ...",
|
||||
|
||||
@@ -30,6 +30,7 @@
|
||||
"Delete" : "Cantzella",
|
||||
"Unread" : "De lèghere",
|
||||
"Save" : "Sarva",
|
||||
"Current version" : "Versione atuale",
|
||||
"Views" : "Visualizatziones",
|
||||
"Title" : "Tìtulu",
|
||||
"Saving draft …" : "Sarvende sa brutacòpia ...",
|
||||
|
||||
@@ -13,6 +13,7 @@ OC.L10N.register(
|
||||
"Update" : "යාවත්කාල",
|
||||
"Back" : "ආපසු",
|
||||
"Edit" : "සංස්කරණය",
|
||||
"Current version" : "වත්මන් අනුවාදය",
|
||||
"Retry" : "නැවත උත්සාහ කරන්න",
|
||||
"Error" : "දෝෂය",
|
||||
"Reply" : "පිළිතුර",
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
"Update" : "යාවත්කාල",
|
||||
"Back" : "ආපසු",
|
||||
"Edit" : "සංස්කරණය",
|
||||
"Current version" : "වත්මන් අනුවාදය",
|
||||
"Retry" : "නැවත උත්සාහ කරන්න",
|
||||
"Error" : "දෝෂය",
|
||||
"Reply" : "පිළිතුර",
|
||||
|
||||
@@ -3,6 +3,7 @@ OC.L10N.register(
|
||||
{
|
||||
"Admin" : "Admi",
|
||||
"User" : "Používateľ",
|
||||
"Guest" : "Hosť",
|
||||
"General" : "Všeobecné",
|
||||
"Support" : "Podpora",
|
||||
"Bold text" : "Tučné písmo",
|
||||
@@ -42,6 +43,7 @@ OC.L10N.register(
|
||||
"Delete" : "Vymazať",
|
||||
"Unread" : "Neprečítané",
|
||||
"Save" : "Uložiť",
|
||||
"Current version" : "Aktuálna verzia",
|
||||
"React with {emoji}" : "Reagovať s {emoji}",
|
||||
"Uncategorized" : "Nezaradené",
|
||||
"_%n reply_::_%n replies_" : ["%n odpoveď","%n odpovede","%n odpovedí","%n odpovedí"],
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user