mirror of
https://github.com/chenasraf/nextcloud-forum.git
synced 2026-05-18 01:28:58 +00:00
Compare commits
29 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0c23e9c5c3 | |||
| 860c0a63c5 | |||
|
|
b8548e9f33 | ||
| c8db69d0ef | |||
| dde356831f | |||
| 12de3ab2a0 | |||
| 222484c688 | |||
| 0fd9efdd53 | |||
|
|
463ab8c44a | ||
|
|
02d08fc9e9 | ||
| 7b442f634e | |||
| d74a97e571 | |||
|
|
d2aa196765 | ||
|
|
8b7fa5ebfb | ||
|
|
6a4efc6826 | ||
| 6ae7155a9a | |||
| 03c2a6162b | |||
| 51c49c32da | |||
| 1dbab6a51d | |||
| f6910cde2d | |||
| ed04879575 | |||
| 362fdc8b03 | |||
| 0d98473cbf | |||
|
|
3242a1cad5 | ||
| 9fac12b0c7 | |||
|
|
37a82842b1 | ||
|
|
46b2c820e8 | ||
|
|
715b2ab6ff | ||
|
|
3ab3c1cc76 |
@@ -1,8 +1,3 @@
|
||||
# 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
|
||||
|
||||
name: Block unconventional commits
|
||||
|
||||
on:
|
||||
@@ -11,6 +6,7 @@ on:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
concurrency:
|
||||
group: block-unconventional-commits-${{ github.head_ref || github.run_id }}
|
||||
@@ -18,14 +14,5 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
block-unconventional-commits:
|
||||
name: Block unconventional commits
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- uses: webiny/action-conventional-commits@v1.3.0
|
||||
with:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-block-unconventional-commits.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
|
||||
37
.github/workflows/build-npm.yml
vendored
37
.github/workflows/build-npm.yml
vendored
@@ -1,41 +1,20 @@
|
||||
# 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
|
||||
|
||||
name: Build NPM
|
||||
|
||||
on:
|
||||
- pull_request
|
||||
- push
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
concurrency:
|
||||
group: build-npm-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
name: PNPM Build
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
env:
|
||||
CYPRESS_INSTALL_BINARY: 0
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
run: |
|
||||
npm i -g pnpm
|
||||
pnpm i --frozen-lockfile
|
||||
|
||||
- name: Build
|
||||
run: pnpm build
|
||||
build-npm:
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-build-npm.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
|
||||
28
.github/workflows/lint-appinfo-xml.yml
vendored
28
.github/workflows/lint-appinfo-xml.yml
vendored
@@ -1,8 +1,3 @@
|
||||
# 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
|
||||
|
||||
name: Lint appinfo.xml
|
||||
|
||||
on:
|
||||
@@ -10,31 +5,16 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- 'appinfo/info.xml'
|
||||
- '.github/workflows/lint-appinfo-xml.yml'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
concurrency:
|
||||
group: lint-info-xml-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
xml-linters:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
name: info.xml lint
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Download schema
|
||||
run: wget https://raw.githubusercontent.com/nextcloud/appstore/master/nextcloudappstore/api/v1/release/info.xsd
|
||||
|
||||
- name: Lint info.xml
|
||||
uses: ChristophWurst/xmllint-action@v1
|
||||
with:
|
||||
xml-file: ./appinfo/info.xml
|
||||
xml-schema-file: ./info.xsd
|
||||
lint-appinfo-xml:
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-lint-appinfo-xml.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
|
||||
46
.github/workflows/lint-eslint.yml
vendored
46
.github/workflows/lint-eslint.yml
vendored
@@ -1,50 +1,20 @@
|
||||
# SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
name: Lint eslint
|
||||
|
||||
on:
|
||||
- pull_request
|
||||
- push
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
concurrency:
|
||||
group: lint-eslint-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
name: NPM lint
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
env:
|
||||
CYPRESS_INSTALL_BINARY: 0
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
run: |
|
||||
npm i -g pnpm
|
||||
pnpm i --frozen-lockfile
|
||||
|
||||
- name: Lint
|
||||
run: pnpm lint
|
||||
|
||||
summary:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest
|
||||
needs: lint
|
||||
|
||||
if: always()
|
||||
|
||||
name: eslint
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.lint.result != 'success' }}; then exit 1; fi
|
||||
lint-eslint:
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-lint-eslint.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
|
||||
61
.github/workflows/lint-openapi.yml
vendored
61
.github/workflows/lint-openapi.yml
vendored
@@ -5,69 +5,16 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- 'lib/**/*.php'
|
||||
- 'openapi.json'
|
||||
- '.github/workflows/lint-openapi.yml'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
concurrency:
|
||||
group: openapi-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
openapi:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Get php version
|
||||
id: php_versions
|
||||
uses: icewind1991/nextcloud-version-matrix@v1
|
||||
|
||||
- name: Set up php
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ steps.php_versions.outputs.php-available }}
|
||||
extensions: xml
|
||||
coverage: none
|
||||
ini-file: development
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Check Typescript OpenApi types
|
||||
id: check_typescript_openapi
|
||||
uses: andstor/file-existence-action@v3
|
||||
with:
|
||||
files: 'src/types/openapi/openapi*.ts'
|
||||
|
||||
- name: Install dependencies
|
||||
env:
|
||||
CYPRESS_INSTALL_BINARY: 0
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
run: |
|
||||
npm i -g pnpm
|
||||
pnpm i --frozen-lockfile
|
||||
|
||||
- name: Set up dependencies
|
||||
run: composer i
|
||||
|
||||
- name: Regenerate OpenAPI
|
||||
run: composer run openapi
|
||||
|
||||
- name: Check openapi*.json and typescript changes
|
||||
run: |
|
||||
bash -c "[[ ! \"`git status --porcelain `\" ]] || (echo 'Please run \"composer run openapi\" and commit the openapi*.json files and (if applicable) src/types/openapi/openapi*.ts, see the section \"Show changes on failure\" for details' && exit 1)"
|
||||
|
||||
- name: Show changes on failure
|
||||
if: failure()
|
||||
run: |
|
||||
git status
|
||||
git --no-pager diff
|
||||
exit 1 # make it red to grab attention
|
||||
lint-openapi:
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-lint-openapi.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
|
||||
41
.github/workflows/lint-php-cs.yml
vendored
41
.github/workflows/lint-php-cs.yml
vendored
@@ -1,8 +1,3 @@
|
||||
# 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
|
||||
|
||||
name: Lint php-cs
|
||||
|
||||
on:
|
||||
@@ -10,44 +5,16 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '**.php'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- '.github/workflows/lint-php-cs.yml'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
concurrency:
|
||||
group: lint-php-cs-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
name: php-cs
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Get php version
|
||||
id: versions
|
||||
uses: icewind1991/nextcloud-version-matrix@v1
|
||||
|
||||
- name: Set up php${{ steps.versions.outputs.php-available }}
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ steps.versions.outputs.php-available }}
|
||||
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
|
||||
coverage: none
|
||||
ini-file: development
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: composer i
|
||||
|
||||
- name: Lint
|
||||
run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 )
|
||||
lint-php-cs:
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-lint-php-cs.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
|
||||
62
.github/workflows/lint-php.yml
vendored
62
.github/workflows/lint-php.yml
vendored
@@ -1,8 +1,3 @@
|
||||
# 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
|
||||
|
||||
name: Lint php
|
||||
|
||||
on:
|
||||
@@ -10,65 +5,16 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '**.php'
|
||||
- '.github/workflows/lint-php.yml'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
concurrency:
|
||||
group: lint-php-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
php-versions: ${{ steps.versions.outputs.php-versions }}
|
||||
steps:
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@v4
|
||||
- name: Get version matrix
|
||||
id: versions
|
||||
uses: icewind1991/nextcloud-version-matrix@v1
|
||||
|
||||
php-lint:
|
||||
runs-on: ubuntu-latest
|
||||
needs: matrix
|
||||
strategy:
|
||||
matrix:
|
||||
php-versions: ${{fromJson(needs.matrix.outputs.php-versions)}}
|
||||
|
||||
name: php-lint
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
|
||||
coverage: none
|
||||
ini-file: development
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Lint
|
||||
run: composer run lint
|
||||
|
||||
summary:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest
|
||||
needs: php-lint
|
||||
|
||||
if: always()
|
||||
|
||||
name: php-lint-summary
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.php-lint.result != 'success' && needs.php-lint.result != 'skipped' }}; then exit 1; fi
|
||||
lint-php:
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-lint-php.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
|
||||
340
.github/workflows/phpunit-incremental.yml
vendored
340
.github/workflows/phpunit-incremental.yml
vendored
@@ -1,339 +1,23 @@
|
||||
# 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
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: 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
|
||||
phpunit-incremental:
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-phpunit-incremental.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
with:
|
||||
baseline-version: 'v0.14.0'
|
||||
validation-query: 'SELECT COUNT(*) FROM oc_forum_users'
|
||||
|
||||
215
.github/workflows/phpunit-mysql.yml
vendored
215
.github/workflows/phpunit-mysql.yml
vendored
@@ -1,219 +1,20 @@
|
||||
# This workflow is provided via the organization template repository
|
||||
#
|
||||
# https://github.com/nextcloud/.github
|
||||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
name: PHPUnit MySQL
|
||||
|
||||
on: pull_request
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
concurrency:
|
||||
group: phpunit-mysql-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||
steps:
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Get supported server versions
|
||||
id: versions
|
||||
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
|
||||
|
||||
- name: Build test matrix
|
||||
id: set-matrix
|
||||
run: |
|
||||
# Get server branches from version matrix
|
||||
BRANCHES='${{ steps.versions.outputs.branches }}'
|
||||
|
||||
# Build minimal matrix: min Nextcloud with PHP 8.2, max Nextcloud with PHP 8.3
|
||||
MATRIX=$(jq -nc \
|
||||
--argjson branches "$BRANCHES" \
|
||||
'{include: [{"php-versions": "8.2", "mysql-versions": "8.4", "server-versions": $branches[0]}, {"php-versions": "8.3", "mysql-versions": "8.4", "server-versions": $branches[-1]}]}'
|
||||
)
|
||||
|
||||
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
|
||||
echo "Generated matrix: $MATRIX"
|
||||
|
||||
changes:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
outputs:
|
||||
src: ${{ steps.changes.outputs.src}}
|
||||
|
||||
steps:
|
||||
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
|
||||
id: changes
|
||||
continue-on-error: true
|
||||
with:
|
||||
filters: |
|
||||
src:
|
||||
- '.github/workflows/**'
|
||||
- 'appinfo/**'
|
||||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
- 'composer.lock'
|
||||
|
||||
phpunit-mysql:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs: [changes, matrix]
|
||||
if: needs.changes.outputs.src != 'false'
|
||||
|
||||
strategy:
|
||||
matrix: ${{ fromJson(needs.matrix.outputs.matrix) }}
|
||||
|
||||
name: MySQL ${{ matrix.mysql-versions }} PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }}
|
||||
|
||||
services:
|
||||
mysql:
|
||||
image: ghcr.io/nextcloud/continuous-integration-mysql-${{ matrix.mysql-versions }}:latest
|
||||
ports:
|
||||
- 4444:3306/tcp
|
||||
env:
|
||||
MYSQL_ROOT_PASSWORD: rootpassword
|
||||
options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 10
|
||||
|
||||
steps:
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
with:
|
||||
persist-credentials: false
|
||||
path: app-checkout
|
||||
|
||||
- name: Detect app ID from appinfo/info.xml
|
||||
run: |
|
||||
APP_ID=$(grep -oP '(?<=<id>)[^<]+' app-checkout/appinfo/info.xml | head -1)
|
||||
echo "APP_NAME=$APP_ID" >> $GITHUB_ENV
|
||||
echo "Detected app ID: $APP_ID"
|
||||
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
repository: nextcloud/server
|
||||
ref: ${{ matrix.server-versions }}
|
||||
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
with:
|
||||
persist-credentials: false
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@0f7f1d08e3e32076e51cae65eb0b0c871405b16e # v2.34.1
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
# https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
|
||||
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, mysql, pdo_mysql
|
||||
coverage: none
|
||||
ini-file: development
|
||||
# Temporary workaround for missing pcntl_* in PHP 8.3
|
||||
ini-values: disable_functions=
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Enable ONLY_FULL_GROUP_BY MySQL option
|
||||
run: |
|
||||
echo "SET GLOBAL sql_mode=(SELECT CONCAT(@@sql_mode,',ONLY_FULL_GROUP_BY'));" | mysql -h 127.0.0.1 -P 4444 -u root -prootpassword
|
||||
echo 'SELECT @@sql_mode;' | mysql -h 127.0.0.1 -P 4444 -u root -prootpassword
|
||||
|
||||
- name: Check composer file existence
|
||||
id: check_composer
|
||||
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
|
||||
with:
|
||||
files: apps/${{ env.APP_NAME }}/composer.json
|
||||
|
||||
- name: Set up dependencies
|
||||
# Only run if phpunit config file exists
|
||||
if: steps.check_composer.outputs.files_exists == 'true'
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer remove nextcloud/ocp --dev --no-scripts
|
||||
composer i
|
||||
|
||||
- name: Set up Nextcloud
|
||||
env:
|
||||
DB_PORT: 4444
|
||||
run: |
|
||||
mkdir data
|
||||
./occ maintenance:install --verbose --database=mysql --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin
|
||||
./occ app:enable --force ${{ env.APP_NAME }}
|
||||
|
||||
- name: Check PHPUnit script is defined
|
||||
id: check_phpunit
|
||||
continue-on-error: true
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer run --list | grep '^ test:unit ' | wc -l | grep 1
|
||||
|
||||
- name: PHPUnit
|
||||
# Only run if phpunit config file exists
|
||||
if: steps.check_phpunit.outcome == 'success'
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer run test:unit
|
||||
|
||||
- name: Check PHPUnit integration script is defined
|
||||
id: check_integration
|
||||
continue-on-error: true
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer run --list | grep '^ test:integration ' | wc -l | grep 1
|
||||
|
||||
- name: Run Nextcloud
|
||||
# Only run if phpunit integration config file exists
|
||||
if: steps.check_integration.outcome == 'success'
|
||||
run: php -S localhost:8080 &
|
||||
|
||||
- name: PHPUnit integration
|
||||
# Only run if phpunit integration config file exists
|
||||
if: steps.check_integration.outcome == 'success'
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer run test:integration
|
||||
|
||||
- name: Print logs
|
||||
if: always()
|
||||
run: |
|
||||
cat data/nextcloud.log
|
||||
|
||||
- name: Skipped
|
||||
# Fail the action when neither unit nor integration tests ran
|
||||
if: steps.check_phpunit.outcome == 'failure' && steps.check_integration.outcome == 'failure'
|
||||
run: |
|
||||
echo 'Neither PHPUnit nor PHPUnit integration tests are specified in composer.json scripts'
|
||||
exit 1
|
||||
|
||||
summary:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest
|
||||
needs: [changes, phpunit-mysql]
|
||||
|
||||
if: always()
|
||||
|
||||
name: phpunit-mysql-summary
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-mysql.result != 'success' }}; then exit 1; fi
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-phpunit-mysql.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
|
||||
212
.github/workflows/phpunit-pgsql.yml
vendored
212
.github/workflows/phpunit-pgsql.yml
vendored
@@ -1,216 +1,20 @@
|
||||
# This workflow is provided via the organization template repository
|
||||
#
|
||||
# https://github.com/nextcloud/.github
|
||||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
name: PHPUnit PostgreSQL
|
||||
|
||||
on: pull_request
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
concurrency:
|
||||
group: phpunit-pgsql-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||
steps:
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Get supported server versions
|
||||
id: versions
|
||||
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
|
||||
|
||||
- name: Build test matrix
|
||||
id: set-matrix
|
||||
run: |
|
||||
# Get server branches from version matrix
|
||||
BRANCHES='${{ steps.versions.outputs.branches }}'
|
||||
|
||||
# Build minimal matrix: only latest Nextcloud with PHP 8.3
|
||||
MATRIX=$(jq -nc \
|
||||
--argjson branches "$BRANCHES" \
|
||||
'{include: [{"php-versions": "8.3", "server-versions": $branches[-1]}]}'
|
||||
)
|
||||
|
||||
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
|
||||
echo "Generated matrix: $MATRIX"
|
||||
|
||||
changes:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
outputs:
|
||||
src: ${{ steps.changes.outputs.src }}
|
||||
|
||||
steps:
|
||||
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
|
||||
id: changes
|
||||
continue-on-error: true
|
||||
with:
|
||||
filters: |
|
||||
src:
|
||||
- '.github/workflows/**'
|
||||
- 'appinfo/**'
|
||||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
- 'composer.lock'
|
||||
|
||||
phpunit-pgsql:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs: [changes, matrix]
|
||||
if: needs.changes.outputs.src != 'false'
|
||||
|
||||
strategy:
|
||||
matrix: ${{ fromJson(needs.matrix.outputs.matrix) }}
|
||||
|
||||
name: PostgreSQL PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }}
|
||||
|
||||
services:
|
||||
postgres:
|
||||
image: ghcr.io/nextcloud/continuous-integration-postgres-16:latest # zizmor: ignore[unpinned-images]
|
||||
ports:
|
||||
- 4444:5432/tcp
|
||||
env:
|
||||
POSTGRES_USER: root
|
||||
POSTGRES_PASSWORD: rootpassword
|
||||
POSTGRES_DB: nextcloud
|
||||
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5
|
||||
|
||||
steps:
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
path: app-checkout
|
||||
|
||||
- name: Detect app ID from appinfo/info.xml
|
||||
run: |
|
||||
APP_ID=$(grep -oP '(?<=<id>)[^<]+' app-checkout/appinfo/info.xml | head -1)
|
||||
echo "APP_NAME=$APP_ID" >> $GITHUB_ENV
|
||||
echo "Detected app ID: $APP_ID"
|
||||
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
repository: nextcloud/server
|
||||
ref: ${{ matrix.server-versions }}
|
||||
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2.35.5
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
# https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
|
||||
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, pgsql, pdo_pgsql
|
||||
coverage: none
|
||||
ini-file: development
|
||||
# Temporary workaround for missing pcntl_* in PHP 8.3
|
||||
ini-values: disable_functions=
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Check composer file existence
|
||||
id: check_composer
|
||||
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0
|
||||
with:
|
||||
files: apps/${{ env.APP_NAME }}/composer.json
|
||||
|
||||
- name: Set up dependencies
|
||||
# Only run if phpunit config file exists
|
||||
if: steps.check_composer.outputs.files_exists == 'true'
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer remove nextcloud/ocp --dev --no-scripts
|
||||
composer i
|
||||
|
||||
- name: Set up Nextcloud
|
||||
env:
|
||||
DB_PORT: 4444
|
||||
run: |
|
||||
mkdir data
|
||||
./occ maintenance:install --verbose --database=pgsql --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin
|
||||
./occ app:enable --force ${{ env.APP_NAME }}
|
||||
|
||||
- name: Check PHPUnit script is defined
|
||||
id: check_phpunit
|
||||
continue-on-error: true
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer run --list | grep '^ test:unit ' | wc -l | grep 1
|
||||
|
||||
- name: PHPUnit
|
||||
# Only run if phpunit config file exists
|
||||
if: steps.check_phpunit.outcome == 'success'
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer run test:unit
|
||||
|
||||
- name: Check PHPUnit integration script is defined
|
||||
id: check_integration
|
||||
continue-on-error: true
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: |
|
||||
composer run --list | grep '^ test:integration ' | wc -l | grep 1
|
||||
|
||||
- name: Run Nextcloud
|
||||
# Only run if phpunit integration config file exists
|
||||
if: steps.check_integration.outcome == 'success'
|
||||
run: php -S localhost:8080 &
|
||||
|
||||
- name: PHPUnit integration
|
||||
# Only run if phpunit integration config file exists
|
||||
if: steps.check_integration.outcome == 'success'
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer run test:integration
|
||||
|
||||
- name: Print logs
|
||||
if: always()
|
||||
run: |
|
||||
cat data/nextcloud.log
|
||||
|
||||
- name: Skipped
|
||||
# Fail the action when neither unit nor integration tests ran
|
||||
if: steps.check_phpunit.outcome == 'failure' && steps.check_integration.outcome == 'failure'
|
||||
run: |
|
||||
echo 'Neither PHPUnit nor PHPUnit integration tests are specified in composer.json scripts'
|
||||
exit 1
|
||||
|
||||
summary:
|
||||
permissions:
|
||||
contents: none
|
||||
runs-on: ubuntu-latest
|
||||
needs: [changes, phpunit-pgsql]
|
||||
|
||||
if: always()
|
||||
|
||||
name: phpunit-pgsql-summary
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-pgsql.result != 'success' }}; then exit 1; fi
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-phpunit-pgsql.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
|
||||
66
.github/workflows/psalm-matrix.yml
vendored
66
.github/workflows/psalm-matrix.yml
vendored
@@ -1,8 +1,3 @@
|
||||
# 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
|
||||
|
||||
name: Static analysis
|
||||
|
||||
on:
|
||||
@@ -12,62 +7,15 @@ on:
|
||||
# branches:
|
||||
# - master
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
concurrency:
|
||||
group: psalm-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
matrix:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
ocp-matrix: ${{ steps.versions.outputs.ocp-matrix }}
|
||||
steps:
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@v4
|
||||
- name: Get version matrix
|
||||
id: versions
|
||||
uses: icewind1991/nextcloud-version-matrix@v1
|
||||
|
||||
static-analysis:
|
||||
runs-on: ubuntu-latest
|
||||
needs: matrix
|
||||
strategy:
|
||||
# do not stop on another job's failure
|
||||
fail-fast: false
|
||||
matrix: ${{ fromJson(needs.matrix.outputs.ocp-matrix) }}
|
||||
|
||||
name: static-psalm-analysis ${{ matrix.ocp-version }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up php${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
|
||||
coverage: none
|
||||
ini-file: development
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: composer i
|
||||
|
||||
- name: Install dependencies
|
||||
run: composer require --dev nextcloud/ocp:${{ matrix.ocp-version }} --ignore-platform-reqs --with-dependencies
|
||||
|
||||
- name: Run coding standards check
|
||||
run: composer run psalm
|
||||
|
||||
summary:
|
||||
runs-on: ubuntu-latest
|
||||
needs: static-analysis
|
||||
|
||||
if: always()
|
||||
|
||||
name: static-psalm-analysis-summary
|
||||
|
||||
steps:
|
||||
- name: Summary status
|
||||
run: if ${{ needs.static-analysis.result != 'success' }}; then exit 1; fi
|
||||
psalm:
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-psalm.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
|
||||
64
.github/workflows/vitest.yml
vendored
64
.github/workflows/vitest.yml
vendored
@@ -1,12 +1,14 @@
|
||||
# SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
name: Vitest
|
||||
|
||||
on: pull_request
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
concurrency:
|
||||
group: vitest-${{ github.head_ref || github.run_id }}
|
||||
@@ -14,55 +16,5 @@ concurrency:
|
||||
|
||||
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
|
||||
uses: chenasraf/workflows/.github/workflows/nextcloud-vitest.yml@nextcloud-latest
|
||||
secrets: inherit
|
||||
|
||||
@@ -1 +1 @@
|
||||
{".":"0.20.3"}
|
||||
{".":"0.21.1"}
|
||||
|
||||
52
CHANGELOG.md
52
CHANGELOG.md
@@ -1,5 +1,57 @@
|
||||
# Changelog
|
||||
|
||||
## [0.21.1](https://github.com/chenasraf/nextcloud-forum/compare/v0.21.0...v0.21.1) (2026-01-23)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* better error unwrapping with axios for ocs ([860c0a6](https://github.com/chenasraf/nextcloud-forum/commit/860c0a63c5cb13725d02b9d6faa7e6cd3e34ebfb))
|
||||
* **l10n:** Update translations from Transifex ([b8548e9](https://github.com/chenasraf/nextcloud-forum/commit/b8548e9f333c4cb4d716dade0adfba032ed97fad))
|
||||
* **l10n:** Update translations from Transifex ([463ab8c](https://github.com/chenasraf/nextcloud-forum/commit/463ab8c44a99683325f273adc4efcaa94ef5a4f1))
|
||||
* **l10n:** Update translations from Transifex ([02d08fc](https://github.com/chenasraf/nextcloud-forum/commit/02d08fc9e9760cd292aad4fe40398597c39801ee))
|
||||
|
||||
## [0.21.0](https://github.com/chenasraf/nextcloud-forum/compare/v0.20.6...v0.21.0) (2026-01-20)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* admin section with repair seeds+add role helpers ([d74a97e](https://github.com/chenasraf/nextcloud-forum/commit/d74a97e571379fb03b9d01acf73fe195ca13d644))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **l10n:** Update translations from Transifex ([d2aa196](https://github.com/chenasraf/nextcloud-forum/commit/d2aa196765c1ad0860526a6a327f3ee3f695128c))
|
||||
* **l10n:** Update translations from Transifex ([8b7fa5e](https://github.com/chenasraf/nextcloud-forum/commit/8b7fa5ebfb62368afe66cd2330646c12ee6606d2))
|
||||
* **l10n:** Update translations from Transifex ([6a4efc6](https://github.com/chenasraf/nextcloud-forum/commit/6a4efc6826c92e93ca64344f15ec822a53062d77))
|
||||
|
||||
## [0.20.6](https://github.com/chenasraf/nextcloud-forum/compare/v0.20.5...v0.20.6) (2026-01-17)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* db seeds ([03c2a61](https://github.com/chenasraf/nextcloud-forum/commit/03c2a6162bf1d30e4361f8ebbdf2a4e113692da2))
|
||||
* remove post slug from seed ([51c49c3](https://github.com/chenasraf/nextcloud-forum/commit/51c49c32dac5894c6711f8924fe5a7b44e07596b))
|
||||
|
||||
## [0.20.5](https://github.com/chenasraf/nextcloud-forum/compare/v0.20.4...v0.20.5) (2026-01-16)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* allow creating multiple custom roles ([362fdc8](https://github.com/chenasraf/nextcloud-forum/commit/362fdc8b032299a4f32d8e4b70163a3077dcab3c))
|
||||
* category header update ([0d98473](https://github.com/chenasraf/nextcloud-forum/commit/0d98473cbfc8f89a2b4962781449ccc881ab8eee))
|
||||
* db seeds ([ed04879](https://github.com/chenasraf/nextcloud-forum/commit/ed048795756f474ce8126aa37fb34a7c57fa2d65))
|
||||
* **l10n:** Update translations from Transifex ([3242a1c](https://github.com/chenasraf/nextcloud-forum/commit/3242a1cad51b90841ff1bde5ca7e231ea92687d9))
|
||||
|
||||
## [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)
|
||||
|
||||
|
||||
|
||||
28
README.md
28
README.md
@@ -74,6 +74,34 @@ for repairing installations, rebuilding statistics, and managing user roles.
|
||||
For a complete list of available commands, usage examples, and detailed documentation, see the
|
||||
[OCC Commands Wiki page](https://github.com/chenasraf/nextcloud-forum/wiki/OCC-Commands).
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
### Cannot access administrator features
|
||||
|
||||
If you are a Nextcloud administrator but cannot access Forum admin features (e.g., managing
|
||||
categories, roles, or settings), this is likely due to missing database seeds or role assignments.
|
||||
|
||||
**Option 1: Using OCC commands**
|
||||
|
||||
Run the following commands from your Nextcloud installation directory:
|
||||
|
||||
```bash
|
||||
# Repair database seeds (creates default roles and permissions if missing)
|
||||
php occ forum:repair-seeds
|
||||
|
||||
# Assign administrator role to a user
|
||||
php occ forum:set-role <username> admin
|
||||
```
|
||||
|
||||
**Option 2: Using the Admin UI**
|
||||
|
||||
1. Log in to Nextcloud as an administrator
|
||||
2. Go to **Administration Settings** (click your profile picture → Administration Settings)
|
||||
3. Navigate to **Forum** in the left sidebar under the Administration section
|
||||
4. Use the **Repair Seeds** button to restore default roles and permissions
|
||||
5. If the seeds are already in plac, use the **User Roles** section to assign the administrator role
|
||||
to users
|
||||
|
||||
## Contributing
|
||||
|
||||
I am developing this app on my free time, so any support, whether code, issues, or just stars is
|
||||
|
||||
@@ -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.20.3</version>
|
||||
<version>0.21.1</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="contact@casraf.dev" homepage="https://casraf.dev">Chen Asraf</author>
|
||||
<namespace>Forum</namespace>
|
||||
@@ -67,6 +67,10 @@ The forum integrates seamlessly with your Nextcloud instance, using your existin
|
||||
<command>OCA\Forum\Command\SetRole</command>
|
||||
<command>OCA\Forum\Command\TestNotifier</command>
|
||||
</commands>
|
||||
<settings>
|
||||
<admin>OCA\Forum\Settings\AdminSettings</admin>
|
||||
<admin-section>OCA\Forum\Sections\AdminSection</admin-section>
|
||||
</settings>
|
||||
<navigations>
|
||||
<navigation role="all">
|
||||
<name>Forum</name>
|
||||
|
||||
32
composer.lock
generated
32
composer.lock
generated
@@ -1035,12 +1035,12 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Roave/SecurityAdvisories.git",
|
||||
"reference": "ccfd723dc03e9864008d011603c412910180d7a6"
|
||||
"reference": "57ac71b06405e32e77d960bb8490683138573f04"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/ccfd723dc03e9864008d011603c412910180d7a6",
|
||||
"reference": "ccfd723dc03e9864008d011603c412910180d7a6",
|
||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/57ac71b06405e32e77d960bb8490683138573f04",
|
||||
"reference": "57ac71b06405e32e77d960bb8490683138573f04",
|
||||
"shasum": ""
|
||||
},
|
||||
"conflict": {
|
||||
@@ -1055,12 +1055,14 @@
|
||||
"aimeos/ai-cms-grapesjs": ">=2021.04.1,<2021.10.8|>=2022.04.1,<2022.10.9|>=2023.04.1,<2023.10.15|>=2024.04.1,<2024.10.8|>=2025.04.1,<2025.10.2",
|
||||
"aimeos/ai-controller-frontend": "<2020.10.15|>=2021.04.1,<2021.10.8|>=2022.04.1,<2022.10.8|>=2023.04.1,<2023.10.9|==2024.04.1",
|
||||
"aimeos/aimeos-core": ">=2022.04.1,<2022.10.17|>=2023.04.1,<2023.10.17|>=2024.04.1,<2024.04.7",
|
||||
"aimeos/aimeos-laravel": "==2021.10",
|
||||
"aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5",
|
||||
"airesvsg/acf-to-rest-api": "<=3.1",
|
||||
"akaunting/akaunting": "<2.1.13",
|
||||
"akeneo/pim-community-dev": "<5.0.119|>=6,<6.0.53",
|
||||
"alextselegidis/easyappointments": "<1.5.2.0-beta1",
|
||||
"alextselegidis/easyappointments": "<=1.5.2",
|
||||
"alexusmai/laravel-file-manager": "<=3.3.1",
|
||||
"algolia/algoliasearch-magento-2": "<=3.16.1|>=3.17.0.0-beta1,<=3.17.1",
|
||||
"alt-design/alt-redirect": "<1.6.4",
|
||||
"altcha-org/altcha": "<1.3.1",
|
||||
"alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
|
||||
@@ -1134,7 +1136,7 @@
|
||||
"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/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|>=5.2.10,<5.2.12|==5.3",
|
||||
"cakephp/database": ">=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
|
||||
"cardgate/magento2": "<2.0.33",
|
||||
"cardgate/woocommerce": "<=3.1.15",
|
||||
@@ -1633,14 +1635,15 @@
|
||||
"phpxmlrpc/extras": "<0.6.1",
|
||||
"phpxmlrpc/phpxmlrpc": "<4.9.2",
|
||||
"pi/pi": "<=2.5",
|
||||
"pimcore/admin-ui-classic-bundle": "<1.7.6",
|
||||
"pimcore/admin-ui-classic-bundle": "<=1.7.15|>=2.0.0.0-RC1-dev,<=2.2.2",
|
||||
"pimcore/customer-management-framework-bundle": "<4.2.1",
|
||||
"pimcore/data-hub": "<1.2.4",
|
||||
"pimcore/data-importer": "<1.8.9|>=1.9,<1.9.3",
|
||||
"pimcore/demo": "<10.3",
|
||||
"pimcore/ecommerce-framework-bundle": "<1.0.10",
|
||||
"pimcore/perspective-editor": "<1.5.1",
|
||||
"pimcore/pimcore": "<11.5.4",
|
||||
"pimcore/pimcore": "<=11.5.13|>=12.0.0.0-RC1-dev,<12.3.1",
|
||||
"pimcore/web2print-tools-bundle": "<=5.2.1|>=6.0.0.0-RC1-dev,<=6.1",
|
||||
"piwik/piwik": "<1.11",
|
||||
"pixelfed/pixelfed": "<0.12.5",
|
||||
"plotly/plotly.js": "<2.25.2",
|
||||
@@ -1704,10 +1707,10 @@
|
||||
"setasign/fpdi": "<2.6.4",
|
||||
"sfroemken/url_redirect": "<=1.2.1",
|
||||
"sheng/yiicms": "<1.2.1",
|
||||
"shopware/core": "<6.6.10.9-dev|>=6.7,<6.7.4.1-dev",
|
||||
"shopware/core": "<6.6.10.9-dev|>=6.7,<6.7.6.1-dev",
|
||||
"shopware/platform": "<6.6.10.7-dev|>=6.7,<6.7.3.1-dev",
|
||||
"shopware/production": "<=6.3.5.2",
|
||||
"shopware/shopware": "<=5.7.17|>=6.4.6,<6.6.10.10-dev|>=6.7,<6.7.5.1-dev",
|
||||
"shopware/shopware": "<=5.7.17|>=6.4.6,<6.6.10.10-dev|>=6.7,<6.7.6.1-dev",
|
||||
"shopware/storefront": "<6.6.10.10-dev|>=6.7,<6.7.5.1-dev",
|
||||
"shopxo/shopxo": "<=6.4",
|
||||
"showdoc/showdoc": "<2.10.4",
|
||||
@@ -1752,7 +1755,7 @@
|
||||
"snipe/snipe-it": "<=8.3.4",
|
||||
"socalnick/scn-social-auth": "<1.15.2",
|
||||
"socialiteproviders/steam": "<1.1",
|
||||
"solspace/craft-freeform": ">=5,<5.10.16",
|
||||
"solspace/craft-freeform": "<4.1.29|>=5,<5.10.16",
|
||||
"soosyze/soosyze": "<=2",
|
||||
"spatie/browsershot": "<5.0.5",
|
||||
"spatie/image-optimizer": "<1.7.3",
|
||||
@@ -1860,10 +1863,10 @@
|
||||
"twbs/bootstrap": "<3.4.1|>=4,<4.3.1",
|
||||
"twig/twig": "<3.11.2|>=3.12,<3.14.1|>=3.16,<3.19",
|
||||
"typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2",
|
||||
"typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
|
||||
"typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<9.5.55|>=10,<=10.4.54|>=11,<=11.5.48|>=12,<=12.4.40|>=13,<=13.4.22|>=14,<=14.0.1",
|
||||
"typo3/cms-belog": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
|
||||
"typo3/cms-beuser": ">=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
|
||||
"typo3/cms-core": "<=8.7.56|>=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
|
||||
"typo3/cms-core": "<=8.7.56|>=9,<9.5.55|>=10,<=10.4.54|>=11,<=11.5.48|>=12,<=12.4.40|>=13,<=13.4.22|>=14,<=14.0.1",
|
||||
"typo3/cms-dashboard": ">=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
|
||||
"typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1",
|
||||
"typo3/cms-extensionmanager": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
|
||||
@@ -1875,7 +1878,8 @@
|
||||
"typo3/cms-install": "<4.1.14|>=4.2,<4.2.16|>=4.3,<4.3.9|>=4.4,<4.4.5|>=12.2,<12.4.8|==13.4.2",
|
||||
"typo3/cms-lowlevel": ">=11,<=11.5.41",
|
||||
"typo3/cms-recordlist": ">=11,<11.5.48",
|
||||
"typo3/cms-recycler": ">=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
|
||||
"typo3/cms-recycler": ">=9,<9.5.55|>=10,<=10.4.54|>=11,<=11.5.48|>=12,<=12.4.40|>=13,<=13.4.22|>=14,<=14.0.1",
|
||||
"typo3/cms-redirects": ">=10,<=10.4.54|>=11,<=11.5.48|>=12,<=12.4.40|>=13,<=13.4.22|>=14,<=14.0.1",
|
||||
"typo3/cms-rte-ckeditor": ">=9.5,<9.5.42|>=10,<10.4.39|>=11,<11.5.30",
|
||||
"typo3/cms-scheduler": ">=11,<=11.5.41",
|
||||
"typo3/cms-setup": ">=9,<=9.5.50|>=10,<=10.4.49|>=11,<=11.5.43|>=12,<=12.4.30|>=13,<=13.4.11",
|
||||
@@ -2035,7 +2039,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2026-01-09T19:06:26+00:00"
|
||||
"time": "2026-01-16T21:05:58+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/cli-parser",
|
||||
|
||||
@@ -10,6 +10,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
|
||||
"Forum" : "المنتدى",
|
||||
"Deleted user" : "مستخدم محذوف",
|
||||
"User ID" : "رمز المستخدم",
|
||||
"Role" : "الوظيفة",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Search" : "بحث",
|
||||
"Home" : "الرئيسية",
|
||||
|
||||
@@ -8,6 +8,8 @@
|
||||
"Underlined text" : "نصٌ مُسطّرٌ تحتيّاً",
|
||||
"Forum" : "المنتدى",
|
||||
"Deleted user" : "مستخدم محذوف",
|
||||
"User ID" : "رمز المستخدم",
|
||||
"Role" : "الوظيفة",
|
||||
"Loading …" : "التحميل جارٍ ...",
|
||||
"Search" : "بحث",
|
||||
"Home" : "الرئيسية",
|
||||
|
||||
@@ -11,6 +11,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Testu solliniáu",
|
||||
"Forum" : "Foru",
|
||||
"Deleted user" : "Usuariu desaniciáu",
|
||||
"Role" : "Rol",
|
||||
"Loading …" : "Cargando…",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Aniciu",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"Underlined text" : "Testu solliniáu",
|
||||
"Forum" : "Foru",
|
||||
"Deleted user" : "Usuariu desaniciáu",
|
||||
"Role" : "Rol",
|
||||
"Loading …" : "Cargando…",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Aniciu",
|
||||
|
||||
@@ -8,14 +8,15 @@ 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" : "Выдалены карыстальнік",
|
||||
"Role" : "Роля",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Search" : "Пошук",
|
||||
"Home" : "Дадому",
|
||||
|
||||
@@ -6,14 +6,15 @@
|
||||
"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" : "Выдалены карыстальнік",
|
||||
"Role" : "Роля",
|
||||
"Loading …" : "Загрузка …",
|
||||
"Search" : "Пошук",
|
||||
"Home" : "Дадому",
|
||||
|
||||
@@ -9,6 +9,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Подчертан текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Изтрит потребител",
|
||||
"User ID" : "Потребителски Идентификатор /Име/",
|
||||
"Role" : "Роля",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Search" : "Търсене",
|
||||
"Home" : "Начало",
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
"Underlined text" : "Подчертан текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Изтрит потребител",
|
||||
"User ID" : "Потребителски Идентификатор /Име/",
|
||||
"Role" : "Роля",
|
||||
"Loading …" : "Зареждане …",
|
||||
"Search" : "Търсене",
|
||||
"Home" : "Начало",
|
||||
|
||||
@@ -11,6 +11,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Text subratllat",
|
||||
"Forum" : "Fòrum",
|
||||
"Deleted user" : "Usuari suprimit",
|
||||
"User ID" : "ID de l'usuari",
|
||||
"Loading …" : "S'està carregant…",
|
||||
"Search" : "Cercar",
|
||||
"Home" : "Casa",
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
"Underlined text" : "Text subratllat",
|
||||
"Forum" : "Fòrum",
|
||||
"Deleted user" : "Usuari suprimit",
|
||||
"User ID" : "ID de l'usuari",
|
||||
"Loading …" : "S'està carregant…",
|
||||
"Search" : "Cercar",
|
||||
"Home" : "Casa",
|
||||
|
||||
@@ -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,12 +35,14 @@ 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",
|
||||
"User ID" : "Identif. uživatele",
|
||||
"Loading …" : "Načítání …",
|
||||
"Search" : "Hledat",
|
||||
"Home" : "Domů",
|
||||
|
||||
@@ -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,12 +33,14 @@
|
||||
"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",
|
||||
"User ID" : "Identif. uživatele",
|
||||
"Loading …" : "Načítání …",
|
||||
"Search" : "Hledat",
|
||||
"Home" : "Domů",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Bold text" : "Fed tekst",
|
||||
"Underlined text" : "Understreget tekst",
|
||||
"Forum" : "Forum",
|
||||
"User ID" : "Bruger ID",
|
||||
"Loading …" : "Indlæser ...",
|
||||
"Search" : "Søg",
|
||||
"Home" : "Hjem",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Bold text" : "Fed tekst",
|
||||
"Underlined text" : "Understreget tekst",
|
||||
"Forum" : "Forum",
|
||||
"User ID" : "Bruger ID",
|
||||
"Loading …" : "Indlæser ...",
|
||||
"Search" : "Søg",
|
||||
"Home" : "Hjem",
|
||||
|
||||
14
l10n/de.js
14
l10n/de.js
File diff suppressed because one or more lines are too long
14
l10n/de.json
14
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",
|
||||
@@ -43,6 +43,18 @@ OC.L10N.register(
|
||||
"Deleted user" : "Gelöschter Benutzer",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Ein Community-basiertes Forum, das direkt in Ihre Nextcloud-Instanz integriert ist.",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Diskussionen starten, Ideen austauschen und direkt in Nextcloud mit der Community zusammenarbeiten.\n\n**⚠️ Hinweis zur frühen Entwicklungsphase:** \nDiese App befindet sich in einer frühen Entwicklungsphase. Sie ist zwar funktionsfähig, es können jedoch Fehler oder unvollständige Funktionen auftreten. Bitte melden Sie alle Probleme auf GitHub und erstellen Sie regelmäßig Backups Ihrer Daten.\n\n**Hauptfunktionen:**\n- **Themenbasierte Diskussionen** – Organisierte Diskussionsthemen erstellen und beantworten\n- **Kategorieorganisation** – Das Forum mit anpassbaren Kategorien und Überschriften strukturieren.\n- **Rich-Text-Formatierung** – BBCode verwenden, um Beiträge mit Fettdruck, Kursivschrift, Links, Bildern, Codeblöcken und mehr zu formatieren.\n- **Dateianhänge** – Dateien aus dem Nextcloud-Speicher an Beiträge anhängen.\n- **Reaktionen auf Beiträge** – Mit Emojis auf Beiträge reagieren.\n- **Lese-/Ungelesen-Status** – Den Überblick darüber behalten, welche Themen bereits gelesen wurden.\n- **Suche** – Diskussionen schnell mit der integrierten Suche finden.\n- **Benutzerprofile** – Den Beitragsverlauf und die Statistiken der Benutzer ansehen.\n- **Rollenbasierte Berechtigungen** – Den Zugriff und die Moderation mit flexiblen Rollen steuern.\n- **Gastzugriff**: Optionaler öffentlicher Zugriff für nicht authentifizierte Benutzer mit konfigurierbaren Berechtigungen.\n- **Admin-Tools** – Kategorien, Rollen, BBCodes und Forumseinstellungen verwalten.\n- **Moderations-Tools** – Themen und Beiträge anheften, sperren und verwalten.\n\n**Perfekt für:**\n- Teamdiskussionen und Zusammenarbeit\n- Community-Foren\n- Supportkanäle\n- Wissensdatenbanken\n- Projektdiskussionen\n- Interne Kommunikation\n\nDas Forum integriert sich nahtlos in die Nextcloud-Instanz und nutzt die bestehenden Benutzer und Gruppen für die Anmeldung und die Zugriffskontrolle.",
|
||||
"Repair Seeds" : "Repair Seeds",
|
||||
"Run the repair seeds command to restore default forum data (roles, categories, permissions, BBCodes). This is safe to run multiple times as it will skip data that already exists." : "Führen Sie den Befehl \"Repair Seeds\" aus, um Standard-Forumsdaten (Rollen, Kategorien, Berechtigungen, BBCodes) wiederherzustellen. Dies ist sicher, mehrmals zu laufen, da es Daten überspringt, die bereits vorhanden sind.",
|
||||
"Run Repair Seeds" : "\"Repair Seeds\" ausführen",
|
||||
"User Roles" : "Benutzerrollen",
|
||||
"Assign forum roles to users. This allows you to grant administrative or moderator privileges to specific users." : "Benutzern Forenrollen zuweisen. Hierdurch können bestimmten Benutzern Verwaltungs- oder Moderationsrechte gewährt werden.",
|
||||
"User ID" : "Benutzer-ID",
|
||||
"Enter user ID" : "Benutzer-ID eingeben",
|
||||
"Role" : "Rolle",
|
||||
"Select a role" : "Eine Rolle auswählen",
|
||||
"Assign Role" : "Rolle zuweisen",
|
||||
"Failed to run repair seeds" : "Fehler beim Ausführen von \"Repair Seeds\"",
|
||||
"Failed to assign role" : "Rolle konnte nicht zugewiesen werden",
|
||||
"Loading …" : "Lade …",
|
||||
"Search" : "Suche",
|
||||
"Home" : "Startseite",
|
||||
|
||||
@@ -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",
|
||||
@@ -41,6 +41,18 @@
|
||||
"Deleted user" : "Gelöschter Benutzer",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Ein Community-basiertes Forum, das direkt in Ihre Nextcloud-Instanz integriert ist.",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Diskussionen starten, Ideen austauschen und direkt in Nextcloud mit der Community zusammenarbeiten.\n\n**⚠️ Hinweis zur frühen Entwicklungsphase:** \nDiese App befindet sich in einer frühen Entwicklungsphase. Sie ist zwar funktionsfähig, es können jedoch Fehler oder unvollständige Funktionen auftreten. Bitte melden Sie alle Probleme auf GitHub und erstellen Sie regelmäßig Backups Ihrer Daten.\n\n**Hauptfunktionen:**\n- **Themenbasierte Diskussionen** – Organisierte Diskussionsthemen erstellen und beantworten\n- **Kategorieorganisation** – Das Forum mit anpassbaren Kategorien und Überschriften strukturieren.\n- **Rich-Text-Formatierung** – BBCode verwenden, um Beiträge mit Fettdruck, Kursivschrift, Links, Bildern, Codeblöcken und mehr zu formatieren.\n- **Dateianhänge** – Dateien aus dem Nextcloud-Speicher an Beiträge anhängen.\n- **Reaktionen auf Beiträge** – Mit Emojis auf Beiträge reagieren.\n- **Lese-/Ungelesen-Status** – Den Überblick darüber behalten, welche Themen bereits gelesen wurden.\n- **Suche** – Diskussionen schnell mit der integrierten Suche finden.\n- **Benutzerprofile** – Den Beitragsverlauf und die Statistiken der Benutzer ansehen.\n- **Rollenbasierte Berechtigungen** – Den Zugriff und die Moderation mit flexiblen Rollen steuern.\n- **Gastzugriff**: Optionaler öffentlicher Zugriff für nicht authentifizierte Benutzer mit konfigurierbaren Berechtigungen.\n- **Admin-Tools** – Kategorien, Rollen, BBCodes und Forumseinstellungen verwalten.\n- **Moderations-Tools** – Themen und Beiträge anheften, sperren und verwalten.\n\n**Perfekt für:**\n- Teamdiskussionen und Zusammenarbeit\n- Community-Foren\n- Supportkanäle\n- Wissensdatenbanken\n- Projektdiskussionen\n- Interne Kommunikation\n\nDas Forum integriert sich nahtlos in die Nextcloud-Instanz und nutzt die bestehenden Benutzer und Gruppen für die Anmeldung und die Zugriffskontrolle.",
|
||||
"Repair Seeds" : "Repair Seeds",
|
||||
"Run the repair seeds command to restore default forum data (roles, categories, permissions, BBCodes). This is safe to run multiple times as it will skip data that already exists." : "Führen Sie den Befehl \"Repair Seeds\" aus, um Standard-Forumsdaten (Rollen, Kategorien, Berechtigungen, BBCodes) wiederherzustellen. Dies ist sicher, mehrmals zu laufen, da es Daten überspringt, die bereits vorhanden sind.",
|
||||
"Run Repair Seeds" : "\"Repair Seeds\" ausführen",
|
||||
"User Roles" : "Benutzerrollen",
|
||||
"Assign forum roles to users. This allows you to grant administrative or moderator privileges to specific users." : "Benutzern Forenrollen zuweisen. Hierdurch können bestimmten Benutzern Verwaltungs- oder Moderationsrechte gewährt werden.",
|
||||
"User ID" : "Benutzer-ID",
|
||||
"Enter user ID" : "Benutzer-ID eingeben",
|
||||
"Role" : "Rolle",
|
||||
"Select a role" : "Eine Rolle auswählen",
|
||||
"Assign Role" : "Rolle zuweisen",
|
||||
"Failed to run repair seeds" : "Fehler beim Ausführen von \"Repair Seeds\"",
|
||||
"Failed to assign role" : "Rolle konnte nicht zugewiesen werden",
|
||||
"Loading …" : "Lade …",
|
||||
"Search" : "Suche",
|
||||
"Home" : "Startseite",
|
||||
|
||||
@@ -11,6 +11,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Υπογραμμισμένο κείμενο",
|
||||
"Forum" : "Φόρουμ",
|
||||
"Deleted user" : "Διαγραμμένος χρήστης",
|
||||
"User ID" : "Ταυτότητα Χρήστη",
|
||||
"Role" : "Ρόλος/Θέση",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Search" : "Αναζήτηση",
|
||||
"Home" : "Αρχική",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
"Underlined text" : "Υπογραμμισμένο κείμενο",
|
||||
"Forum" : "Φόρουμ",
|
||||
"Deleted user" : "Διαγραμμένος χρήστης",
|
||||
"User ID" : "Ταυτότητα Χρήστη",
|
||||
"Role" : "Ρόλος/Θέση",
|
||||
"Loading …" : "Γίνεται φόρτωση…",
|
||||
"Search" : "Αναζήτηση",
|
||||
"Home" : "Αρχική",
|
||||
|
||||
@@ -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}",
|
||||
@@ -43,6 +43,18 @@ OC.L10N.register(
|
||||
"Deleted user" : "Deleted user",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "A community-driven forum built right into your Nextcloud instance",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control.",
|
||||
"Repair Seeds" : "Repair Seeds",
|
||||
"Run the repair seeds command to restore default forum data (roles, categories, permissions, BBCodes). This is safe to run multiple times as it will skip data that already exists." : "Run the repair seeds command to restore default forum data (roles, categories, permissions, BBCodes). This is safe to run multiple times as it will skip data that already exists.",
|
||||
"Run Repair Seeds" : "Run Repair Seeds",
|
||||
"User Roles" : "User Roles",
|
||||
"Assign forum roles to users. This allows you to grant administrative or moderator privileges to specific users." : "Assign forum roles to users. This allows you to grant administrative or moderator privileges to specific users.",
|
||||
"User ID" : "User ID",
|
||||
"Enter user ID" : "Enter user ID",
|
||||
"Role" : "Role",
|
||||
"Select a role" : "Select a role",
|
||||
"Assign Role" : "Assign Role",
|
||||
"Failed to run repair seeds" : "Failed to run repair seeds",
|
||||
"Failed to assign role" : "Failed to assign role",
|
||||
"Loading …" : "Loading …",
|
||||
"Search" : "Search",
|
||||
"Home" : "Home",
|
||||
@@ -282,6 +294,8 @@ OC.L10N.register(
|
||||
"Configure how you receive notifications" : "Configure how you receive notifications",
|
||||
"Auto-subscribe to threads I create" : "Auto-subscribe to threads I create",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "When enabled, you will automatically receive notifications for replies to threads you create",
|
||||
"Auto-subscribe to threads I reply to" : "Auto-subscribe to threads I reply to",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "When enabled, you will automatically receive notifications for new replies in threads you have replied to",
|
||||
"Files" : "Files",
|
||||
"Configure file upload settings" : "Configure file upload settings",
|
||||
"Upload directory" : "Upload directory",
|
||||
|
||||
@@ -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}",
|
||||
@@ -41,6 +41,18 @@
|
||||
"Deleted user" : "Deleted user",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "A community-driven forum built right into your Nextcloud instance",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control.",
|
||||
"Repair Seeds" : "Repair Seeds",
|
||||
"Run the repair seeds command to restore default forum data (roles, categories, permissions, BBCodes). This is safe to run multiple times as it will skip data that already exists." : "Run the repair seeds command to restore default forum data (roles, categories, permissions, BBCodes). This is safe to run multiple times as it will skip data that already exists.",
|
||||
"Run Repair Seeds" : "Run Repair Seeds",
|
||||
"User Roles" : "User Roles",
|
||||
"Assign forum roles to users. This allows you to grant administrative or moderator privileges to specific users." : "Assign forum roles to users. This allows you to grant administrative or moderator privileges to specific users.",
|
||||
"User ID" : "User ID",
|
||||
"Enter user ID" : "Enter user ID",
|
||||
"Role" : "Role",
|
||||
"Select a role" : "Select a role",
|
||||
"Assign Role" : "Assign Role",
|
||||
"Failed to run repair seeds" : "Failed to run repair seeds",
|
||||
"Failed to assign role" : "Failed to assign role",
|
||||
"Loading …" : "Loading …",
|
||||
"Search" : "Search",
|
||||
"Home" : "Home",
|
||||
@@ -280,6 +292,8 @@
|
||||
"Configure how you receive notifications" : "Configure how you receive notifications",
|
||||
"Auto-subscribe to threads I create" : "Auto-subscribe to threads I create",
|
||||
"When enabled, you will automatically receive notifications for replies to threads you create" : "When enabled, you will automatically receive notifications for replies to threads you create",
|
||||
"Auto-subscribe to threads I reply to" : "Auto-subscribe to threads I reply to",
|
||||
"When enabled, you will automatically receive notifications for new replies in threads you have replied to" : "When enabled, you will automatically receive notifications for new replies in threads you have replied to",
|
||||
"Files" : "Files",
|
||||
"Configure file upload settings" : "Configure file upload settings",
|
||||
"Upload directory" : "Upload directory",
|
||||
|
||||
@@ -16,6 +16,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"User ID" : "ID de usuario",
|
||||
"Role" : "Cargo",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"User ID" : "ID de usuario",
|
||||
"Role" : "Cargo",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
|
||||
@@ -7,6 +7,7 @@ OC.L10N.register(
|
||||
"General" : "General",
|
||||
"Support" : "Soporte",
|
||||
"Forum" : "Foro",
|
||||
"Role" : "Rol",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Casa",
|
||||
"Users" : "Usuarios",
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
"General" : "General",
|
||||
"Support" : "Soporte",
|
||||
"Forum" : "Foro",
|
||||
"Role" : "Rol",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Casa",
|
||||
"Users" : "Usuarios",
|
||||
|
||||
@@ -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,12 +33,15 @@ 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!",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado por la comunidad integrado directamente en tu instancia de Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Crea discusiones, comparte ideas y colabora con tu comunidad directamente en Nextcloud.\n\n**⚠️ Aviso de Desarrollo Temprano:**\nEsta aplicación se encuentra en etapas iniciales de desarrollo. Aunque funcional, podrías encontrar errores o funciones incompletas. Por favor reporta cualquier problema en GitHub y considera hacer copias de seguridad regularmente.\n\n**Funciones clave:**\n- **Discusiones por hilos** - Crea y responde a hilos organizados\n- **Organización por categorías** - Estructura tu foro con categorías y encabezados personalizables\n- **Formato de texto enriquecido** - Usa BBCode para dar formato a las publicaciones con negrita, cursiva, enlaces, imágenes, bloques de código y más\n- **Adjuntos de archivos** - Adjunta archivos desde tu almacenamiento de Nextcloud a las publicaciones\n- **Reacciones a publicaciones** - Reacciona a publicaciones con emojis\n- **Seguimiento leído/no leído** - Mantén el control de qué hilos has leído\n- **Búsqueda** - Encuentra discusiones rápidamente con la búsqueda incorporada\n- **Perfiles de usuario** - Consulta el historial de publicaciones y estadísticas de usuarios\n- **Permisos basados en roles** - Controla el acceso y la moderación con roles flexibles\n- **Acceso de invitados** - Acceso público opcional para usuarios no autenticados con permisos configurables\n- **Herramientas de administración** - Gestiona categorías, roles, BBCodes y configuraciones del foro\n- **Herramientas de moderación** - Fija, bloquea y gestiona hilos y publicaciones\n\n**Ideal para:**\n- Discusiones y colaboración en equipo\n- Foros comunitarios\n- Canales de soporte\n- Bases de conocimiento\n- Discusiones de proyectos\n- Comunicación interna\n\nEl foro se integra perfectamente con tu instancia de Nextcloud, utilizando tus usuarios y grupos existentes para autenticación y control de acceso.",
|
||||
"User ID" : "ID de usuario",
|
||||
"Role" : "Rol",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
|
||||
@@ -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,12 +31,15 @@
|
||||
"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!",
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado por la comunidad integrado directamente en tu instancia de Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Crea discusiones, comparte ideas y colabora con tu comunidad directamente en Nextcloud.\n\n**⚠️ Aviso de Desarrollo Temprano:**\nEsta aplicación se encuentra en etapas iniciales de desarrollo. Aunque funcional, podrías encontrar errores o funciones incompletas. Por favor reporta cualquier problema en GitHub y considera hacer copias de seguridad regularmente.\n\n**Funciones clave:**\n- **Discusiones por hilos** - Crea y responde a hilos organizados\n- **Organización por categorías** - Estructura tu foro con categorías y encabezados personalizables\n- **Formato de texto enriquecido** - Usa BBCode para dar formato a las publicaciones con negrita, cursiva, enlaces, imágenes, bloques de código y más\n- **Adjuntos de archivos** - Adjunta archivos desde tu almacenamiento de Nextcloud a las publicaciones\n- **Reacciones a publicaciones** - Reacciona a publicaciones con emojis\n- **Seguimiento leído/no leído** - Mantén el control de qué hilos has leído\n- **Búsqueda** - Encuentra discusiones rápidamente con la búsqueda incorporada\n- **Perfiles de usuario** - Consulta el historial de publicaciones y estadísticas de usuarios\n- **Permisos basados en roles** - Controla el acceso y la moderación con roles flexibles\n- **Acceso de invitados** - Acceso público opcional para usuarios no autenticados con permisos configurables\n- **Herramientas de administración** - Gestiona categorías, roles, BBCodes y configuraciones del foro\n- **Herramientas de moderación** - Fija, bloquea y gestiona hilos y publicaciones\n\n**Ideal para:**\n- Discusiones y colaboración en equipo\n- Foros comunitarios\n- Canales de soporte\n- Bases de conocimiento\n- Discusiones de proyectos\n- Comunicación interna\n\nEl foro se integra perfectamente con tu instancia de Nextcloud, utilizando tus usuarios y grupos existentes para autenticación y control de acceso.",
|
||||
"User ID" : "ID de usuario",
|
||||
"Role" : "Rol",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
|
||||
@@ -9,6 +9,8 @@ OC.L10N.register(
|
||||
"Bold text" : "Texto en negritas",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"User ID" : "ID de usuario",
|
||||
"Role" : "Cargo",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
"Bold text" : "Texto en negritas",
|
||||
"Underlined text" : "Texto subrayado",
|
||||
"Forum" : "Foro",
|
||||
"User ID" : "ID de usuario",
|
||||
"Role" : "Cargo",
|
||||
"Loading …" : "Cargando …",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
|
||||
@@ -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,12 +35,15 @@ 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}“",
|
||||
"Welcome to the forum!" : "Tere tulemast foorumisse!",
|
||||
"Deleted user" : "Kustutatud kasutaja",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris.",
|
||||
"User ID" : "Kasutajatunnus",
|
||||
"Role" : "Roll",
|
||||
"Loading …" : "Laadin...",
|
||||
"Search" : "Otsi",
|
||||
"Home" : "Avaleht",
|
||||
|
||||
@@ -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,12 +33,15 @@
|
||||
"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}“",
|
||||
"Welcome to the forum!" : "Tere tulemast foorumisse!",
|
||||
"Deleted user" : "Kustutatud kasutaja",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Kogukonnapõhine foorum, mis toimib otse sinu Nextcloudi serveris.",
|
||||
"User ID" : "Kasutajatunnus",
|
||||
"Role" : "Roll",
|
||||
"Loading …" : "Laadin...",
|
||||
"Search" : "Otsi",
|
||||
"Home" : "Avaleht",
|
||||
|
||||
@@ -9,6 +9,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Azpimarratutako testua",
|
||||
"Forum" : "Foroa",
|
||||
"Deleted user" : "Ezabatutako erabiltzaileak",
|
||||
"User ID" : "Erabiltzailearen ID",
|
||||
"Role" : "Zeregina",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Search" : "Bilatu",
|
||||
"Home" : "Etxea",
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
"Underlined text" : "Azpimarratutako testua",
|
||||
"Forum" : "Foroa",
|
||||
"Deleted user" : "Ezabatutako erabiltzaileak",
|
||||
"User ID" : "Erabiltzailearen ID",
|
||||
"Role" : "Zeregina",
|
||||
"Loading …" : "Kargatzen ...",
|
||||
"Search" : "Bilatu",
|
||||
"Home" : "Etxea",
|
||||
|
||||
@@ -10,6 +10,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Underlined text",
|
||||
"Forum" : "انجمن",
|
||||
"Deleted user" : "Deleted user",
|
||||
"User ID" : "شناسه کاربر",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Search" : "جستجو",
|
||||
"Home" : "خانه",
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
"Underlined text" : "Underlined text",
|
||||
"Forum" : "انجمن",
|
||||
"Deleted user" : "Deleted user",
|
||||
"User ID" : "شناسه کاربر",
|
||||
"Loading …" : "در حال بارگذاری...",
|
||||
"Search" : "جستجو",
|
||||
"Home" : "خانه",
|
||||
|
||||
@@ -10,6 +10,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Alleviivattu teksti",
|
||||
"Forum" : "Keskustelupalsta",
|
||||
"Deleted user" : "Poistettu käyttäjä",
|
||||
"User ID" : "Käyttäjätunniste",
|
||||
"Role" : "Rooli",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Search" : "Etsi",
|
||||
"Home" : "Koti",
|
||||
|
||||
@@ -8,6 +8,8 @@
|
||||
"Underlined text" : "Alleviivattu teksti",
|
||||
"Forum" : "Keskustelupalsta",
|
||||
"Deleted user" : "Poistettu käyttäjä",
|
||||
"User ID" : "Käyttäjätunniste",
|
||||
"Role" : "Rooli",
|
||||
"Loading …" : "Ladataan…",
|
||||
"Search" : "Etsi",
|
||||
"Home" : "Koti",
|
||||
|
||||
@@ -10,6 +10,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Texte souligné",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilisateur supprimé",
|
||||
"User ID" : "Identifiant utilisateur",
|
||||
"Role" : "Rôle",
|
||||
"Loading …" : "Chargement…",
|
||||
"Search" : "Rechercher",
|
||||
"Home" : "Accueil",
|
||||
|
||||
@@ -8,6 +8,8 @@
|
||||
"Underlined text" : "Texte souligné",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilisateur supprimé",
|
||||
"User ID" : "Identifiant utilisateur",
|
||||
"Role" : "Rôle",
|
||||
"Loading …" : "Chargement…",
|
||||
"Search" : "Rechercher",
|
||||
"Home" : "Accueil",
|
||||
|
||||
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}",
|
||||
@@ -43,6 +43,18 @@ OC.L10N.register(
|
||||
"Deleted user" : "Úsáideoir scriosta",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Fóram atá tiomáinte ag an bpobal atá tógtha isteach i do chás Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cruthaigh plé, roinn smaointe agus comhoibrigh le do phobal go díreach i Nextcloud.\n\n**⚠️ Fógra Forbartha Luath:**\nTá an aip seo i gcéimeanna luatha forbartha. Cé go bhfuil sí feidhmiúil, d'fhéadfadh fabhtanna nó gnéithe neamhiomlána teacht ort. Tuairiscigh aon fhadhbanna ar GitHub agus smaoinigh ar chúltaca de do shonraí a dhéanamh go rialta.\n\n**Príomhghnéithe:**\n- **Plé bunaithe ar shnáitheanna** - Cruthaigh agus freagair snáitheanna plé eagraithe\n- **Eagrú Catagóirí** - Struchtúraigh do fhóram le catagóirí agus ceanntásca saincheaptha\n- **Formáidiú Téacs Saibhir** - Úsáid BBCode chun poist a fhormáidiú le cló trom, iodálach, naisc, íomhánna, bloic chód agus níos mó\n- **Ceangaltáin Chomhad** - Ceangail comhaid ó do stóras Nextcloud le poist\n- **Imoibrithe Poist** - Imoibriú le poist le himoibrithe emoji\n- **Rianú Léite/Gan Léite** - Coinnigh súil ar na snáitheanna atá léite agat\n- **Cuardaigh** - Aimsigh plé go tapa le cuardach ionsuite\n- **Próifílí Úsáideoirí** - Féach ar stair agus staitisticí post úsáideoirí\n- **Ceadanna Bunaithe ar Ról** - Rialú rochtana agus modhnóireachta le róil sholúbtha\n- **Rochtain Aoi**: Rochtain phoiblí roghnach d'úsáideoirí neamhúdaraithe le ceadanna inchumraithe\n- **Uirlisí Riaracháin** - Bainistigh catagóirí, róil, BBCóid agus socruithe fóraim\n- **Uirlisí Modhnóireachta** - Snáitheanna agus poist a phionáil, a ghlasáil agus a bhainistiú\n\n**Foirfe do:**\n- Plé foirne agus comhoibriú\n- Fóraim phobail\n- Bealaí tacaíochta\n- Bunachair eolais\n- Plé tionscadail\n- Cumarsáid inmheánach\n\nComhtháthaíonn an fóram go gan uaim le do chás Nextcloud, ag baint úsáide as d'úsáideoirí agus do ghrúpaí atá ann cheana féin le haghaidh fíordheimhnithe agus rialú rochtana.",
|
||||
"Repair Seeds" : "Síolta Deisiúcháin",
|
||||
"Run the repair seeds command to restore default forum data (roles, categories, permissions, BBCodes). This is safe to run multiple times as it will skip data that already exists." : "Rith an t-ordú repair seeds chun sonraí réamhshocraithe an fhóraim (róil, catagóirí, ceadanna, BBCóid) a athbhunú. Tá sé sábháilte é seo a rith arís agus arís eile mar go scipeálfaidh sé sonraí atá ann cheana féin.",
|
||||
"Run Repair Seeds" : "Síolta Deisiúcháin Rith",
|
||||
"User Roles" : "Róil Úsáideora",
|
||||
"Assign forum roles to users. This allows you to grant administrative or moderator privileges to specific users." : "Sannadh róil fóraim d'úsáideoirí. Ligeann sé seo duit pribhléidí riaracháin nó modhnóra a dheonú d'úsáideoirí sonracha.",
|
||||
"User ID" : "ID Úsáideoir",
|
||||
"Enter user ID" : "Cuir isteach ID úsáideora",
|
||||
"Role" : "Ról",
|
||||
"Select a role" : "Roghnaigh ról",
|
||||
"Assign Role" : "Sannadh Ról",
|
||||
"Failed to run repair seeds" : "Theip ar shíolta deisiúcháin a rith",
|
||||
"Failed to assign role" : "Theip ar ról a shannadh",
|
||||
"Loading …" : "Á lódáil…",
|
||||
"Search" : "Cuardach",
|
||||
"Home" : "Baile",
|
||||
|
||||
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}",
|
||||
@@ -41,6 +41,18 @@
|
||||
"Deleted user" : "Úsáideoir scriosta",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Fóram atá tiomáinte ag an bpobal atá tógtha isteach i do chás Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cruthaigh plé, roinn smaointe agus comhoibrigh le do phobal go díreach i Nextcloud.\n\n**⚠️ Fógra Forbartha Luath:**\nTá an aip seo i gcéimeanna luatha forbartha. Cé go bhfuil sí feidhmiúil, d'fhéadfadh fabhtanna nó gnéithe neamhiomlána teacht ort. Tuairiscigh aon fhadhbanna ar GitHub agus smaoinigh ar chúltaca de do shonraí a dhéanamh go rialta.\n\n**Príomhghnéithe:**\n- **Plé bunaithe ar shnáitheanna** - Cruthaigh agus freagair snáitheanna plé eagraithe\n- **Eagrú Catagóirí** - Struchtúraigh do fhóram le catagóirí agus ceanntásca saincheaptha\n- **Formáidiú Téacs Saibhir** - Úsáid BBCode chun poist a fhormáidiú le cló trom, iodálach, naisc, íomhánna, bloic chód agus níos mó\n- **Ceangaltáin Chomhad** - Ceangail comhaid ó do stóras Nextcloud le poist\n- **Imoibrithe Poist** - Imoibriú le poist le himoibrithe emoji\n- **Rianú Léite/Gan Léite** - Coinnigh súil ar na snáitheanna atá léite agat\n- **Cuardaigh** - Aimsigh plé go tapa le cuardach ionsuite\n- **Próifílí Úsáideoirí** - Féach ar stair agus staitisticí post úsáideoirí\n- **Ceadanna Bunaithe ar Ról** - Rialú rochtana agus modhnóireachta le róil sholúbtha\n- **Rochtain Aoi**: Rochtain phoiblí roghnach d'úsáideoirí neamhúdaraithe le ceadanna inchumraithe\n- **Uirlisí Riaracháin** - Bainistigh catagóirí, róil, BBCóid agus socruithe fóraim\n- **Uirlisí Modhnóireachta** - Snáitheanna agus poist a phionáil, a ghlasáil agus a bhainistiú\n\n**Foirfe do:**\n- Plé foirne agus comhoibriú\n- Fóraim phobail\n- Bealaí tacaíochta\n- Bunachair eolais\n- Plé tionscadail\n- Cumarsáid inmheánach\n\nComhtháthaíonn an fóram go gan uaim le do chás Nextcloud, ag baint úsáide as d'úsáideoirí agus do ghrúpaí atá ann cheana féin le haghaidh fíordheimhnithe agus rialú rochtana.",
|
||||
"Repair Seeds" : "Síolta Deisiúcháin",
|
||||
"Run the repair seeds command to restore default forum data (roles, categories, permissions, BBCodes). This is safe to run multiple times as it will skip data that already exists." : "Rith an t-ordú repair seeds chun sonraí réamhshocraithe an fhóraim (róil, catagóirí, ceadanna, BBCóid) a athbhunú. Tá sé sábháilte é seo a rith arís agus arís eile mar go scipeálfaidh sé sonraí atá ann cheana féin.",
|
||||
"Run Repair Seeds" : "Síolta Deisiúcháin Rith",
|
||||
"User Roles" : "Róil Úsáideora",
|
||||
"Assign forum roles to users. This allows you to grant administrative or moderator privileges to specific users." : "Sannadh róil fóraim d'úsáideoirí. Ligeann sé seo duit pribhléidí riaracháin nó modhnóra a dheonú d'úsáideoirí sonracha.",
|
||||
"User ID" : "ID Úsáideoir",
|
||||
"Enter user ID" : "Cuir isteach ID úsáideora",
|
||||
"Role" : "Ról",
|
||||
"Select a role" : "Roghnaigh ról",
|
||||
"Assign Role" : "Sannadh Ról",
|
||||
"Failed to run repair seeds" : "Theip ar shíolta deisiúcháin a rith",
|
||||
"Failed to assign role" : "Theip ar ról a shannadh",
|
||||
"Loading …" : "Á lódáil…",
|
||||
"Search" : "Cuardach",
|
||||
"Home" : "Baile",
|
||||
|
||||
@@ -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}",
|
||||
@@ -43,6 +43,8 @@ OC.L10N.register(
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cree debates, comparta ideas e colabore directamente coa súa comunidade en Nextcloud.\n\n**⚠️ Aviso sobre o desenvolvemento inicial:**\nEsta aplicación está en fases iniciais de desenvolvemento. Aínda que é funcional, pode atopar erros ou funcións incompletas. Informe de calquera problema en GitHub e considere facer copias de seguranza dos seus datos regularmente.\n\n**Características principais:**\n- **Debates baseados en fíos** - Crear e responder a fíos de debate organizados\n- **Organización por categorías** - Estruture o seu foro con categorías e cabeceiras personalizábeis\n- **Formato de texto enriquecido** - Use BBCode para formatar publicacións en grosa, cursiva, ligazóns, imaxes, bloques de código e máis\n- **Ficheiros anexos** - Anexe ficheiros do seu almacenamento Nextcloud ás publicacións\n- **Reaccións á publicación** - Reaccione ás publicacións con «emojis» de reacción\n- **Seguimento de lido/non lido** - Leve o control de que fíos leu\n- **Buscar** - Atope debates rapidamente coa busca integrada\n- **Perfís de usuario** - Ver o historial de publicacións e estatísticas de usuarios\n- **Permisos baseados en roles** - Controle o acceso e moderación con roles flexíbeis\n- **Acceso de convidados**: Acceso público opcional para usuarios non autenticados con permisos configurábeis\n- **Ferramentas de administración** - Xestione categorías, roles, BBCodes e os axustes do foro\n- **Ferramentas de moderación** - Fixar, bloquear e xestionar fíos e publicacións\n\n**Perfecto para:**\n- Debates e colaboración en equipo\n- Foros comunitarios\n- Canles de asistencia\n- Bases de coñecemento\n- Debates sobre proxectos\n- Comunicación interna\n\nO foro intégrase sen problemas coa súa instancia de Nextcloud, empregando os seus usuarios e grupos existentes para a autenticación e o control de acceso.",
|
||||
"User ID" : "ID do usuario",
|
||||
"Role" : "Rol",
|
||||
"Loading …" : "Cargando…",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
@@ -280,8 +282,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,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}",
|
||||
@@ -41,6 +41,8 @@
|
||||
"Deleted user" : "Usuario eliminado",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Un foro impulsado pola comunidade integrado directamente na súa instancia de Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Cree debates, comparta ideas e colabore directamente coa súa comunidade en Nextcloud.\n\n**⚠️ Aviso sobre o desenvolvemento inicial:**\nEsta aplicación está en fases iniciais de desenvolvemento. Aínda que é funcional, pode atopar erros ou funcións incompletas. Informe de calquera problema en GitHub e considere facer copias de seguranza dos seus datos regularmente.\n\n**Características principais:**\n- **Debates baseados en fíos** - Crear e responder a fíos de debate organizados\n- **Organización por categorías** - Estruture o seu foro con categorías e cabeceiras personalizábeis\n- **Formato de texto enriquecido** - Use BBCode para formatar publicacións en grosa, cursiva, ligazóns, imaxes, bloques de código e máis\n- **Ficheiros anexos** - Anexe ficheiros do seu almacenamento Nextcloud ás publicacións\n- **Reaccións á publicación** - Reaccione ás publicacións con «emojis» de reacción\n- **Seguimento de lido/non lido** - Leve o control de que fíos leu\n- **Buscar** - Atope debates rapidamente coa busca integrada\n- **Perfís de usuario** - Ver o historial de publicacións e estatísticas de usuarios\n- **Permisos baseados en roles** - Controle o acceso e moderación con roles flexíbeis\n- **Acceso de convidados**: Acceso público opcional para usuarios non autenticados con permisos configurábeis\n- **Ferramentas de administración** - Xestione categorías, roles, BBCodes e os axustes do foro\n- **Ferramentas de moderación** - Fixar, bloquear e xestionar fíos e publicacións\n\n**Perfecto para:**\n- Debates e colaboración en equipo\n- Foros comunitarios\n- Canles de asistencia\n- Bases de coñecemento\n- Debates sobre proxectos\n- Comunicación interna\n\nO foro intégrase sen problemas coa súa instancia de Nextcloud, empregando os seus usuarios e grupos existentes para a autenticación e o control de acceso.",
|
||||
"User ID" : "ID do usuario",
|
||||
"Role" : "Rol",
|
||||
"Loading …" : "Cargando…",
|
||||
"Search" : "Buscar",
|
||||
"Home" : "Inicio",
|
||||
@@ -278,8 +280,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",
|
||||
|
||||
128
l10n/he.js
128
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,26 +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" : "עריכת כותרת",
|
||||
|
||||
128
l10n/he.json
128
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,26 +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" : "עריכת כותרת",
|
||||
|
||||
@@ -7,6 +7,7 @@ OC.L10N.register(
|
||||
"Support" : "Podrška",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Izbrisan korisnik",
|
||||
"Role" : "Uloga",
|
||||
"Loading …" : "Učitavanje…",
|
||||
"Search" : "Traži",
|
||||
"Home" : "Doma",
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
"Support" : "Podrška",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Izbrisan korisnik",
|
||||
"Role" : "Uloga",
|
||||
"Loading …" : "Učitavanje…",
|
||||
"Search" : "Traži",
|
||||
"Home" : "Doma",
|
||||
|
||||
@@ -9,6 +9,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Aláhúzott szöveg",
|
||||
"Forum" : "Fórum",
|
||||
"Deleted user" : "Törölt felhasználó",
|
||||
"User ID" : "Felhasználóazonosító",
|
||||
"Role" : "Szerepkör",
|
||||
"Loading …" : "Betöltés…",
|
||||
"Search" : "Keresés",
|
||||
"Home" : "Kezdőlap",
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
"Underlined text" : "Aláhúzott szöveg",
|
||||
"Forum" : "Fórum",
|
||||
"Deleted user" : "Törölt felhasználó",
|
||||
"User ID" : "Felhasználóazonosító",
|
||||
"Role" : "Szerepkör",
|
||||
"Loading …" : "Betöltés…",
|
||||
"Search" : "Keresés",
|
||||
"Home" : "Kezdőlap",
|
||||
|
||||
33
l10n/id.js
33
l10n/id.js
@@ -2,10 +2,16 @@ OC.L10N.register(
|
||||
"forum",
|
||||
{
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderator",
|
||||
"User" : "Pengguna",
|
||||
"Guest" : "Tamu",
|
||||
"General" : "Umum",
|
||||
"Support" : "Dukung",
|
||||
"Bold text" : "Teks tebal",
|
||||
"Underlined text" : "Teks bergaris bawah",
|
||||
"Forum" : "Forum",
|
||||
"User ID" : "ID Pengguna",
|
||||
"Role" : "Peran",
|
||||
"Loading …" : "Memuat …",
|
||||
"Search" : "Cari",
|
||||
"Home" : "Beranda",
|
||||
@@ -18,37 +24,61 @@ OC.L10N.register(
|
||||
"Hello world!" : "Halo dunia!",
|
||||
"Code" : "Kode",
|
||||
"Font size" : "Ukuran font",
|
||||
"Align left" : "Rata kiri",
|
||||
"Align center" : "Rata tengah",
|
||||
"Align right" : "Rata kanan",
|
||||
"List" : "Daftar",
|
||||
"Insert emoji" : "Sisipkan emoji",
|
||||
"Upload failed" : "Gagal mengunggah",
|
||||
"Close" : "Tutup",
|
||||
"Failed to upload file" : "Gagal mengunggah berkas",
|
||||
"No description available" : "Tidak ada deskripsi yang tersedia",
|
||||
"Sort order" : "Urutkan",
|
||||
"Cancel" : "Cancel",
|
||||
"Create" : "Buat",
|
||||
"Update" : "Perbarui",
|
||||
"Move" : "Pindah",
|
||||
"Page not found" : "Halaman tidak ditemukan",
|
||||
"Back" : "Kembali",
|
||||
"Edit" : "Sunting",
|
||||
"Delete" : "Hapus",
|
||||
"Unread" : "Belum dibaca",
|
||||
"Save" : "Simpan",
|
||||
"Current version" : "Versi saat ini",
|
||||
"Version {index}" : "Versi {index}",
|
||||
"Uncategorized" : "Tidak terkategori",
|
||||
"Views" : "Tampilan",
|
||||
"Title" : "Judul",
|
||||
"Draft saved" : "Draf tersimpan",
|
||||
"Unsaved changes" : "Perubahan belum disimpan",
|
||||
"Back to home" : "Kembali ke beranda",
|
||||
"Refresh" : "Muat ulang",
|
||||
"Retry" : "Ulangi",
|
||||
"Error" : "Galat",
|
||||
"Searching …" : "Mencari …",
|
||||
"No results found" : "Tidak ada hasil ditemukan",
|
||||
"Back to {category}" : "Kembali ke {category}",
|
||||
"by" : "oleh",
|
||||
"Subscribe" : "Berlangganan",
|
||||
"Subscribed" : "Berlangganan",
|
||||
"Bookmark" : "Penanda",
|
||||
"Edit title" : "Edit judul",
|
||||
"Move thread" : "Pindahkan utas",
|
||||
"Preferences" : "Preferensi",
|
||||
"Notifications" : "Notifikasi",
|
||||
"Files" : "File",
|
||||
"Signature" : "Tanda tangan",
|
||||
"Enable" : "Aktifkan",
|
||||
"Disable" : "Nonaktifkan",
|
||||
"Tag" : "Tag",
|
||||
"Description" : "Deskrisi",
|
||||
"Enabled" : "Diaktifkan",
|
||||
"Name" : "Nama",
|
||||
"Enter category name" : "Masukkan nama kategori",
|
||||
"New" : "Baru",
|
||||
"Move up" : "Pindah ke atas",
|
||||
"Move down" : "Pindah ke bawah",
|
||||
"Last 7 days" : "7 hari terakhir",
|
||||
"Appearance" : "Tampilan",
|
||||
"Access control" : "Kontol akses",
|
||||
"Settings saved" : "Setelan tersimpan",
|
||||
@@ -59,7 +89,10 @@ OC.L10N.register(
|
||||
"ID" : "ID",
|
||||
"Created" : "Dibuat",
|
||||
"Actions" : "Tindakan",
|
||||
"No description" : "Tanpa deskripsi",
|
||||
"No users found" : "Tidak ada pengguna yang ditemukan",
|
||||
"Status" : "Status",
|
||||
"Active" : "Aktif",
|
||||
"Deleted" : "Dihapus"
|
||||
},
|
||||
"nplurals=1; plural=0;");
|
||||
|
||||
33
l10n/id.json
33
l10n/id.json
@@ -1,9 +1,15 @@
|
||||
{ "translations": {
|
||||
"Admin" : "Admin",
|
||||
"Moderator" : "Moderator",
|
||||
"User" : "Pengguna",
|
||||
"Guest" : "Tamu",
|
||||
"General" : "Umum",
|
||||
"Support" : "Dukung",
|
||||
"Bold text" : "Teks tebal",
|
||||
"Underlined text" : "Teks bergaris bawah",
|
||||
"Forum" : "Forum",
|
||||
"User ID" : "ID Pengguna",
|
||||
"Role" : "Peran",
|
||||
"Loading …" : "Memuat …",
|
||||
"Search" : "Cari",
|
||||
"Home" : "Beranda",
|
||||
@@ -16,37 +22,61 @@
|
||||
"Hello world!" : "Halo dunia!",
|
||||
"Code" : "Kode",
|
||||
"Font size" : "Ukuran font",
|
||||
"Align left" : "Rata kiri",
|
||||
"Align center" : "Rata tengah",
|
||||
"Align right" : "Rata kanan",
|
||||
"List" : "Daftar",
|
||||
"Insert emoji" : "Sisipkan emoji",
|
||||
"Upload failed" : "Gagal mengunggah",
|
||||
"Close" : "Tutup",
|
||||
"Failed to upload file" : "Gagal mengunggah berkas",
|
||||
"No description available" : "Tidak ada deskripsi yang tersedia",
|
||||
"Sort order" : "Urutkan",
|
||||
"Cancel" : "Cancel",
|
||||
"Create" : "Buat",
|
||||
"Update" : "Perbarui",
|
||||
"Move" : "Pindah",
|
||||
"Page not found" : "Halaman tidak ditemukan",
|
||||
"Back" : "Kembali",
|
||||
"Edit" : "Sunting",
|
||||
"Delete" : "Hapus",
|
||||
"Unread" : "Belum dibaca",
|
||||
"Save" : "Simpan",
|
||||
"Current version" : "Versi saat ini",
|
||||
"Version {index}" : "Versi {index}",
|
||||
"Uncategorized" : "Tidak terkategori",
|
||||
"Views" : "Tampilan",
|
||||
"Title" : "Judul",
|
||||
"Draft saved" : "Draf tersimpan",
|
||||
"Unsaved changes" : "Perubahan belum disimpan",
|
||||
"Back to home" : "Kembali ke beranda",
|
||||
"Refresh" : "Muat ulang",
|
||||
"Retry" : "Ulangi",
|
||||
"Error" : "Galat",
|
||||
"Searching …" : "Mencari …",
|
||||
"No results found" : "Tidak ada hasil ditemukan",
|
||||
"Back to {category}" : "Kembali ke {category}",
|
||||
"by" : "oleh",
|
||||
"Subscribe" : "Berlangganan",
|
||||
"Subscribed" : "Berlangganan",
|
||||
"Bookmark" : "Penanda",
|
||||
"Edit title" : "Edit judul",
|
||||
"Move thread" : "Pindahkan utas",
|
||||
"Preferences" : "Preferensi",
|
||||
"Notifications" : "Notifikasi",
|
||||
"Files" : "File",
|
||||
"Signature" : "Tanda tangan",
|
||||
"Enable" : "Aktifkan",
|
||||
"Disable" : "Nonaktifkan",
|
||||
"Tag" : "Tag",
|
||||
"Description" : "Deskrisi",
|
||||
"Enabled" : "Diaktifkan",
|
||||
"Name" : "Nama",
|
||||
"Enter category name" : "Masukkan nama kategori",
|
||||
"New" : "Baru",
|
||||
"Move up" : "Pindah ke atas",
|
||||
"Move down" : "Pindah ke bawah",
|
||||
"Last 7 days" : "7 hari terakhir",
|
||||
"Appearance" : "Tampilan",
|
||||
"Access control" : "Kontol akses",
|
||||
"Settings saved" : "Setelan tersimpan",
|
||||
@@ -57,7 +87,10 @@
|
||||
"ID" : "ID",
|
||||
"Created" : "Dibuat",
|
||||
"Actions" : "Tindakan",
|
||||
"No description" : "Tanpa deskripsi",
|
||||
"No users found" : "Tidak ada pengguna yang ditemukan",
|
||||
"Status" : "Status",
|
||||
"Active" : "Aktif",
|
||||
"Deleted" : "Dihapus"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
}
|
||||
@@ -9,6 +9,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Testo sottolineato",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utente eliminato",
|
||||
"User ID" : "ID utente",
|
||||
"Role" : "Ruolo",
|
||||
"Loading …" : "Caricamento…",
|
||||
"Search" : "Cerca",
|
||||
"Home" : "Home",
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
"Underlined text" : "Testo sottolineato",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utente eliminato",
|
||||
"User ID" : "ID utente",
|
||||
"Role" : "Ruolo",
|
||||
"Loading …" : "Caricamento…",
|
||||
"Search" : "Cerca",
|
||||
"Home" : "Home",
|
||||
|
||||
@@ -9,6 +9,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "下線を引きたい文字",
|
||||
"Forum" : "フォーラム",
|
||||
"Deleted user" : "ユーザーを削除",
|
||||
"User ID" : "ユーザーID",
|
||||
"Role" : "ロール",
|
||||
"Loading …" : "読み込み中…",
|
||||
"Search" : "検索",
|
||||
"Home" : "ホーム",
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
"Underlined text" : "下線を引きたい文字",
|
||||
"Forum" : "フォーラム",
|
||||
"Deleted user" : "ユーザーを削除",
|
||||
"User ID" : "ユーザーID",
|
||||
"Role" : "ロール",
|
||||
"Loading …" : "読み込み中…",
|
||||
"Search" : "検索",
|
||||
"Home" : "ホーム",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"General" : "General",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Role" : "Role",
|
||||
"Loading …" : "Loading …",
|
||||
"Search" : "ძიება",
|
||||
"Home" : "მთავარი",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"General" : "General",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Deleted user",
|
||||
"Role" : "Role",
|
||||
"Loading …" : "Loading …",
|
||||
"Search" : "ძიება",
|
||||
"Home" : "მთავარი",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "밑줄 쳐진 텍스트",
|
||||
"Forum" : "포럼",
|
||||
"Deleted user" : "삭제된 사용자",
|
||||
"User ID" : "유저 ID",
|
||||
"Loading …" : "불러오는 중 ...",
|
||||
"Search" : "검색",
|
||||
"Home" : "집",
|
||||
@@ -19,6 +20,7 @@ OC.L10N.register(
|
||||
"Collapse" : "접기",
|
||||
"Hello world!" : "Hello world!",
|
||||
"Code" : "코드",
|
||||
"Quote" : "ㅇ",
|
||||
"Font size" : "글꼴 크기",
|
||||
"List" : "목록",
|
||||
"Insert emoji" : "이모지 삽입",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"Underlined text" : "밑줄 쳐진 텍스트",
|
||||
"Forum" : "포럼",
|
||||
"Deleted user" : "삭제된 사용자",
|
||||
"User ID" : "유저 ID",
|
||||
"Loading …" : "불러오는 중 ...",
|
||||
"Search" : "검색",
|
||||
"Home" : "집",
|
||||
@@ -17,6 +18,7 @@
|
||||
"Collapse" : "접기",
|
||||
"Hello world!" : "Hello world!",
|
||||
"Code" : "코드",
|
||||
"Quote" : "ㅇ",
|
||||
"Font size" : "글꼴 크기",
|
||||
"List" : "목록",
|
||||
"Insert emoji" : "이모지 삽입",
|
||||
|
||||
@@ -10,6 +10,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "ຂໍ້ຄວາມທີ່ຂີດກ້ອງ",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Deleted user",
|
||||
"User ID" : "ໄອດີຜູ້ໃຊ້",
|
||||
"Role" : "ບົດບາດ",
|
||||
"Loading …" : "ກຳລັງໂຫຼດ...",
|
||||
"Search" : "ຄົ້ນຫາ",
|
||||
"Home" : "ໜ້າຫຼັກ",
|
||||
|
||||
@@ -8,6 +8,8 @@
|
||||
"Underlined text" : "ຂໍ້ຄວາມທີ່ຂີດກ້ອງ",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Deleted user",
|
||||
"User ID" : "ໄອດີຜູ້ໃຊ້",
|
||||
"Role" : "ບົດບາດ",
|
||||
"Loading …" : "ກຳລັງໂຫຼດ...",
|
||||
"Search" : "ຄົ້ນຫາ",
|
||||
"Home" : "ໜ້າຫຼັກ",
|
||||
|
||||
@@ -9,6 +9,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Pabrauktas tekstas",
|
||||
"Forum" : "Forumas",
|
||||
"Deleted user" : "Ištrintas naudotojas",
|
||||
"User ID" : "Naudotojo ID",
|
||||
"Role" : "Vaidmuo",
|
||||
"Loading …" : "Įkeliama…",
|
||||
"Search" : "Paieška",
|
||||
"Home" : "Namai",
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
"Underlined text" : "Pabrauktas tekstas",
|
||||
"Forum" : "Forumas",
|
||||
"Deleted user" : "Ištrintas naudotojas",
|
||||
"User ID" : "Naudotojo ID",
|
||||
"Role" : "Vaidmuo",
|
||||
"Loading …" : "Įkeliama…",
|
||||
"Search" : "Paieška",
|
||||
"Home" : "Namai",
|
||||
|
||||
@@ -17,6 +17,7 @@ OC.L10N.register(
|
||||
"Ask questions about the forum, provide feedback or report issues." : "Uzdod jautājumus par forumu, sniedz atgriezenisko saiti vai ziņo par nepilnībām!",
|
||||
"Forum" : "Forums",
|
||||
"Welcome to the forum!" : "Laipni lūdzam forumā!",
|
||||
"Role" : "Loma",
|
||||
"Loading …" : "Ielādē…",
|
||||
"Search" : "Meklēt",
|
||||
"Home" : "Sākums",
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
"Ask questions about the forum, provide feedback or report issues." : "Uzdod jautājumus par forumu, sniedz atgriezenisko saiti vai ziņo par nepilnībām!",
|
||||
"Forum" : "Forums",
|
||||
"Welcome to the forum!" : "Laipni lūdzam forumā!",
|
||||
"Role" : "Loma",
|
||||
"Loading …" : "Ielādē…",
|
||||
"Search" : "Meklēt",
|
||||
"Home" : "Sākums",
|
||||
|
||||
@@ -9,6 +9,7 @@ OC.L10N.register(
|
||||
"Underlined text" : "Подвлечен текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Избришан корисник",
|
||||
"Role" : "Улога",
|
||||
"Loading …" : "Се вчитува…",
|
||||
"Search" : "Барај",
|
||||
"Home" : "Дома",
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
"Underlined text" : "Подвлечен текст",
|
||||
"Forum" : "Форум",
|
||||
"Deleted user" : "Избришан корисник",
|
||||
"Role" : "Улога",
|
||||
"Loading …" : "Се вчитува…",
|
||||
"Search" : "Барај",
|
||||
"Home" : "Дома",
|
||||
|
||||
@@ -10,6 +10,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Understreket tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Slettet bruker",
|
||||
"User ID" : "Bruker-ID",
|
||||
"Role" : "Rolle",
|
||||
"Loading …" : "Laster ...",
|
||||
"Search" : "Søk",
|
||||
"Home" : "Hjem",
|
||||
|
||||
@@ -8,6 +8,8 @@
|
||||
"Underlined text" : "Understreket tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Slettet bruker",
|
||||
"User ID" : "Bruker-ID",
|
||||
"Role" : "Rolle",
|
||||
"Loading …" : "Laster ...",
|
||||
"Search" : "Søk",
|
||||
"Home" : "Hjem",
|
||||
|
||||
@@ -10,6 +10,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Onderstreepte tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Verwijderen gebruiker",
|
||||
"User ID" : "Gebruiker-ID",
|
||||
"Role" : "Rol",
|
||||
"Loading …" : "Laden …",
|
||||
"Search" : "Zoeken",
|
||||
"Home" : "Startpagina",
|
||||
|
||||
@@ -8,6 +8,8 @@
|
||||
"Underlined text" : "Onderstreepte tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Verwijderen gebruiker",
|
||||
"User ID" : "Gebruiker-ID",
|
||||
"Role" : "Rol",
|
||||
"Loading …" : "Laden …",
|
||||
"Search" : "Zoeken",
|
||||
"Home" : "Startpagina",
|
||||
|
||||
@@ -7,6 +7,7 @@ OC.L10N.register(
|
||||
"General" : "Generals",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilizaire suprimit",
|
||||
"Role" : "Ròtle",
|
||||
"Loading …" : "Cargament…",
|
||||
"Search" : "Recercar",
|
||||
"Bookmarks" : "Marcapaginas",
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
"General" : "Generals",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilizaire suprimit",
|
||||
"Role" : "Ròtle",
|
||||
"Loading …" : "Cargament…",
|
||||
"Search" : "Recercar",
|
||||
"Bookmarks" : "Marcapaginas",
|
||||
|
||||
@@ -10,6 +10,8 @@ OC.L10N.register(
|
||||
"Underlined text" : "Podkreślony tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Usunięty użytkownik",
|
||||
"User ID" : "ID użytkownika",
|
||||
"Role" : "Rola społeczna",
|
||||
"Loading …" : "Wczytywanie…",
|
||||
"Search" : "Szukaj",
|
||||
"Home" : "Strona główna",
|
||||
|
||||
@@ -8,6 +8,8 @@
|
||||
"Underlined text" : "Podkreślony tekst",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Usunięty użytkownik",
|
||||
"User ID" : "ID użytkownika",
|
||||
"Role" : "Rola społeczna",
|
||||
"Loading …" : "Wczytywanie…",
|
||||
"Search" : "Szukaj",
|
||||
"Home" : "Strona główna",
|
||||
|
||||
@@ -20,7 +20,6 @@ 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 Nextcloud. Aqui você pode discutir tópicos, compartilhar ideias e colaborar com outros usuários.",
|
||||
"Features:" : "Características:",
|
||||
@@ -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}",
|
||||
@@ -43,6 +43,18 @@ OC.L10N.register(
|
||||
"Deleted user" : "Usuário excluído",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Um fórum comunitário integrado diretamente na sua instância Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Crie discussões, compartilhe ideias e colabore com sua comunidade diretamente no Nextcloud.\n\n**⚠️ Aviso sobre desenvolvimento inicial:**\nEste aplicativo está em fase inicial de desenvolvimento. Embora funcional, você pode encontrar bugs ou recursos incompletos. Relate quaisquer problemas no GitHub e considere fazer backups regulares dos seus dados.\n\n**Principais recursos:**\n- **Discussões baseadas em tópicos** - Crie e responda a tópicos de discussão organizados\n- **Organização por categorias** - Estruture seu fórum com categorias e cabeçalhos personalizáveis\n- **Formatação de texto rico** - Use BBCode para formatar postagens com negrito, itálico, links, imagens, blocos de código e muito mais\n- **Anexos de arquivos** - Anexe arquivos do seu armazenamento Nextcloud às postagens\n- **Reações às postagens** - Reaja às postagens com reações em emoji\n- **Rastreamento de lido/não lido** - Acompanhe quais tópicos você já leu\n- **Pesquisa** - Encontre discussões rapidamente com a pesquisa integrada\n- **Perfis de usuário** - Veja o histórico e as estatísticas das postagens do usuário\n- **Permissões baseadas em funções** - Controle o acesso e a moderação com funções flexíveis\n- **Acesso de convidados**: acesso público opcional para usuários não autenticados com permissões configuráveis\n- **Ferramentas de administração** - Gerencie categorias, funções, BBCodes e configurações do fórum\n- **Ferramentas de moderação** - Fixe, bloqueie e gerencie tópicos e publicações\n\n**Perfeito para:**\n- Discussões e colaboração em equipe\n- Fóruns da comunidade\n- Canais de suporte\n- Bases de conhecimento\n- Discussões sobre projetos\n- Comunicação interna\n\nO fórum se integra perfeitamente à sua instância do Nextcloud, usando seus usuários e grupos existentes para autenticação e controle de acesso.",
|
||||
"Repair Seeds" : "Restaurar padrões",
|
||||
"Run the repair seeds command to restore default forum data (roles, categories, permissions, BBCodes). This is safe to run multiple times as it will skip data that already exists." : "Execute o comando restaurar padrões para restaurar os dados padrão do fórum (funções, categorias, permissões, BBCodes). É seguro executar esse comando várias vezes, pois ele ignorará os dados que já existem.",
|
||||
"Run Repair Seeds" : "Executar restaurar padrões",
|
||||
"User Roles" : "Funções de usuário",
|
||||
"Assign forum roles to users. This allows you to grant administrative or moderator privileges to specific users." : "Atribua funções do fórum aos usuários. Isso permite que você conceda privilégios administrativos ou de moderador a usuários específicos.",
|
||||
"User ID" : "ID do Usuário",
|
||||
"Enter user ID" : "Inserir ID do usuário",
|
||||
"Role" : "Função",
|
||||
"Select a role" : "Selecionar função",
|
||||
"Assign Role" : "Assinar função",
|
||||
"Failed to run repair seeds" : "Falha ao executar restaurar padrões",
|
||||
"Failed to assign role" : "Falha ao assinar a função",
|
||||
"Loading …" : "Carregando …",
|
||||
"Search" : "Pesquisar",
|
||||
"Home" : "Início",
|
||||
@@ -282,6 +294,8 @@ OC.L10N.register(
|
||||
"Configure how you receive notifications" : "Configure como você recebe notificações",
|
||||
"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-me 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" : "Configurar as definições de envio de arquivos",
|
||||
"Upload directory" : "Diretório de upload",
|
||||
|
||||
@@ -18,7 +18,6 @@
|
||||
"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 Nextcloud. Aqui você pode discutir tópicos, compartilhar ideias e colaborar com outros usuários.",
|
||||
"Features:" : "Características:",
|
||||
@@ -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}",
|
||||
@@ -41,6 +41,18 @@
|
||||
"Deleted user" : "Usuário excluído",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Um fórum comunitário integrado diretamente na sua instância Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Crie discussões, compartilhe ideias e colabore com sua comunidade diretamente no Nextcloud.\n\n**⚠️ Aviso sobre desenvolvimento inicial:**\nEste aplicativo está em fase inicial de desenvolvimento. Embora funcional, você pode encontrar bugs ou recursos incompletos. Relate quaisquer problemas no GitHub e considere fazer backups regulares dos seus dados.\n\n**Principais recursos:**\n- **Discussões baseadas em tópicos** - Crie e responda a tópicos de discussão organizados\n- **Organização por categorias** - Estruture seu fórum com categorias e cabeçalhos personalizáveis\n- **Formatação de texto rico** - Use BBCode para formatar postagens com negrito, itálico, links, imagens, blocos de código e muito mais\n- **Anexos de arquivos** - Anexe arquivos do seu armazenamento Nextcloud às postagens\n- **Reações às postagens** - Reaja às postagens com reações em emoji\n- **Rastreamento de lido/não lido** - Acompanhe quais tópicos você já leu\n- **Pesquisa** - Encontre discussões rapidamente com a pesquisa integrada\n- **Perfis de usuário** - Veja o histórico e as estatísticas das postagens do usuário\n- **Permissões baseadas em funções** - Controle o acesso e a moderação com funções flexíveis\n- **Acesso de convidados**: acesso público opcional para usuários não autenticados com permissões configuráveis\n- **Ferramentas de administração** - Gerencie categorias, funções, BBCodes e configurações do fórum\n- **Ferramentas de moderação** - Fixe, bloqueie e gerencie tópicos e publicações\n\n**Perfeito para:**\n- Discussões e colaboração em equipe\n- Fóruns da comunidade\n- Canais de suporte\n- Bases de conhecimento\n- Discussões sobre projetos\n- Comunicação interna\n\nO fórum se integra perfeitamente à sua instância do Nextcloud, usando seus usuários e grupos existentes para autenticação e controle de acesso.",
|
||||
"Repair Seeds" : "Restaurar padrões",
|
||||
"Run the repair seeds command to restore default forum data (roles, categories, permissions, BBCodes). This is safe to run multiple times as it will skip data that already exists." : "Execute o comando restaurar padrões para restaurar os dados padrão do fórum (funções, categorias, permissões, BBCodes). É seguro executar esse comando várias vezes, pois ele ignorará os dados que já existem.",
|
||||
"Run Repair Seeds" : "Executar restaurar padrões",
|
||||
"User Roles" : "Funções de usuário",
|
||||
"Assign forum roles to users. This allows you to grant administrative or moderator privileges to specific users." : "Atribua funções do fórum aos usuários. Isso permite que você conceda privilégios administrativos ou de moderador a usuários específicos.",
|
||||
"User ID" : "ID do Usuário",
|
||||
"Enter user ID" : "Inserir ID do usuário",
|
||||
"Role" : "Função",
|
||||
"Select a role" : "Selecionar função",
|
||||
"Assign Role" : "Assinar função",
|
||||
"Failed to run repair seeds" : "Falha ao executar restaurar padrões",
|
||||
"Failed to assign role" : "Falha ao assinar a função",
|
||||
"Loading …" : "Carregando …",
|
||||
"Search" : "Pesquisar",
|
||||
"Home" : "Início",
|
||||
@@ -280,6 +292,8 @@
|
||||
"Configure how you receive notifications" : "Configure como você recebe notificações",
|
||||
"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-me 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" : "Configurar as definições de envio de arquivos",
|
||||
"Upload directory" : "Diretório de upload",
|
||||
|
||||
@@ -20,12 +20,13 @@ 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.",
|
||||
"Role" : "Função",
|
||||
"Search" : "Pesquisa sobre",
|
||||
"Home" : "Início",
|
||||
"Bookmarks" : "Marcadores",
|
||||
|
||||
@@ -18,12 +18,13 @@
|
||||
"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.",
|
||||
"Role" : "Função",
|
||||
"Search" : "Pesquisa sobre",
|
||||
"Home" : "Início",
|
||||
"Bookmarks" : "Marcadores",
|
||||
|
||||
@@ -8,6 +8,7 @@ OC.L10N.register(
|
||||
"General" : "General",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilizator șters",
|
||||
"User ID" : "ID-ul utilizatorului",
|
||||
"Search" : "Căutare",
|
||||
"Dashboard" : "Panou",
|
||||
"Users" : "Utilizatori",
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
"General" : "General",
|
||||
"Forum" : "Forum",
|
||||
"Deleted user" : "Utilizator șters",
|
||||
"User ID" : "ID-ul utilizatorului",
|
||||
"Search" : "Căutare",
|
||||
"Dashboard" : "Panou",
|
||||
"Users" : "Utilizatori",
|
||||
|
||||
@@ -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,12 +35,15 @@ 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!" : "Добро пожаловать на форум!",
|
||||
"Deleted user" : "Удалённый пользователь",
|
||||
"A community-driven forum built right into your Nextcloud instance" : "Форум сообщества, встроенный прямо в ваш экземпляр Nextcloud",
|
||||
"Create discussions, share ideas and collaborate with your community directly in Nextcloud.\n\n**⚠️ Early Development Notice:**\nThis app is in early stages of development. While functional, you may encounter bugs or incomplete features. Please report any issues on GitHub and consider backing up your data regularly.\n\n**Key features:**\n- **Thread-based Discussions** - Create and reply to organized discussion threads\n- **Category Organization** - Structure your forum with customizable categories and headers\n- **Rich Text Formatting** - Use BBCode for formatting posts with bold, italic, links, images, code blocks and more\n- **File Attachments** - Attach files from your Nextcloud storage to posts\n- **Post Reactions** - React to posts with emoji reactions\n- **Read/Unread Tracking** - Keep track of which threads you've read\n- **Search** - Find discussions quickly with built-in search\n- **User Profiles** - View user post history and statistics\n- **Role-Based Permissions** - Control access and moderation with flexible roles\n- **Guest Access**: Optional public access for unauthenticated users with configurable permissions\n- **Admin Tools** - Manage categories, roles, BBCodes and forum settings\n- **Moderation Tools** - Pin, lock and manage threads and posts\n\n**Perfect for:**\n- Team discussions and collaboration\n- Community forums\n- Support channels\n- Knowledge bases\n- Project discussions\n- Internal communication\n\nThe forum integrates seamlessly with your Nextcloud instance, using your existing users and groups for authentication and access control." : "Создавайте обсуждения, делитесь идеями и сотрудничайте с вашим сообществом прямо в Nextcloud.\n\n**⚠️ Предварительное уведомление о разработке:**\nЭто приложение находится на ранней стадии разработки. Несмотря на свою функциональность, вы можете столкнуться с ошибками или неполными функциями. Пожалуйста, сообщайте о любых проблемах на GitHub и регулярно создавайте резервные копии своих данных.\n\n**Ключевые функции:**\n- **Обсуждения по темам** - Создание и ответ в организованных темах обсуждений\n- **Организация по категориям** - Структурирование форума с помощью настраиваемых категорий и заголовков\n- **Форматирование текста** - Использование BBCode для выделения сообщений жирным шрифтом, курсивом, ссылками, изображениями, блоками кода и другими элементами\n- **Прикрепление файлов** - Прикрепление файлов из вашего хранилища Nextcloud к сообщениям\n- **Реакции на сообщения** - Реагирование на сообщения с помощью эмодзи\n- **Отслеживание прочитанных/непрочитанных сообщений** - Отслеживание прочитанных сообщений\n- **Поиск** - Быстрый поиск обсуждений с помощью встроенного поиска\n- **Профили пользователей** - Просмотр истории и статистики сообщений пользователей\n- **Разрешения на основе ролей** - Управление доступом и модерирование с помощью гибких ролей\n- **Гостевой доступ**: Дополнительный публичный доступ для неавторизованных пользователей с настраиваемыми правами\n- **Инструменты администратора** - Управление категориями, ролями, BBCodes и настройками форума\n- **Инструменты модерации** - Закрепление, блокировка и управление темами и сообщениями\n\n**Идеально подходит для:**\n- Обсуждений в команде и совместной работы\n- Форумов сообщества\n- Каналов поддержки\n- Баз знаний\n- Обсуждений проектов\n- Внутреннего общения\n\nФорум легко интегрируется с вашим экземпляром Nextcloud, используя существующих пользователей и группы для аутентификации и управления доступом.",
|
||||
"User ID" : "ID пользователя",
|
||||
"Role" : "Роль",
|
||||
"Loading …" : "Загрузка…",
|
||||
"Search" : "Поиск",
|
||||
"Home" : "Домашняя страница",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user