Compare commits

..

1 Commits

Author SHA1 Message Date
Julius Härtl
3c9d2e09a7 chore: Use postgres for cypress
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2024-05-09 09:55:04 +02:00
422 changed files with 23961 additions and 9551 deletions

View File

@@ -1,5 +1,5 @@
{ {
"image": "ghcr.io/juliushaertl/nextcloud-dev-php81:latest", "image": "ghcr.io/juliushaertl/nextcloud-dev-php80:latest",
"forwardPorts": [80], "forwardPorts": [80],
"containerEnv": { "containerEnv": {
"NEXTCLOUD_AUTOINSTALL_APPS": "deck", "NEXTCLOUD_AUTOINSTALL_APPS": "deck",

2
.github/CODEOWNERS vendored
View File

@@ -1,2 +0,0 @@
# App maintainers
* @luka-nextcloud @grnd-alt @elzody

View File

@@ -13,23 +13,6 @@ updates:
- juliushaertl - juliushaertl
- luka-nextcloud - luka-nextcloud
- package-ecosystem: npm
target-branch: stable30
versioning-strategy: lockfile-only
directory: "/"
schedule:
interval: weekly
day: saturday
time: "03:00"
timezone: Europe/Paris
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
open-pull-requests-limit: 30
labels:
- 3. to review
- dependencies
- package-ecosystem: npm - package-ecosystem: npm
target-branch: stable29 target-branch: stable29
versioning-strategy: lockfile-only versioning-strategy: lockfile-only
@@ -64,6 +47,23 @@ updates:
- 3. to review - 3. to review
- dependencies - dependencies
- package-ecosystem: npm
target-branch: stable27
versioning-strategy: lockfile-only
directory: "/"
schedule:
interval: weekly
day: saturday
time: "03:00"
timezone: Europe/Paris
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
open-pull-requests-limit: 30
labels:
- 3. to review
- dependencies
- package-ecosystem: composer - package-ecosystem: composer
directory: "/" directory: "/"
schedule: schedule:

View File

@@ -16,15 +16,15 @@ jobs:
node-version: [16.x] node-version: [16.x]
steps: steps:
- uses: actions/checkout@v4.2.2 - uses: actions/checkout@v4.1.3
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.1.0 uses: actions/setup-node@v4.0.2
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Set up npm7 - name: Set up npm7
run: npm i -g npm@7 run: npm i -g npm@7
- name: Setup PHP - name: Setup PHP
uses: shivammathur/setup-php@2.31.1 uses: shivammathur/setup-php@2.30.4
with: with:
php-version: '7.4' php-version: '7.4'
tools: composer tools: composer

View File

@@ -32,7 +32,7 @@ jobs:
echo "APP_VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV echo "APP_VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Checkout - name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
with: with:
path: ${{ env.APP_NAME }} path: ${{ env.APP_NAME }}
@@ -56,14 +56,14 @@ jobs:
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} - name: Set up node ${{ steps.versions.outputs.nodeVersion }}
# Skip if no package.json # Skip if no package.json
if: ${{ steps.versions.outputs.nodeVersion }} if: ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v3
with: with:
node-version: ${{ steps.versions.outputs.nodeVersion }} node-version: ${{ steps.versions.outputs.nodeVersion }}
- name: Set up npm ${{ steps.versions.outputs.npmVersion }} - name: Set up npm ${{ steps.versions.outputs.npmVersion }}
# Skip if no package.json # Skip if no package.json
if: ${{ steps.versions.outputs.npmVersion }} if: ${{ steps.versions.outputs.npmVersion }}
run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}' run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
- name: Get php version - name: Get php version
id: php-versions id: php-versions
@@ -72,7 +72,7 @@ jobs:
filename: ${{ env.APP_NAME }}/appinfo/info.xml filename: ${{ env.APP_NAME }}/appinfo/info.xml
- name: Set up php ${{ steps.php-versions.outputs.php-min }} - name: Set up php ${{ steps.php-versions.outputs.php-min }}
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 uses: shivammathur/setup-php@868f02c3ff1a410930ea971284c9ea175e986284 # v2
with: with:
php-version: ${{ steps.php-versions.outputs.php-min }} php-version: ${{ steps.php-versions.outputs.php-min }}
coverage: none coverage: none
@@ -95,7 +95,7 @@ jobs:
# Skip if no package.json # Skip if no package.json
if: ${{ steps.versions.outputs.nodeVersion }} if: ${{ steps.versions.outputs.nodeVersion }}
env: env:
CYPRESS_INSTALL_BINARY: 0 NODE_ENV: production
run: | run: |
cd ${{ env.APP_NAME }} cd ${{ env.APP_NAME }}
npm ci npm ci
@@ -129,12 +129,12 @@ jobs:
continue-on-error: true continue-on-error: true
id: server-checkout id: server-checkout
run: | run: |
NCVERSION='${{ fromJSON(steps.appinfo.outputs.result).nextcloud.min-version }}' NCVERSION=${{ fromJSON(steps.appinfo.outputs.result).nextcloud.min-version }}
wget --quiet https://download.nextcloud.com/server/releases/latest-$NCVERSION.zip wget --quiet https://download.nextcloud.com/server/releases/latest-$NCVERSION.zip
unzip latest-$NCVERSION.zip unzip latest-$NCVERSION.zip
- name: Checkout server master fallback - name: Checkout server master fallback
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
if: ${{ steps.server-checkout.outcome != 'success' }} if: ${{ steps.server-checkout.outcome != 'success' }}
with: with:
submodules: true submodules: true
@@ -148,7 +148,7 @@ jobs:
tar -xvf ${{ env.APP_NAME }}.tar.gz tar -xvf ${{ env.APP_NAME }}.tar.gz
cd ../../../ cd ../../../
# Setting up keys # Setting up keys
echo '${{ secrets.APP_PRIVATE_KEY }}' > ${{ env.APP_NAME }}.key echo "${{ secrets.APP_PRIVATE_KEY }}" > ${{ env.APP_NAME }}.key
wget --quiet "https://github.com/nextcloud/app-certificate-requests/raw/master/${{ env.APP_NAME }}/${{ env.APP_NAME }}.crt" wget --quiet "https://github.com/nextcloud/app-certificate-requests/raw/master/${{ env.APP_NAME }}/${{ env.APP_NAME }}.crt"
# Signing # Signing
php nextcloud/occ integrity:sign-app --privateKey=../${{ env.APP_NAME }}.key --certificate=../${{ env.APP_NAME }}.crt --path=../${{ env.APP_NAME }}/build/artifacts/${{ env.APP_NAME }} php nextcloud/occ integrity:sign-app --privateKey=../${{ env.APP_NAME }}.key --certificate=../${{ env.APP_NAME }}.crt --path=../${{ env.APP_NAME }}/build/artifacts/${{ env.APP_NAME }}

51
.github/workflows/command-rebase.yml vendored Normal file
View File

@@ -0,0 +1,51 @@
# 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: Rebase command
on:
issue_comment:
types: created
permissions:
contents: read
jobs:
rebase:
runs-on: ubuntu-latest
permissions:
contents: none
# On pull requests and if the comment starts with `/rebase`
if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase')
steps:
- name: Add reaction on start
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
with:
token: ${{ secrets.COMMAND_BOT_PAT }}
repository: ${{ github.event.repository.full_name }}
comment-id: ${{ github.event.comment.id }}
reaction-type: "+1"
- name: Checkout the latest code
uses: actions/checkout@v4.1.3 # v3.5.2
with:
fetch-depth: 0
token: ${{ secrets.COMMAND_BOT_PAT }}
- name: Automatic Rebase
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8
env:
GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
- name: Add reaction on failure
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
if: failure()
with:
token: ${{ secrets.COMMAND_BOT_PAT }}
repository: ${{ github.event.repository.full_name }}
comment-id: ${{ github.event.comment.id }}
reaction-type: "-1"

View File

@@ -14,20 +14,16 @@ env:
jobs: jobs:
cypress: cypress:
runs-on: 'ubuntu-latest' runs-on: ['ubuntu-latest', 'self-hosted']
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
node-version: [20.x] node-version: [20.x]
# containers: [1, 2, 3] # containers: [1, 2, 3]
php-versions: [ '8.2' ] php-versions: [ '8.1' ]
server-versions: [ 'master' ] server-versions: [ 'master' ]
env:
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, zip, gd, apcu
key: cache-v1
services: services:
postgres: postgres:
image: ghcr.io/nextcloud/continuous-integration-postgres-14:latest image: ghcr.io/nextcloud/continuous-integration-postgres-14:latest
@@ -41,7 +37,7 @@ jobs:
steps: steps:
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.1.0 uses: actions/setup-node@v4.0.2
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
@@ -51,7 +47,7 @@ jobs:
echo "text_app_ref=$text_app_ref" >> $GITHUB_ENV echo "text_app_ref=$text_app_ref" >> $GITHUB_ENV
- name: Checkout server - name: Checkout server
uses: actions/checkout@v4.2.2 uses: actions/checkout@v4.1.3
with: with:
repository: nextcloud/server repository: nextcloud/server
ref: ${{ matrix.server-versions }} ref: ${{ matrix.server-versions }}
@@ -64,50 +60,30 @@ jobs:
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Checkout ${{ env.APP_NAME }} - name: Checkout ${{ env.APP_NAME }}
uses: actions/checkout@v4.2.2 uses: actions/checkout@v4.1.3
with: with:
path: apps/${{ env.APP_NAME }} path: apps/${{ env.APP_NAME }}
- name: Checkout text - name: Checkout text
uses: actions/checkout@v4.2.2 uses: actions/checkout@v4.1.3
with: with:
repository: nextcloud/text repository: nextcloud/text
ref: ${{ env.text_app_ref }} ref: ${{ env.text_app_ref }}
path: apps/text path: apps/text
- name: Setup cache environment
id: extcache
uses: shivammathur/cache-extensions@v1
with:
php-version: ${{ matrix.php-versions }}
extensions: ${{ env.extensions }}
key: ${{ env.key }}
- name: Cache extensions
uses: actions/cache@v4
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
restore-keys: ${{ steps.extcache.outputs.key }}
- name: Set up php ${{ matrix.php-versions }} - name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@2.31.1 uses: shivammathur/setup-php@2.30.4
with: with:
php-version: ${{ matrix.php-versions }} php-version: ${{ matrix.php-versions }}
extensions: ${{ env.extensions }} extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, zip, gd, apcu
ini-values: ini-values:
apc.enable_cli=on apc.enable_cli=on
coverage: none coverage: none
- name: Install composer dependencies
working-directory: apps/${{ env.APP_NAME }}
run: |
composer install --no-dev
- name: Set up Nextcloud - name: Set up Nextcloud
env: env:
DB_PORT: 4444 DB_PORT: 4444
PHP_CLI_SERVER_WORKERS: 20 PHP_CLI_SERVER_WORKERS: 10
run: | run: |
mkdir data mkdir data
echo '<?php $CONFIG=["memcache.local"=>"\OC\Memcache\APCu","hashing_default_password"=>true];' > config/config.php echo '<?php $CONFIG=["memcache.local"=>"\OC\Memcache\APCu","hashing_default_password"=>true];' > config/config.php
@@ -120,21 +96,23 @@ jobs:
php occ user:add --password-from-env user2 php occ user:add --password-from-env user2
php occ app:enable deck php occ app:enable deck
php occ app:list php occ app:list
cd apps/deck
composer install --no-dev
npm ci
npm run build
curl -v http://localhost:8081/index.php/login curl -v http://localhost:8081/index.php/login
- name: Cypress run - name: Run E2E cypress tests
uses: cypress-io/github-action@v6 run: |
with: cd 'apps/${{ env.APP_NAME }}'
build: npm run dev npx wait-on $CYPRESS_baseUrl
record: false npx cypress run --record false --config defaultCommandTimeout=10000,video=false
parallel: false
browser: chrome
wait-on: '${{ env.CYPRESS_baseUrl }}'
working-directory: 'apps/${{ env.APP_NAME }}'
config: defaultCommandTimeout=10000,video=false
env: env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} # https://github.com/cypress-io/github-action/issues/124
npm_package_name: ${{ env.APP_NAME }} COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }}
COMMIT_INFO_SHA: ${{ github.event.pull_request.head.sha }}
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
npm_package_name: ${{ env.APP_NAME }}
- name: Upload test failure screenshots - name: Upload test failure screenshots
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4

View File

@@ -2,9 +2,6 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
#
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: MIT
name: Dependabot name: Dependabot
@@ -24,20 +21,14 @@ concurrency:
jobs: jobs:
auto-approve-merge: auto-approve-merge:
if: github.actor == 'dependabot[bot]' || github.actor == 'renovate[bot]' if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest-low runs-on: ubuntu-latest
permissions: permissions:
# for hmarr/auto-approve-action to approve PRs # for hmarr/auto-approve-action to approve PRs
pull-requests: write pull-requests: write
steps: steps:
- name: Disabled on forks # Github actions bot approve
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
run: |
echo 'Can not approve PRs from forks'
exit 1
# GitHub actions bot approve
- uses: hmarr/auto-approve-action@b40d6c9ed2fa10c9a2749eca7eb004418a705501 # v2 - uses: hmarr/auto-approve-action@b40d6c9ed2fa10c9a2749eca7eb004418a705501 # v2
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -2,9 +2,6 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
#
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: MIT
name: Block fixup and squash commits name: Block fixup and squash commits
@@ -27,7 +24,7 @@ jobs:
pull-requests: write pull-requests: write
name: Block fixup and squash commits name: Block fixup and squash commits
runs-on: ubuntu-latest-low runs-on: ubuntu-latest
steps: steps:
- name: Run check - name: Run check

View File

@@ -52,7 +52,7 @@ jobs:
steps: steps:
- name: Checkout server - name: Checkout server
uses: actions/checkout@v4.2.2 uses: actions/checkout@v4.1.3
with: with:
repository: nextcloud/server repository: nextcloud/server
ref: ${{ matrix.server-versions }} ref: ${{ matrix.server-versions }}
@@ -66,22 +66,22 @@ jobs:
cd build/integration && composer require --dev phpunit/phpunit:~9 cd build/integration && composer require --dev phpunit/phpunit:~9
- name: Checkout app - name: Checkout app
uses: actions/checkout@v4.2.2 uses: actions/checkout@v4.1.3
with: with:
path: apps/${{ env.APP_NAME }} path: apps/${{ env.APP_NAME }}
- name: Checkout activity - name: Checkout activity
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
with: with:
repository: nextcloud/activity repository: nextcloud/activity
ref: ${{ matrix.server-versions }} ref: ${{ matrix.server-versions }}
path: apps/activity path: apps/activity
- name: Set up php ${{ matrix.php-versions }} - name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@2.31.1 uses: shivammathur/setup-php@2.30.4
with: with:
php-version: ${{ matrix.php-versions }} php-version: ${{ matrix.php-versions }}
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, mysql, pdo_mysql, pgsql, pdo_pgsql, apcu, gd extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, mysql, pdo_mysql, pgsql, pdo_pgsql, apcu
ini-values: ini-values:
apc.enable_cli=on apc.enable_cli=on
coverage: none coverage: none
@@ -112,11 +112,6 @@ jobs:
working-directory: apps/${{ env.APP_NAME }}/tests/integration working-directory: apps/${{ env.APP_NAME }}/tests/integration
run: ./run.sh run: ./run.sh
- name: Print query log
run: |
cat query.log | wc -l
cat query.log
- name: Query count - name: Query count
if: ${{ matrix.databases == 'mysql' }} if: ${{ matrix.databases == 'mysql' }}
uses: actions/github-script@v7 uses: actions/github-script@v7

View File

@@ -3,8 +3,8 @@
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
# #
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors # Use lint-eslint together with lint-eslint-when-unrelated to make eslint a required check for GitHub actions
# SPDX-License-Identifier: MIT # 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: Lint eslint name: Lint eslint
@@ -19,10 +19,7 @@ concurrency:
jobs: jobs:
changes: changes:
runs-on: ubuntu-latest-low runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
outputs: outputs:
src: ${{ steps.changes.outputs.src}} src: ${{ steps.changes.outputs.src}}
@@ -56,22 +53,22 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Read package.json node and npm engines version - name: Read package.json node and npm engines version
uses: skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3 uses: skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3
id: versions id: versions
with: with:
fallbackNode: '^20' fallbackNode: '^20'
fallbackNpm: '^10' fallbackNpm: '^9'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} - name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v3
with: with:
node-version: ${{ steps.versions.outputs.nodeVersion }} node-version: ${{ steps.versions.outputs.nodeVersion }}
- name: Set up npm ${{ steps.versions.outputs.npmVersion }} - name: Set up npm ${{ steps.versions.outputs.npmVersion }}
run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}' run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
- name: Install dependencies - name: Install dependencies
env: env:
@@ -85,7 +82,7 @@ jobs:
summary: summary:
permissions: permissions:
contents: none contents: none
runs-on: ubuntu-latest-low runs-on: ubuntu-latest
needs: [changes, lint] needs: [changes, lint]
if: always() if: always()

View File

@@ -2,9 +2,6 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
#
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: MIT
name: Lint php-cs name: Lint php-cs
@@ -25,17 +22,12 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Get php version - name: Set up php8.2
id: versions uses: shivammathur/setup-php@868f02c3ff1a410930ea971284c9ea175e986284 # v2
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
- name: Set up php${{ steps.versions.outputs.php-available }}
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
with: with:
php-version: ${{ steps.versions.outputs.php-available }} php-version: 8.2
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 coverage: none
ini-file: development ini-file: development
env: env:

View File

@@ -2,9 +2,6 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
#
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: MIT
name: Lint php name: Lint php
@@ -18,35 +15,22 @@ concurrency:
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:
matrix:
runs-on: ubuntu-latest-low
outputs:
php-versions: ${{ steps.versions.outputs.php-versions }}
steps:
- name: Checkout app
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Get version matrix
id: versions
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.0.0
php-lint: php-lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: matrix
strategy: strategy:
matrix: matrix:
php-versions: ${{fromJson(needs.matrix.outputs.php-versions)}} php-versions: [ '8.1', '8.2', '8.3' ]
name: php-lint name: php-lint
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Set up php ${{ matrix.php-versions }} - name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 uses: shivammathur/setup-php@868f02c3ff1a410930ea971284c9ea175e986284 # v2
with: with:
php-version: ${{ matrix.php-versions }} 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 coverage: none
ini-file: development ini-file: development
env: env:
@@ -58,7 +42,7 @@ jobs:
summary: summary:
permissions: permissions:
contents: none contents: none
runs-on: ubuntu-latest-low runs-on: ubuntu-latest
needs: php-lint needs: php-lint
if: always() if: always()

View File

@@ -2,9 +2,6 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
#
# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: MIT
name: Lint stylelint name: Lint stylelint
@@ -25,22 +22,22 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Read package.json node and npm engines version - name: Read package.json node and npm engines version
uses: skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3 uses: skjnldsv/read-package-engines-version-actions@06d6baf7d8f41934ab630e97d9e6c0bc9c9ac5e4 # v3
id: versions id: versions
with: with:
fallbackNode: '^20' fallbackNode: '^20'
fallbackNpm: '^10' fallbackNpm: '^9'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} - name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v3
with: with:
node-version: ${{ steps.versions.outputs.nodeVersion }} node-version: ${{ steps.versions.outputs.nodeVersion }}
- name: Set up npm ${{ steps.versions.outputs.npmVersion }} - name: Set up npm ${{ steps.versions.outputs.npmVersion }}
run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}' run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
- name: Install dependencies - name: Install dependencies
env: env:

View File

@@ -12,9 +12,9 @@ jobs:
node-version: [14.x] node-version: [14.x]
steps: steps:
- uses: actions/checkout@v4.2.2 - uses: actions/checkout@v4.1.3
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.1.0 uses: actions/setup-node@v4.0.2
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Set up npm7 - name: Set up npm7

View File

@@ -2,9 +2,6 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
#
# SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: MIT
name: Npm audit fix and compile name: Npm audit fix and compile
@@ -21,13 +18,13 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
branches: ['main', 'master', 'stable30', 'stable29', 'stable28'] branches: ['main', 'master', 'stable29', 'stable28', 'stable27']
name: npm-audit-fix-${{ matrix.branches }} name: npm-audit-fix-${{ matrix.branches }}
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
with: with:
ref: ${{ matrix.branches }} ref: ${{ matrix.branches }}
@@ -36,19 +33,19 @@ jobs:
id: versions id: versions
with: with:
fallbackNode: '^20' fallbackNode: '^20'
fallbackNpm: '^10' fallbackNpm: '^9'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} - name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v3
with: with:
node-version: ${{ steps.versions.outputs.nodeVersion }} node-version: ${{ steps.versions.outputs.nodeVersion }}
- name: Set up npm ${{ steps.versions.outputs.npmVersion }} - name: Set up npm ${{ steps.versions.outputs.npmVersion }}
run: npm i -g 'npm@${{ steps.versions.outputs.npmVersion }}' run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
- name: Fix npm audit - name: Fix npm audit
id: npm-audit run: |
uses: nextcloud-libraries/npm-audit-action@2a60bd2e79cc77f2cc4d9a3fe40f1a69896f3a87 # v0.1.0 npm audit fix
- name: Run npm ci and npm run build - name: Run npm ci and npm run build
if: always() if: always()
@@ -60,16 +57,17 @@ jobs:
- name: Create Pull Request - name: Create Pull Request
if: always() if: always()
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5 uses: peter-evans/create-pull-request@9153d834b60caba6d51c9b9510b087acf9f33f83 # v5
with: with:
token: ${{ secrets.COMMAND_BOT_PAT }} token: ${{ secrets.COMMAND_BOT_PAT }}
commit-message: 'fix(deps): Fix npm audit' commit-message: "chore(deps): fix npm audit"
committer: GitHub <noreply@github.com> committer: GitHub <noreply@github.com>
author: nextcloud-command <nextcloud-command@users.noreply.github.com> author: nextcloud-command <nextcloud-command@users.noreply.github.com>
signoff: true signoff: true
branch: automated/noid/${{ matrix.branches }}-fix-npm-audit branch: automated/noid/${{ matrix.branches }}-fix-npm-audit
title: '[${{ matrix.branches }}] Fix npm audit' title: "[${{ matrix.branches }}] Fix npm audit"
body: ${{ steps.npm-audit.outputs.markdown }} body: |
Auto-generated fix of npm audit
labels: | labels: |
dependencies dependencies
3. to review 3. to review

View File

@@ -2,9 +2,6 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # 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 name: PHPUnit MySQL
@@ -24,19 +21,16 @@ jobs:
matrix: ${{ steps.versions.outputs.sparse-matrix }} matrix: ${{ steps.versions.outputs.sparse-matrix }}
steps: steps:
- name: Checkout app - name: Checkout app
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Get version matrix - name: Get version matrix
id: versions id: versions
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1 uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
with: with:
matrix: '{"mysql-versions": ["8.4"]}' matrix: '{"mysql-versions": ["8.1"]}'
changes: changes:
runs-on: ubuntu-latest-low runs-on: ubuntu-latest-low
permissions:
contents: read
pull-requests: read
outputs: outputs:
src: ${{ steps.changes.outputs.src}} src: ${{ steps.changes.outputs.src}}
@@ -86,19 +80,19 @@ jobs:
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
- name: Checkout server - name: Checkout server
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
with: with:
submodules: true submodules: true
repository: nextcloud/server repository: nextcloud/server
ref: ${{ matrix.server-versions }} ref: ${{ matrix.server-versions }}
- name: Checkout app - name: Checkout app
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
with: with:
path: apps/${{ env.APP_NAME }} path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }} - name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 uses: shivammathur/setup-php@868f02c3ff1a410930ea971284c9ea175e986284 # v2
with: with:
php-version: ${{ matrix.php-versions }} php-version: ${{ matrix.php-versions }}
# https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
@@ -111,7 +105,7 @@ jobs:
- name: Enable ONLY_FULL_GROUP_BY MySQL option - name: Enable ONLY_FULL_GROUP_BY MySQL option
run: | 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 "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 echo "SELECT @@sql_mode;" | mysql -h 127.0.0.1 -P 4444 -u root -prootpassword
- name: Check composer file existence - name: Check composer file existence
id: check_composer id: check_composer
@@ -138,7 +132,7 @@ jobs:
continue-on-error: true continue-on-error: true
working-directory: apps/${{ env.APP_NAME }} working-directory: apps/${{ env.APP_NAME }}
run: | run: |
composer run --list | grep '^ test:unit ' | wc -l | grep 1 composer run --list | grep "^ test:unit " | wc -l | grep 1
- name: PHPUnit - name: PHPUnit
# Only run if phpunit config file exists # Only run if phpunit config file exists
@@ -151,7 +145,7 @@ jobs:
continue-on-error: true continue-on-error: true
working-directory: apps/${{ env.APP_NAME }} working-directory: apps/${{ env.APP_NAME }}
run: | run: |
composer run --list | grep '^ test:integration ' | wc -l | grep 1 composer run --list | grep "^ test:integration " | wc -l | grep 1
- name: Run Nextcloud - name: Run Nextcloud
# Only run if phpunit integration config file exists # Only run if phpunit integration config file exists

View File

@@ -2,11 +2,8 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # 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 name: PHPUnit pgsql
on: pull_request on: pull_request
@@ -18,27 +15,11 @@ concurrency:
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:
matrix:
runs-on: ubuntu-latest-low
outputs:
php-version: ${{ steps.versions.outputs.php-available-list }}
server-max: ${{ steps.versions.outputs.branches-max-list }}
steps:
- name: Checkout app
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Get version matrix
id: versions
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
changes: changes:
runs-on: ubuntu-latest-low runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
outputs: outputs:
src: ${{ steps.changes.outputs.src }} src: ${{ steps.changes.outputs.src}}
steps: steps:
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
@@ -61,15 +42,13 @@ jobs:
phpunit-pgsql: phpunit-pgsql:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [changes, matrix] needs: changes
if: needs.changes.outputs.src != 'false' if: needs.changes.outputs.src != 'false'
strategy: strategy:
matrix: matrix:
php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }} php-versions: ['8.2']
server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }} server-versions: ['master']
name: PostgreSQL PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }}
services: services:
postgres: postgres:
@@ -89,19 +68,19 @@ jobs:
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
- name: Checkout server - name: Checkout server
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
with: with:
submodules: true submodules: true
repository: nextcloud/server repository: nextcloud/server
ref: ${{ matrix.server-versions }} ref: ${{ matrix.server-versions }}
- name: Checkout app - name: Checkout app
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
with: with:
path: apps/${{ env.APP_NAME }} path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }} - name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 uses: shivammathur/setup-php@868f02c3ff1a410930ea971284c9ea175e986284 # v2
with: with:
php-version: ${{ matrix.php-versions }} php-version: ${{ matrix.php-versions }}
# https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
@@ -113,7 +92,7 @@ jobs:
- name: Check composer file existence - name: Check composer file existence
id: check_composer id: check_composer
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0 uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v2
with: with:
files: apps/${{ env.APP_NAME }}/composer.json files: apps/${{ env.APP_NAME }}/composer.json
@@ -136,7 +115,7 @@ jobs:
continue-on-error: true continue-on-error: true
working-directory: apps/${{ env.APP_NAME }} working-directory: apps/${{ env.APP_NAME }}
run: | run: |
composer run --list | grep '^ test:unit ' | wc -l | grep 1 composer run --list | grep "^ test:unit " | wc -l | grep 1
- name: PHPUnit - name: PHPUnit
# Only run if phpunit config file exists # Only run if phpunit config file exists
@@ -149,7 +128,7 @@ jobs:
continue-on-error: true continue-on-error: true
working-directory: apps/${{ env.APP_NAME }} working-directory: apps/${{ env.APP_NAME }}
run: | run: |
composer run --list | grep '^ test:integration ' | wc -l | grep 1 composer run --list | grep "^ test:integration " | wc -l | grep 1
- name: Run Nextcloud - name: Run Nextcloud
# Only run if phpunit integration config file exists # Only run if phpunit integration config file exists
@@ -177,7 +156,7 @@ jobs:
summary: summary:
permissions: permissions:
contents: none contents: none
runs-on: ubuntu-latest-low runs-on: ubuntu-latest
needs: [changes, phpunit-pgsql] needs: [changes, phpunit-pgsql]
if: always() if: always()

View File

@@ -2,11 +2,8 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # 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 SQLite name: PHPUnit sqlite
on: pull_request on: pull_request
@@ -18,24 +15,8 @@ concurrency:
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:
matrix:
runs-on: ubuntu-latest-low
outputs:
php-version: ${{ steps.versions.outputs.php-available-list }}
server-max: ${{ steps.versions.outputs.branches-max-list }}
steps:
- name: Checkout app
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Get version matrix
id: versions
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
changes: changes:
runs-on: ubuntu-latest-low runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
outputs: outputs:
src: ${{ steps.changes.outputs.src}} src: ${{ steps.changes.outputs.src}}
@@ -61,15 +42,13 @@ jobs:
phpunit-sqlite: phpunit-sqlite:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [changes, matrix] needs: changes
if: needs.changes.outputs.src != 'false' if: needs.changes.outputs.src != 'false'
strategy: strategy:
matrix: matrix:
php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }} php-versions: ['8.2']
server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }} server-versions: ['master']
name: SQLite PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }}
steps: steps:
- name: Set app env - name: Set app env
@@ -78,19 +57,19 @@ jobs:
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
- name: Checkout server - name: Checkout server
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
with: with:
submodules: true submodules: true
repository: nextcloud/server repository: nextcloud/server
ref: ${{ matrix.server-versions }} ref: ${{ matrix.server-versions }}
- name: Checkout app - name: Checkout app
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
with: with:
path: apps/${{ env.APP_NAME }} path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }} - name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 uses: shivammathur/setup-php@868f02c3ff1a410930ea971284c9ea175e986284 # v2
with: with:
php-version: ${{ matrix.php-versions }} php-version: ${{ matrix.php-versions }}
# https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
@@ -102,7 +81,7 @@ jobs:
- name: Check composer file existence - name: Check composer file existence
id: check_composer id: check_composer
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0 uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v2
with: with:
files: apps/${{ env.APP_NAME }}/composer.json files: apps/${{ env.APP_NAME }}/composer.json
@@ -125,7 +104,7 @@ jobs:
continue-on-error: true continue-on-error: true
working-directory: apps/${{ env.APP_NAME }} working-directory: apps/${{ env.APP_NAME }}
run: | run: |
composer run --list | grep '^ test:unit ' | wc -l | grep 1 composer run --list | grep "^ test:unit " | wc -l | grep 1
- name: PHPUnit - name: PHPUnit
# Only run if phpunit config file exists # Only run if phpunit config file exists
@@ -138,7 +117,7 @@ jobs:
continue-on-error: true continue-on-error: true
working-directory: apps/${{ env.APP_NAME }} working-directory: apps/${{ env.APP_NAME }}
run: | run: |
composer run --list | grep '^ test:integration ' | wc -l | grep 1 composer run --list | grep "^ test:integration " | wc -l | grep 1
- name: Run Nextcloud - name: Run Nextcloud
# Only run if phpunit integration config file exists # Only run if phpunit integration config file exists
@@ -166,7 +145,7 @@ jobs:
summary: summary:
permissions: permissions:
contents: none contents: none
runs-on: ubuntu-latest-low runs-on: ubuntu-latest
needs: [changes, phpunit-sqlite] needs: [changes, phpunit-sqlite]
if: always() if: always()

View File

@@ -20,31 +20,22 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: The get-github-handles-from-website action - name: The get-github-handles-from-website action
uses: marcelklehr/get-github-handles-from-website-action@06b2239db0a48fe1484ba0bfd966a3ab81a08308 # v1.0.1 uses: marcelklehr/get-github-handles-from-website-action@a739600f6b91da4957f51db0792697afbb2f143c # v1.0.0
id: scrape id: scrape
with: with:
website: 'https://nextcloud.com/team/' website: 'https://nextcloud.com/team/'
- name: Get blocklist
id: blocklist
run: |
blocklist=$(curl https://raw.githubusercontent.com/nextcloud/.github/master/non-community-usernames.txt | paste -s -d, -)
echo "blocklist=$blocklist" >> "$GITHUB_OUTPUT"
- uses: marcelklehr/pr-feedback-action@1883b38a033fb16f576875e0cf45f98b857655c4 - uses: marcelklehr/pr-feedback-action@1883b38a033fb16f576875e0cf45f98b857655c4
with: with:
feedback-message: | feedback-message: |
Hello there, Hello there,
Thank you so much for taking the time and effort to create a pull request to our Nextcloud project. Thank you so much for taking the time and effort to create a pull request to our Nextcloud project.
We hope that the review process is going smooth and is helpful for you. We want to ensure your pull request is reviewed to your satisfaction. If you have a moment, our community management team would very much appreciate your feedback on your experience with this PR review process. We hope that the review process is going smooth and is helpful for you. We want to ensure your pull request is reviewed to your satisfaction. If you have a moment, our community management team would very much appreciate your feedback on your experience with this PR review process.
Your feedback is valuable to us as we continuously strive to improve our community developer experience. Please take a moment to complete our short survey by clicking on the following link: https://cloud.nextcloud.com/apps/forms/s/i9Ago4EQRZ7TWxjfmeEpPkf6 Your feedback is valuable to us as we continuously strive to improve our community developer experience. Please take a moment to complete our short survey by clicking on the following link: https://cloud.nextcloud.com/apps/forms/s/i9Ago4EQRZ7TWxjfmeEpPkf6
Thank you for contributing to Nextcloud and we hope to hear from you soon! Thank you for contributing to Nextcloud and we hope to hear from you soon!
(If you believe you should not receive this message, you can add yourself to the [blocklist](https://github.com/nextcloud/.github/blob/master/non-community-usernames.txt).)
days-before-feedback: 14 days-before-feedback: 14
start-date: '2024-04-30' start-date: "2023-07-10"
exempt-authors: '${{ steps.blocklist.outputs.blocklist }},${{ steps.scrape.outputs.users }}' exempt-authors: "${{ steps.scrape.outputs.users }},nextcloud-command,nextcloud-android-bot,skjnldsv,datenangebot"
exempt-bots: true exempt-bots: true

View File

@@ -2,9 +2,6 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # 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: Static analysis name: Static analysis
@@ -21,17 +18,12 @@ jobs:
name: static-psalm-analysis name: static-psalm-analysis
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Get php version - name: Set up php8.2
id: versions uses: shivammathur/setup-php@868f02c3ff1a410930ea971284c9ea175e986284 # v2
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
- name: Set up php${{ steps.versions.outputs.php-available }}
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
with: with:
php-version: ${{ steps.versions.outputs.php-available }} php-version: 8.2
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 coverage: none
ini-file: development ini-file: development
env: env:

View File

@@ -9,14 +9,12 @@
name: REUSE Compliance Check name: REUSE Compliance Check
on: [pull_request] on: pull_request
jobs: jobs:
reuse-compliance-check: reuse-compliance-check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: REUSE Compliance Check
uses: fsfe/reuse-action@a46482ca367aef4454a87620aa37c2be4b2f8106 # v3.0.0
- name: REUSE Compliance Check
uses: fsfe/reuse-action@bb774aa972c2a89ff34781233d275075cbddf542 # v5.0.0

View File

@@ -2,9 +2,6 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
#
# SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: MIT
name: Auto approve nextcloud/ocp name: Auto approve nextcloud/ocp
@@ -25,7 +22,7 @@ concurrency:
jobs: jobs:
auto-approve-merge: auto-approve-merge:
if: github.actor == 'nextcloud-command' if: github.actor == 'nextcloud-command'
runs-on: ubuntu-latest-low runs-on: ubuntu-latest
permissions: permissions:
# for hmarr/auto-approve-action to approve PRs # for hmarr/auto-approve-action to approve PRs
pull-requests: write pull-requests: write
@@ -33,13 +30,7 @@ jobs:
contents: write contents: write
steps: steps:
- name: Disabled on forks - uses: mdecoleman/pr-branch-name@bab4c71506bcd299fb350af63bb8e53f2940a599 # v2.0.0
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
run: |
echo 'Can not approve PRs from forks'
exit 1
- uses: mdecoleman/pr-branch-name@55795d86b4566d300d237883103f052125cc7508 # v3.0.0
id: branchname id: branchname
with: with:
repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -52,7 +43,7 @@ jobs:
# Enable GitHub auto merge # Enable GitHub auto merge
- name: Auto merge - name: Auto merge
uses: alexwilson/enable-github-automerge-action@56e3117d1ae1540309dc8f7a9f2825bc3c5f06ff # main uses: alexwilson/enable-github-automerge-action@4a254667962d854167b3b74dcbcc0138926a81ca # main
if: startsWith(steps.branchname.outputs.branch, 'automated/noid/') && endsWith(steps.branchname.outputs.branch, 'update-nextcloud-ocp') if: startsWith(steps.branchname.outputs.branch, 'automated/noid/') && endsWith(steps.branchname.outputs.branch, 'update-nextcloud-ocp')
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -2,9 +2,6 @@
# #
# https://github.com/nextcloud/.github # https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # 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: Update nextcloud/ocp name: Update nextcloud/ocp
@@ -20,13 +17,13 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
branches: ['main', 'master', 'stable30', 'stable29', 'stable28'] branches: ['main', 'master', 'stable29', 'stable28', 'stable27']
name: update-nextcloud-ocp-${{ matrix.branches }} name: update-nextcloud-ocp-${{ matrix.branches }}
steps: steps:
- id: checkout - id: checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
with: with:
ref: ${{ matrix.branches }} ref: ${{ matrix.branches }}
submodules: true submodules: true
@@ -34,7 +31,7 @@ jobs:
- name: Set up php8.2 - name: Set up php8.2
if: steps.checkout.outcome == 'success' if: steps.checkout.outcome == 'success'
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 uses: shivammathur/setup-php@868f02c3ff1a410930ea971284c9ea175e986284 # v2
with: with:
php-version: 8.2 php-version: 8.2
# https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
@@ -57,15 +54,15 @@ jobs:
- name: Composer update nextcloud/ocp - name: Composer update nextcloud/ocp
id: update_branch id: update_branch
if: ${{ steps.checkout.outcome == 'success' && matrix.branches != 'main' }} if: ${{ steps.checkout.outcome == 'success' && matrix.branches != 'main' }}
run: composer require --dev 'nextcloud/ocp:dev-${{ matrix.branches }}' run: composer require --dev nextcloud/ocp:dev-${{ matrix.branches }}
- name: Raise on issue on failure - name: Raise on issue on failure
uses: dacbd/create-issue-action@cdb57ab6ff8862aa09fee2be6ba77a59581921c2 # v2.0.0 uses: dacbd/create-issue-action@cdb57ab6ff8862aa09fee2be6ba77a59581921c2 # v2.0.0
if: ${{ steps.checkout.outcome == 'success' && failure() && steps.update_branch.conclusion == 'failure' }} if: ${{ steps.checkout.outcome == 'success' && failure() && steps.update_branch.conclusion == 'failure' }}
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
title: 'Failed to update nextcloud/ocp package on branch ${{ matrix.branches }}' title: Failed to update nextcloud/ocp package on branch ${{ matrix.branches }}
body: 'Please check the output of the GitHub action and manually resolve the issues<br>${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}<br>${{ steps.codeowners.outputs.codeowners }}' body: Please check the output of the GitHub action and manually resolve the issues<br>${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}<br>${{ steps.codeowners.outputs.codeowners }}
- name: Composer update nextcloud/ocp - name: Composer update nextcloud/ocp
id: update_main id: update_main
@@ -77,8 +74,8 @@ jobs:
if: ${{ steps.checkout.outcome == 'success' && failure() && steps.update_main.conclusion == 'failure' }} if: ${{ steps.checkout.outcome == 'success' && failure() && steps.update_main.conclusion == 'failure' }}
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
title: 'Failed to update nextcloud/ocp package on branch ${{ matrix.branches }}' title: Failed to update nextcloud/ocp package on branch ${{ matrix.branches }}
body: 'Please check the output of the GitHub action and manually resolve the issues<br>${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}<br>${{ steps.codeowners.outputs.codeowners }}' body: Please check the output of the GitHub action and manually resolve the issues<br>${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}<br>${{ steps.codeowners.outputs.codeowners }}
- name: Reset checkout 3rdparty - name: Reset checkout 3rdparty
if: steps.checkout.outcome == 'success' if: steps.checkout.outcome == 'success'
@@ -103,15 +100,15 @@ jobs:
- name: Create Pull Request - name: Create Pull Request
if: steps.checkout.outcome == 'success' if: steps.checkout.outcome == 'success'
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5 uses: peter-evans/create-pull-request@9153d834b60caba6d51c9b9510b087acf9f33f83 # v3
with: with:
token: ${{ secrets.COMMAND_BOT_PAT }} token: ${{ secrets.COMMAND_BOT_PAT }}
commit-message: 'chore(dev-deps): Bump nextcloud/ocp package' commit-message: "chore(dev-deps): Bump nextcloud/ocp package"
committer: GitHub <noreply@github.com> committer: GitHub <noreply@github.com>
author: nextcloud-command <nextcloud-command@users.noreply.github.com> author: nextcloud-command <nextcloud-command@users.noreply.github.com>
signoff: true signoff: true
branch: 'automated/noid/${{ matrix.branches }}-update-nextcloud-ocp' branch: automated/noid/${{ matrix.branches }}-update-nextcloud-ocp
title: '[${{ matrix.branches }}] Update nextcloud/ocp dependency' title: "[${{ matrix.branches }}] Update nextcloud/ocp dependency"
body: | body: |
Auto-generated update of [nextcloud/ocp](https://github.com/nextcloud-deps/ocp/) dependency Auto-generated update of [nextcloud/ocp](https://github.com/nextcloud-deps/ocp/) dependency
labels: | labels: |

View File

@@ -7,7 +7,7 @@
/.editorconfig /.editorconfig
/.eslintrc.js /.eslintrc.js
/.nextcloudignore /.nextcloudignore
/webpack.js /webpack.*.js
/.codecov.yml /.codecov.yml
/composer.json /composer.json
/composer.lock /composer.lock
@@ -26,10 +26,3 @@
/package-lock.json /package-lock.json
/node_modules/ /node_modules/
/src/ /src/
/cypress/
/cypress.config.js
/.devcontainer/
/.php-cs-fixer.dist.php
/psalm.xml
/relativeci.config.js
/stylelint.config.js

16
.reuse/dep5 Normal file
View File

@@ -0,0 +1,16 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: deck
Upstream-Contact: Nextcloud <info@nextcloud.com>
Source: https://github.com/nextcloud/deck
Files: .gitattributes .github/* .editorconfig babel.config.js .php-cs-fixer.dist.php package-lock.json package.json composer.json composer.lock webpack.js stylelint.config.js .eslintrc.js .gitignore .jshintrc .l10nignore action/.gitignore action/package.json action/package-lock.json action/dist/index.js tests/* psalm.xml cypress/.env cypress/.eslintrc.js cypress/docker-compose.yml cypress/plugins/index.js cypress/tsconfig.json cypress.config.ts vendor-bin/*/composer.json stylelint.config.cjs vendor-bin/*/composer.lock .tx/config webpack.config.js tsconfig.json vite.config.ts js/vendor.LICENSE.txt krankerl.toml .npmignore cypress/fixtures/* postcss.config.js cypress/dockerNode.ts jest.config.js cypress.config.js relativeci.config.js .nextcloudignore .devcontainer/devcontainer.json
Copyright: none
License: CC0-1.0
Files: l10n/*.js l10n/*.json js/*.js.map js/*.js js/*.mjs js/*.mjs.map js/templates/*.handlebars lib/Service/Importer/fixtures/config-deckJson-schema.json lib/Service/Importer/fixtures/config-trelloApi-schema.json lib/Service/Importer/fixtures/config-trelloJson-schema.json screenshots/screenshot1.png src/assets/file-placeholder.svg img/favicon.ico img/favicon.png img/favicon.svg img/activity.svg img/activity-dark.svg img/deck.svg img/deck-current.svg img/deck-dark.svg img/details-white.svg img/card.svg
Copyright: 2019 Nextcloud GmbH and Nextcloud contributors
License: AGPL-3.0-or-later
Files: img/attach.svg img/description.svg img/details.svg img/toggle-view-expand.svg img/toggle-view-collapse.svg img/filter.svg img/filter_set.svg img/circles-dark.svg img/circles.svg img/color_picker.svg img/color_picker-dark.svg img/notifications-dark.svg img/archive.svg img/add-white.svg img/calendar-dark.svg img/calendar-white.svg
Copyright: 2018-2024 Google LLC
License: Apache-2.0

View File

@@ -5,32 +5,6 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 1.14.0-beta.1
### Fixed
- fix: card details focus issue with screen reader @luka-nextcloud [#5858](https://github.com/nextcloud/deck/pull/5858)
- Cleaning up unused indicies @mintsoft [#5612](https://github.com/nextcloud/deck/pull/5612)
- Change import command's config default argument @JimMadge [#5722](https://github.com/nextcloud/deck/pull/5722)
- don't reset update time when no update was written to db @grnd-alt [#6005](https://github.com/nextcloud/deck/pull/6005)
- docs: Fix symlink to readme @juliushaertl [#6033](https://github.com/nextcloud/deck/pull/6033)
- perf: Avoid fetching labels and owner details on permission check @juliushaertl [#6010](https://github.com/nextcloud/deck/pull/6010)
- Only check path for being accessible when the storage is a object home @mejo- [#6062](https://github.com/nextcloud/deck/pull/6062)
- Fix: incorrect height of editing windows and edit bar @pschopen [#6088](https://github.com/nextcloud/deck/pull/6088)
- fix: design review issues @luka-nextcloud [#6113](https://github.com/nextcloud/deck/pull/6113)
- fix: remove redundant log @luka-nextcloud [#6115](https://github.com/nextcloud/deck/pull/6115)
- fix: Adjust dependencies to fix filepicker @susnux [#5964](https://github.com/nextcloud/deck/pull/5964)
- fix: Remove bindParam usage with simpler query @juliushaertl [#6065](https://github.com/nextcloud/deck/pull/6065)
### Other
- Adds link to Nextcloud Deck for iOS in README.md file @StCyr [#5886](https://github.com/nextcloud/deck/pull/5886)
- choir(i18n): Change filter title @rakekniven [#5957](https://github.com/nextcloud/deck/pull/5957)
- chore: Clean up permission service @juliushaertl [#6011](https://github.com/nextcloud/deck/pull/6011)
- Update User_documentation_en.md @StCyr [#6029](https://github.com/nextcloud/deck/pull/6029)
- chore: Move comments event handler to use proper event dispatcher @juliushaertl [#6008](https://github.com/nextcloud/deck/pull/6008)
- Migrate REUSE to TOML format @AndyScherzinger [#6084](https://github.com/nextcloud/deck/pull/6084)
## 1.13.0-beta.1 ## 1.13.0-beta.1
### Added ### Added

View File

@@ -24,7 +24,6 @@ Deck is a kanban style organization tool aimed at personal planning and project
### Mobile apps ### Mobile apps
- [Nextcloud Deck app for Android](https://github.com/stefan-niedermann/nextcloud-deck) - It is available in [F-Droid](https://f-droid.org/de/packages/it.niedermann.nextcloud.deck/) and the [Google Play Store](https://play.google.com/store/apps/details?id=it.niedermann.nextcloud.deck.play) - [Nextcloud Deck app for Android](https://github.com/stefan-niedermann/nextcloud-deck) - It is available in [F-Droid](https://f-droid.org/de/packages/it.niedermann.nextcloud.deck/) and the [Google Play Store](https://play.google.com/store/apps/details?id=it.niedermann.nextcloud.deck.play)
- [Nextcloud Deck app for iOS](https://github.com/StCyr/deck-react-native) - It is available in [Apple App store](https://apps.apple.com/ml/app/nextcloud-deck/id1570892788)
- [deck NG for Android and iOS](https://github.com/meltzow/deck-ng) - It is available in [Google Play Store](https://play.google.com/store/apps/details?id=net.meltzow.deckng) and [Apple App Store](https://apps.apple.com/us/app/deck-ng/id6443334702) - [deck NG for Android and iOS](https://github.com/meltzow/deck-ng) - It is available in [Google Play Store](https://play.google.com/store/apps/details?id=net.meltzow.deckng) and [Apple App Store](https://apps.apple.com/us/app/deck-ng/id6443334702)
### 3rd-Party Integrations ### 3rd-Party Integrations
@@ -91,8 +90,8 @@ You can enable HMR (Hot module replacement) to avoid page reloads when working o
``` ```
docker run --rm \ docker run --rm \
-p 8080:80 \ -p 8080:80 \
-v $PWD:/var/www/html/apps-extra/deck \ -v ~/path/to/app:/var/www/html/apps-extra/app \
ghcr.io/juliushaertl/nextcloud-dev-php81:latest ghcr.io/juliushaertl/nextcloud-dev-php80:latest
``` ```
### Full Nextcloud development environment ### Full Nextcloud development environment
@@ -105,12 +104,6 @@ You can use the provided Makefile to run all tests by using:
make test make test
#### Running behat integration tests
Within `tests/integration/` run `composer install` and then choose one of the two options:
- Run tests with a local php server: `bash run.sh`
- Run against an existing Nextcloud installation: `BEHAT_SERVER_URL=http://nextcloud.local ./vendor/bin/behat --colors features/decks.feature`
### Documentation ### Documentation
The documentation for our REST API can be found at https://deck.readthedocs.io/en/latest/API/ The documentation for our REST API can be found at https://deck.readthedocs.io/en/latest/API/

View File

@@ -1,24 +0,0 @@
# SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: AGPL-3.0-or-later
version = 1
SPDX-PackageName = "deck"
SPDX-PackageSupplier = "Nextcloud <info@nextcloud.com>"
SPDX-PackageDownloadLocation = "https://github.com/nextcloud/deck"
[[annotations]]
path = [".gitattributes", ".github/**", ".editorconfig", "babel.config.js", ".php-cs-fixer.dist.php", "package-lock.json", "package.json", "composer.json", "composer.lock", "webpack.js", "stylelint.config.js", ".eslintrc.js", ".gitignore", ".jshintrc", ".l10nignore", "action/.gitignore", "action/package.json", "action/package-lock.json", "action/dist/index.js", "tests/**", "psalm.xml", "cypress/.env", "cypress/.eslintrc.js", "cypress/docker-compose.yml", "cypress/plugins/index.js", "cypress/tsconfig.json", "cypress.config.ts", "vendor-bin/**/composer.json", "stylelint.config.cjs", "vendor-bin/**/composer.lock", ".tx/config", "webpack.config.js", "tsconfig.json", "vite.config.ts", "js/vendor.LICENSE.txt", "krankerl.toml", ".npmignore", "cypress/fixtures/**", "postcss.config.js", "cypress/dockerNode.ts", "jest.config.js", "cypress.config.js", "relativeci.config.js", ".nextcloudignore", ".devcontainer/devcontainer.json"]
precedence = "aggregate"
SPDX-FileCopyrightText = "none"
SPDX-License-Identifier = "CC0-1.0"
[[annotations]]
path = ["l10n/**.js", "l10n/**.json", "js/**.js.map", "js/**.js", "js/**.mjs", "js/**.mjs.map", "js/templates/**.handlebars", "lib/Service/Importer/fixtures/config-deckJson-schema.json", "lib/Service/Importer/fixtures/config-trelloApi-schema.json", "lib/Service/Importer/fixtures/config-trelloJson-schema.json", "screenshots/screenshot1.png", "src/assets/file-placeholder.svg", "img/favicon.ico", "img/favicon.png", "img/favicon.svg", "img/activity.svg", "img/activity-dark.svg", "img/deck.svg", "img/deck-current.svg", "img/deck-dark.svg", "img/details-white.svg", "img/card.svg"]
precedence = "aggregate"
SPDX-FileCopyrightText = "2019 Nextcloud GmbH and Nextcloud contributors"
SPDX-License-Identifier = "AGPL-3.0-or-later"
[[annotations]]
path = ["img/attach.svg", "img/description.svg", "img/details.svg", "img/toggle-view-expand.svg", "img/toggle-view-collapse.svg", "img/filter.svg", "img/filter_set.svg", "img/circles-dark.svg", "img/circles.svg", "img/color_picker.svg", "img/color_picker-dark.svg", "img/notifications-dark.svg", "img/archive.svg", "img/add-white.svg", "img/calendar-dark.svg", "img/calendar-white.svg"]
precedence = "aggregate"
SPDX-FileCopyrightText = "2018-2024 Google LLC"
SPDX-License-Identifier = "Apache-2.0"

View File

@@ -1,5 +1,4 @@
<?php <?php
/** /**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later * SPDX-License-Identifier: AGPL-3.0-or-later

View File

@@ -20,17 +20,17 @@
- 🚀 Get your project organized - 🚀 Get your project organized
</description> </description>
<version>2.0.0-dev.0</version> <version>1.14.0-dev</version>
<licence>agpl</licence> <licence>agpl</licence>
<author>Julius Härtl</author> <author>Julius Härtl</author>
<namespace>Deck</namespace>
<types>
<dav/>
</types>
<documentation> <documentation>
<user>https://deck.readthedocs.io/en/latest/User_documentation_en/</user> <user>https://deck.readthedocs.io/en/latest/User_documentation_en/</user>
<developer>https://deck.readthedocs.io/en/latest/API/</developer> <developer>https://deck.readthedocs.io/en/latest/API/</developer>
</documentation> </documentation>
<namespace>Deck</namespace>
<types>
<dav/>
</types>
<category>organization</category> <category>organization</category>
<category>office</category> <category>office</category>
<website>https://github.com/nextcloud/deck</website> <website>https://github.com/nextcloud/deck</website>
@@ -42,7 +42,7 @@
<database min-version="9.4">pgsql</database> <database min-version="9.4">pgsql</database>
<database>sqlite</database> <database>sqlite</database>
<database min-version="8.0">mysql</database> <database min-version="8.0">mysql</database>
<nextcloud min-version="31" max-version="31"/> <nextcloud min-version="30" max-version="30"/>
</dependencies> </dependencies>
<background-jobs> <background-jobs>
<job>OCA\Deck\Cron\DeleteCron</job> <job>OCA\Deck\Cron\DeleteCron</job>

View File

@@ -1,5 +1,4 @@
<?php <?php
/** /**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later * SPDX-License-Identifier: AGPL-3.0-or-later
@@ -137,8 +136,6 @@ return [
['name' => 'comments_api#update', 'url' => '/api/v{apiVersion}/cards/{cardId}/comments/{commentId}', 'verb' => 'PUT'], ['name' => 'comments_api#update', 'url' => '/api/v{apiVersion}/cards/{cardId}/comments/{commentId}', 'verb' => 'PUT'],
['name' => 'comments_api#delete', 'url' => '/api/v{apiVersion}/cards/{cardId}/comments/{commentId}', 'verb' => 'DELETE'], ['name' => 'comments_api#delete', 'url' => '/api/v{apiVersion}/cards/{cardId}/comments/{commentId}', 'verb' => 'DELETE'],
['name' => 'card#clone', 'url' => '/api/v{apiVersion}/cards/{cardId}/clone', 'verb' => 'POST'],
['name' => 'overview_api#upcomingCards', 'url' => '/api/v{apiVersion}/overview/upcoming', 'verb' => 'GET'], ['name' => 'overview_api#upcomingCards', 'url' => '/api/v{apiVersion}/overview/upcoming', 'verb' => 'GET'],
['name' => 'search#search', 'url' => '/api/v{apiVersion}/search', 'verb' => 'GET'], ['name' => 'search#search', 'url' => '/api/v{apiVersion}/search', 'verb' => 'GET'],

View File

@@ -9,7 +9,7 @@
} }
], ],
"require": { "require": {
"justinrainbow/json-schema": "^6.0" "justinrainbow/json-schema": "^5.2"
}, },
"require-dev": { "require-dev": {
"roave/security-advisories": "dev-master", "roave/security-advisories": "dev-master",
@@ -24,7 +24,7 @@
"composer/package-versions-deprecated": true "composer/package-versions-deprecated": true
}, },
"platform": { "platform": {
"php": "8.1" "php": "8.0"
} }
}, },
"scripts": { "scripts": {

945
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -11,13 +11,3 @@
background-image: url(../img/deck.svg); background-image: url(../img/deck.svg);
filter: var(--background-invert-if-dark); filter: var(--background-invert-if-dark);
} }
input[type=submit].icon-confirm {
border-color: var(--color-border-maxcontrast) !important;
border-left: none;
}
input[type=text]:focus+input[type=submit].icon-confirm,
input[type=text]:hover+input[type=submit].icon-confirm {
border-color: var(--color-main-text) !important;
}

View File

@@ -35,7 +35,7 @@ describe('Board', function() {
.type(board, { force: true }) .type(board, { force: true })
// Submit // Submit
cy.get('.board-create form button[type=submit]') cy.get('.board-create form input[type=submit]')
.first().click({ force: true }) .first().click({ force: true })
cy.wait('@createBoardRequest').its('response.statusCode').should('equal', 200) cy.wait('@createBoardRequest').its('response.statusCode').should('equal', 200)

View File

@@ -25,9 +25,9 @@ const useModal = (useModal) => {
}) })
} }
describe('Card', function () { describe('Card', function() {
let boardId let boardId
before(function () { before(function() {
cy.createUser(user) cy.createUser(user)
cy.login(user) cy.login(user)
cy.createExampleBoard({ cy.createExampleBoard({
@@ -38,11 +38,11 @@ describe('Card', function () {
}) })
}) })
beforeEach(function () { beforeEach(function() {
cy.login(user) cy.login(user)
}) })
it('Can add a card', function () { it('Can add a card', function() {
cy.visit(`/apps/deck/#/board/${boardId}`) cy.visit(`/apps/deck/#/board/${boardId}`)
const newCardTitle = 'Write some cypress tests' const newCardTitle = 'Write some cypress tests'
@@ -63,7 +63,7 @@ describe('Card', function () {
}) })
}) })
it('Create card from overview', function () { it('Create card from overview', function() {
cy.visit(`/apps/deck/#/`) cy.visit(`/apps/deck/#/`)
const newCardTitle = 'Test create from overview' const newCardTitle = 'Test create from overview'
cy.intercept({ method: 'POST', url: '**/apps/deck/cards' }).as('save') cy.intercept({ method: 'POST', url: '**/apps/deck/cards' }).as('save')
@@ -71,10 +71,6 @@ describe('Card', function () {
cy.get('.button-vue[aria-label*="Add card"]') cy.get('.button-vue[aria-label*="Add card"]')
.first().click() .first().click()
// Somehow this avoids the electron crash
cy.wait(2000)
cy.get('.modal-mask.card-selector .card-title').should('be.visible').click().type(newCardTitle) cy.get('.modal-mask.card-selector .card-title').should('be.visible').click().type(newCardTitle)
cy.get('.modal-mask.card-selector .multiselect-board').should('be.visible').click() cy.get('.modal-mask.card-selector .multiselect-board').should('be.visible').click()
cy.get('.vs__dropdown-menu [data-cy="board-select-title"]:contains("' + boardData.title + '")').should('be.visible').click() cy.get('.vs__dropdown-menu [data-cy="board-select-title"]:contains("' + boardData.title + '")').should('be.visible').click()
@@ -95,14 +91,14 @@ describe('Card', function () {
}) })
describe('Modal', () => { describe('Modal', () => {
beforeEach(function () { beforeEach(function() {
cy.login(user) cy.login(user)
useModal(true).then(() => { useModal(true).then(() => {
cy.visit(`/apps/deck/#/board/${boardId}`) cy.visit(`/apps/deck/#/board/${boardId}`)
}) })
}) })
it('Can show card details modal', function () { it('Can show card details modal', function() {
cy.getNavigationEntry(boardData.title) cy.getNavigationEntry(boardData.title)
.first().click({ force: true }) .first().click({ force: true })
@@ -128,7 +124,7 @@ describe('Card', function () {
cy.get('.attachment-list .basename').contains('welcome.txt') cy.get('.attachment-list .basename').contains('welcome.txt')
}) })
it('Shows the modal with the editor', () => { it.only('Shows the modal with the editor', () => {
cy.get('.card:contains("Hello world")').should('be.visible').click() cy.get('.card:contains("Hello world")').should('be.visible').click()
cy.intercept({ method: 'PUT', url: '**/apps/deck/cards/*' }).as('save') cy.intercept({ method: 'PUT', url: '**/apps/deck/cards/*' }).as('save')
cy.get('.modal__card').should('be.visible') cy.get('.modal__card').should('be.visible')
@@ -165,9 +161,9 @@ describe('Card', function () {
cy.get('.reference-picker-modal--content .reference-picker .multiselect-list').should('be.visible').contains(boardData.stacks[0].title) cy.get('.reference-picker-modal--content .reference-picker .multiselect-list').should('be.visible').contains(boardData.stacks[0].title)
cy.get('.reference-picker-modal--content .reference-picker button.button-vue--vue-primary').should('be.visible').click() cy.get('.reference-picker-modal--content .reference-picker button.button-vue--vue-primary').should('be.visible').click()
cy.wait('@save', { timeout: 7000 }) cy.wait('@save', { timeout: 7000 })
cy.get('.modal__card .ProseMirror').contains('/index.php/apps/deck/card/').should('have.length', 1) cy.get('.modal__card .ProseMirror').contains('/index.php/apps/deck/card/').should('be.visible')
cy.visit(`/apps/deck/board/${boardId}`) cy.visit(`/apps/deck/#/board/${boardId}`)
cy.reload() cy.reload()
cy.get('.board .stack').eq(0).within(() => { cy.get('.board .stack').eq(0).within(() => {
cy.get(`.card:contains("${newCardTitle}")`).should('be.visible') cy.get(`.card:contains("${newCardTitle}")`).should('be.visible')
@@ -176,7 +172,7 @@ describe('Card', function () {
}) })
describe('Sidebar', () => { describe('Sidebar', () => {
beforeEach(function () { beforeEach(function() {
cy.login(user) cy.login(user)
useModal(false).then(() => { useModal(false).then(() => {
cy.visit(`/apps/deck/#/board/${boardId}`) cy.visit(`/apps/deck/#/board/${boardId}`)
@@ -189,7 +185,7 @@ describe('Card', function () {
.find('.ProseMirror h1').contains('Hello world writing more text').should('be.visible') .find('.ProseMirror h1').contains('Hello world writing more text').should('be.visible')
}) })
it('Set a due date', function () { it('Set a due date', function() {
const newCardTitle = 'Card with a due date' const newCardTitle = 'Card with a due date'
cy.get('.button-vue[aria-label*="Add card"]') cy.get('.button-vue[aria-label*="Add card"]')
@@ -227,7 +223,7 @@ describe('Card', function () {
cy.get(`.card:contains("${newCardTitle}")`).find('[data-due-state]').should('not.exist') cy.get(`.card:contains("${newCardTitle}")`).find('[data-due-state]').should('not.exist')
}) })
it('Add a label', function () { it('Add a label', function() {
const newCardTitle = 'Card with labels' const newCardTitle = 'Card with labels'
cy.get('.button-vue[aria-label*="Add card"]') cy.get('.button-vue[aria-label*="Add card"]')
@@ -256,7 +252,7 @@ describe('Card', function () {
}) })
describe('Card actions', () => { describe('Card actions', () => {
beforeEach(function () { beforeEach(function() {
cy.login(user) cy.login(user)
useModal(false).then(() => { useModal(false).then(() => {
cy.visit(`/apps/deck/#/board/${boardId}`) cy.visit(`/apps/deck/#/board/${boardId}`)
@@ -302,18 +298,5 @@ describe('Card', function () {
}) })
}) })
}) })
it('clone card', () => {
cy.intercept({ method: 'POST', url: '**/apps/deck/**/cards/*/clone' }).as('clone')
cy.get('.card:contains("Hello world")').should('be.visible').click()
cy.get('#app-sidebar-vue')
.find('.ProseMirror h1').contains('Hello world').should('be.visible')
cy.get('.app-sidebar-header .action-item__menutoggle').click()
cy.get('.v-popper__popper button:contains("Move/copy card")').click()
cy.get('.modal-container button:contains("Copy card")').click()
cy.wait('@clone', { timeout: 7000 })
cy.get('.card:contains("Hello world")').should('have.length', 2)
})
}) })
}) })

View File

@@ -6,14 +6,11 @@ import { randUser } from '../utils/index.js'
import { sampleBoard } from '../utils/sampleBoard' import { sampleBoard } from '../utils/sampleBoard'
const user = randUser() const user = randUser()
const recipient = randUser() const recipient = randUser()
const domain = Math.random().toString(36).replace(/[^a-z]+/g, '').slice(0, 10)
describe('Board', function() { describe('Board', function() {
before(function() { before(function() {
cy.createUser(user) cy.createUser(user)
cy.createUser(recipient) cy.createUser(recipient)
cy.login(recipient)
cy.setUserEmail(recipient, `${recipient.userId}@${domain}.com`)
}) })
beforeEach(function() { beforeEach(function() {
@@ -37,24 +34,6 @@ describe('Board', function() {
}) })
}) })
it('Share a board to a user by email', function() {
const board = sampleBoard('Shared by email')
cy.createExampleBoard({ user, board }).then((board) => {
const boardId = board.id
cy.visit(`/apps/deck/#/board/${boardId}`)
cy.get('.board-title').contains(board.title)
// domain is only in the email address - not in user ids.
cy.shareBoardWithUi(domain, recipient.userId)
cy.login(recipient)
cy.visit(`/apps/deck/#/board/${boardId}`)
cy.get('.board-title').contains(board.title)
cy.get('.button-vue[aria-label*="Add card"]')
.should('not.exist')
})
})
it('Share a board to a user as writable', function() { it('Share a board to a user as writable', function() {
const board = sampleBoard('Editable board') const board = sampleBoard('Editable board')
cy.createExampleBoard({ user, board }).then((board) => { cy.createExampleBoard({ user, board }).then((board) => {

View File

@@ -4,21 +4,12 @@
*/ */
import { addCommands } from '@nextcloud/cypress' import { addCommands } from '@nextcloud/cypress'
import axios from '@nextcloud/axios'
addCommands() addCommands()
const url = Cypress.config('baseUrl').replace(/\/index.php\/?$/g, '') const url = Cypress.config('baseUrl').replace(/\/index.php\/?$/g, '')
Cypress.env('baseUrl', url) Cypress.env('baseUrl', url)
// prepare main cypress window so we can use axios there
// and it will successfully fetch csrf tokens when needed.
window.OC = {
config: { modRewriteWorking: false },
}
// Prevent @nextcloud/router from reading window.location
window._oc_webroot = url
Cypress.Commands.add('openLeftSidebar', () => { Cypress.Commands.add('openLeftSidebar', () => {
cy.get('.app-navigation button.app-navigation-toggle').click() cy.get('.app-navigation button.app-navigation-toggle').click()
}) })
@@ -98,23 +89,15 @@ Cypress.Commands.add('getNavigationEntry', (boardTitle) => {
.find('a.app-navigation-entry-link') .find('a.app-navigation-entry-link')
}) })
Cypress.Commands.add('shareBoardWithUi', (query, userId=query) => { Cypress.Commands.add('shareBoardWithUi', (userId) => {
cy.intercept({ method: 'GET', url: `**/ocs/v2.php/apps/files_sharing/api/v1/sharees?search=${query}*` }).as('fetchRecipients') cy.intercept({ method: 'GET', url: `**/ocs/v2.php/apps/files_sharing/api/v1/sharees?search=${userId}*` }).as('fetchRecipients')
cy.get('[aria-label="Open details"]').click() cy.get('[aria-label="Open details"]').click()
cy.get('.app-sidebar').should('be.visible') cy.get('.app-sidebar').should('be.visible')
cy.get('.select input').type(`${query}`) cy.get('.select input').type(`${userId}`)
cy.wait('@fetchRecipients', { timeout: 7000 }) cy.wait('@fetchRecipients', { timeout: 7000 })
cy.get('.vs__dropdown-menu .option').first().contains(query) cy.get('.vs__dropdown-menu .option').first().contains(userId)
cy.get('.select input').type('{enter}') cy.get('.select input').type('{enter}')
cy.get('.shareWithList').contains(userId) cy.get('.shareWithList').contains(userId)
}) })
Cypress.Commands.add('setUserEmail', (user, value) => {
Cypress.log()
return axios.put(
`${url}/ocs/v2.php/cloud/users/${user.userId}`,
{ key: 'email', value },
)
})

View File

@@ -21,7 +21,7 @@
import './commands.js' import './commands.js'
Cypress.on('uncaught:exception', (err) => { Cypress.on('uncaught:exception', (err) => {
return !err.message.includes('ResizeObserver loop limit exceeded') && !err.message.includes('ResizeObserver loop completed with undelivered notifications') return !err.message.includes('ResizeObserver loop limit exceeded')
}) })
// Alternatively you can use CommonJS syntax: // Alternatively you can use CommonJS syntax:

View File

@@ -13,7 +13,7 @@ The Deck application plugin uses the [markdown-it](https://github.com/markdown-i
## Supported Markdown ## Supported Markdown
Markdown comes in many flavors. The best way to learn markdown and understand how to use it, is simply to [try it](https://markdown-it.github.io) on the original script official playground. Markdown comes in may flavors. The best way to learn markdown and understand how to use it, is simply to [try it](https://markdown-it.github.io) on the original script official playground.
That same link offers also a comprehensive list of what is supported, and what is not - rendering it unnecessary to duplicate that content in here. That same link offers also a comprehensive list of what is supported, and what is not - rendering it unnecessary to duplicate that content in here.
[CommonMark Markdown Reference](http://commonmark.org/help/) [CommonMark Markdown Reference](http://commonmark.org/help/)

View File

@@ -20,11 +20,9 @@ Overall, Deck is easy to use. You can create boards, add users, share the Deck,
4. [Mark task as done](#4-mark-as-done) 4. [Mark task as done](#4-mark-as-done)
5. [Archive old tasks](#5-archive-old-tasks) 5. [Archive old tasks](#5-archive-old-tasks)
6. [Manage your board](#6-manage-your-board) 6. [Manage your board](#6-manage-your-board)
7. [Sharing boards](#7-sharing-boards) 7. [Import boards](#7-import-boards)
8. [Import boards](#8-import-boards) 8. [Search](#8-search)
9. [Trello interoperability](#9-trello-interoperability) 9. [New owner for the deck entities](#9-new-owner-for-the-deck-entities)
10. [Search](#10-search)
11. [New owner for the deck entities](#11-new-owner-for-the-deck-entities)
### 1. Create my first board ### 1. Create my first board
In this example, we're going to create a board and share it with an other nextcloud user. In this example, we're going to create a board and share it with an other nextcloud user.
@@ -86,14 +84,7 @@ The **sharing tab** allows you to add users or even groups to your boards.
**Deleted objects** allows you to return previously deleted stacks or cards. **Deleted objects** allows you to return previously deleted stacks or cards.
The **Timeline** allows you to see everything that happened in your boards. Everything! The **Timeline** allows you to see everything that happened in your boards. Everything!
### 7. Sharing boards ### 7. Import boards
You can share boards with a user, a group, or, if you are using the [Circles](https://apps.nextcloud.com/apps/circles) app, with a circle.
If a user is member of one or several group(s) or circle(s) a board is shared with, the following rules apply:
1. If a user is namely specified in a board's acl, (s)he gets the permission assigned to her/him;
2. Else, if a user is member of one or several circle(s) or group(s), (s)he gets the permission when at least one circle/group (s)he is member of has the permission.
### 8. Import boards
Importing can be done using the API or the `occ` `deck:import` command. Importing can be done using the API or the `occ` `deck:import` command.
@@ -101,8 +92,6 @@ Comments with more than 1000 characters are placed as attached files to the card
It is possible to import from the following sources: It is possible to import from the following sources:
### 9. Trello interoperability
#### Trello JSON #### Trello JSON
Steps: Steps:
@@ -161,7 +150,7 @@ Example configuration file:
} }
``` ```
### 10. Search ### 8. Search
Deck provides a global search either through the unified search in the Nextcloud header or with the inline search next to the board controls. Deck provides a global search either through the unified search in the Nextcloud header or with the inline search next to the board controls.
This search allows advanced filtering of cards across all board of the logged in user. This search allows advanced filtering of cards across all board of the logged in user.
@@ -184,7 +173,7 @@ Other text tokens will be used to perform a case-insensitive search on the card
In addition, quotes can be used to pass a query with spaces, e.g. `"Exact match with spaces"` or `title:"My card"`. In addition, quotes can be used to pass a query with spaces, e.g. `"Exact match with spaces"` or `title:"My card"`.
### 11. New owner for the deck entities ### 9. New owner for the deck entities
You can transfer ownership of boards, cards, etc to a new user, using `occ` command `deck:transfer-ownership` You can transfer ownership of boards, cards, etc to a new user, using `occ` command `deck:transfer-ownership`
```bash ```bash

View File

@@ -12,9 +12,8 @@ The export currently has some kown limitations in terms of specific data not inc
- Comments - Comments
- -
``` ```
occ deck:export userid > userid-deck-export.json occ deck:export > my-file.json
``` ```
(userid = username you see in admin useraccounts page)
## Import boards ## Import boards
@@ -24,42 +23,22 @@ It is possible to import from the following sources:
### Deck JSON ### Deck JSON
A json file that has been obtained from the above described `occ deck:export [userid] > userid-deck-export.json` command can be imported. A json file that has been obtained from the above described `occ deck:export [userid]` command can be imported.
``` ```
occ deck:import userid-deck-export.json occ deck:import my-file.json
``` ```
You will be asked to provide a path to a config file. In case you are importing from a different instance you may use an additional config file to provide custom user id mapping in case users have different identifiers.
To know what to put in there:
- Have a look at your userid-deck-export.json
- fairly at the top you will see "uid" with a username.
- search for some more "uid" till you find all the usernames involved and note them.
- search for "acl"
- in there there are "uid" of groups note them too
In case you are importing from a different instance you must provide custom user id mapping in case users have different identifiers.
create a config file e.g `deck-import-config-file-userid.json` and ajust the content of this example as descibed above.
Userids on new instance can be seen in the admin useraccounts page.
``` ```
{ {
"owner": "useridofnewownderofallboards", "owner": "admin",
"uidRelation": { "uidRelation": {
"userid1onoldinstance": "userid1onnewinstance", "johndoe": "test-user-1"
"userid2onoldinstance": "userid2onnewinstance",
"groupid1onoldinstance": "groupid1onnewinstance"
} }
} }
``` ```
after you hit enter everything will be imported.
Additional info:
- If you export a users boards, all boards that the user has access to will be exported. (also the onws shared to that user)
#### Trello JSON #### Trello JSON

View File

@@ -1 +1,5 @@
<!--
- SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
../README.md ../README.md

View File

@@ -1,2 +0,0 @@
SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
SPDX-License-Identifier: AGPL-3.0-or-later

View File

@@ -85,14 +85,14 @@ OC.L10N.register(
"{user} has mentioned you in a comment on {deck-card}." : "{user} أشار إليك في تعليق على {deck-card}", "{user} has mentioned you in a comment on {deck-card}." : "{user} أشار إليك في تعليق على {deck-card}",
"The board \"%s\" has been shared with you by %s." : "تمت مشاركة اللوح \"%s\" معك من قبل %s.", "The board \"%s\" has been shared with you by %s." : "تمت مشاركة اللوح \"%s\" معك من قبل %s.",
"{user} has shared {deck-board} with you." : "{user} قام بمشاركة {deck-board} معك.", "{user} has shared {deck-board} with you." : "{user} قام بمشاركة {deck-board} معك.",
"Deck board" : "لوحة البطاقات", "Deck board" : "رُقعة اللوحات Deck board",
"Owned by %1$s" : "يملكها %1$s", "Owned by %1$s" : "يملكها %1$s",
"Deck boards, cards and comments" : "اللوحات و البطاقات و الملاحظات", "Deck boards, cards and comments" : "رُقعة اللوحات و البطاقات و الملاحظات",
"From %1$s, in %2$s/%3$s, owned by %4$s" : " من %1$s، في %2$s/%3$s، يملكها %4$s", "From %1$s, in %2$s/%3$s, owned by %4$s" : " من %1$s، في %2$s/%3$s، يملكها %4$s",
"Create a new deck card" : "إنشاء بطاقة جديدة", "Create a new deck card" : "إنشاء بطاقة deck card جديدة",
"Card comments" : "تعليقات البطاقة ", "Card comments" : "تعليقات البطاقة ",
"%s on %s" : "%s على %s", "%s on %s" : "%s على %s",
"Deck boards and cards" : "اللوحات و البطاقات", "Deck boards and cards" : "رُقَع اللوحات و البطاقات",
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق", "No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق",
"Finished" : "اكتمل", "Finished" : "اكتمل",
"To review" : "لإعادة المراجعة", "To review" : "لإعادة المراجعة",
@@ -119,8 +119,7 @@ OC.L10N.register(
"Path is already shared with this card" : "تم مشاركة المسار بالفعل مع هذه البطاقة ", "Path is already shared with this card" : "تم مشاركة المسار بالفعل مع هذه البطاقة ",
"Invalid date, date format must be YYYY-MM-DD" : "تاريخ غير صحيح, يجب أن يكون تنسيق التاريخ YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "تاريخ غير صحيح, يجب أن يكون تنسيق التاريخ YYYY-MM-DD",
"Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق", "Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "التطبيق \"رِزَم البطاقات\" Deck هو أداة لتنظيم المهام الشخصية و الجماعية في نكست كلاود على نمط \"خطوط التصنيع أو التجميع في المصانع\" و المعروف بـ kanban.\n\n\n- 📥 أكتب مهمتك او مهمة فريقك على بطاقة و ضع البطاقة على لوحة البطاقات من ذات التصنيف أو المرحلة من الإنجاز\n- 📄 دوّن ملاحظاتك الإضافية على البطاقة بصيغة ماركداون markdown\n- 🔖 و يمكنك أيضاً إسناد البطاقة أي المهمة إلى شخص أو أشخاص في فريقك\n- 👥 شارك البطاقة مع من ترغب من أعضاء فريقك أو عائلتك أو أصدقائك\n- 📎 إرفاق ملفات و تضمينها بصيغة ماركداون في البطاقة\n- 💬ناقش البطاقة مع زملائك في خانة الملاحظات\n- ⚡ تابع ما يُستجد من عمليات و تطوّرات على البطاقة أو المهمة\n- 🚀 حافظ على مشروعك مُنسّقاً باستمرار.", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "التطبيق \"رِزَم البطاقات\" Deck هو أداة لتنظيم المهام الشخصية و الجماعية في نكست كلاود على نمط \"خطوط التصنيع أو التجميع في المصانع\" و المعروف بـ kanban.\n\n\n- 📥 أكتب مهمتك او مهمة فريقك على بطاقة و ضع البطاقة في الرُّقعة على كدسة البطاقات من ذات التصنيف أو المرحلة من الإنجاز\n- 📄 دوّن ملاحظاتك الإضافية على البطاقة بصيغة ماركداون markdown\n- 🔖 و يمكنك أيضاً إسناد البطاقة أي المهمة إلى شخص أو أشخاص في فريقك\n- 👥 شارك البطاقة مع من ترغب من أعضاء فريقك أو عائلتك أو أصدقائك\n- 📎 إرفاق ملفات و تضمينها بصيغة ماركداون في البطاقة\n- 💬ناقش البطاقة مع زملائك في خانة الملاحظات\n- ⚡ تابع ما يُستجد من عمليات و تطوّرات على البطاقة أو المهمة\n- 🚀 حافظ على مشروعك مُنسّقاً باستمرار.",
"Card details" : "تفاصيل البطاقة",
"Add board" : "إضافة لوح", "Add board" : "إضافة لوح",
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع", "Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح", "Search by board title" : "بحث بواسطة عنوان اللوح",
@@ -150,9 +149,9 @@ OC.L10N.register(
"Filter by tag" : "تصفية بواسطة الوسم", "Filter by tag" : "تصفية بواسطة الوسم",
"Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه", "Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه",
"Unassigned" : "غير معيين ", "Unassigned" : "غير معيين ",
"Filter by status" : "تصفية بحسب الحالة", "Filter by completed" : "فلترة بحسب الإنجاز",
"Open and completed" : "مفتوحة و منجزة", "Open and completed" : "مفتوحة و منجزة",
"Open" : "فتح", "Open" : "إفتح",
"Completed" : "مُكتمل", "Completed" : "مُكتمل",
"Filter by due date" : "تصفية بواسطة تاريخ الإنجاز", "Filter by due date" : "تصفية بواسطة تاريخ الإنجاز",
"Overdue" : "تأخر", "Overdue" : "تأخر",
@@ -170,7 +169,7 @@ OC.L10N.register(
"Show card cover images" : "أظهِر صور غلاف البطاقات", "Show card cover images" : "أظهِر صور غلاف البطاقات",
"Open details" : "افتح التفاصيل", "Open details" : "افتح التفاصيل",
"Details" : "التفاصيل", "Details" : "التفاصيل",
"Currently present people" : "الأشخاص الحاضرون الآن", "Currently present people" : "أشخاص معروضون حاليّاً",
"Loading board" : "جارِ تحميل اللوح..", "Loading board" : "جارِ تحميل اللوح..",
"Board not found" : "اللوح غير موجود", "Board not found" : "اللوح غير موجود",
"Create a new list to add cards to this board" : "إنشاء قائمة جديدة لإضافة البطاقات على هذا اللوح", "Create a new list to add cards to this board" : "إنشاء قائمة جديدة لإضافة البطاقات على هذا اللوح",
@@ -182,7 +181,7 @@ OC.L10N.register(
"Undo" : "تراجع", "Undo" : "تراجع",
"Deleted cards" : "البطاقات المحذوفة", "Deleted cards" : "البطاقات المحذوفة",
"Share board with a user, group or team …" : "مشاركة اللوحة مع مستخدِم او مجموعة أو فريق ...", "Share board with a user, group or team …" : "مشاركة اللوحة مع مستخدِم او مجموعة أو فريق ...",
"Searching for users, groups and teams …" : "البحث عن مستخدِمين، أو مجموعات، أو فرق", "Searching for users, groups and teams …" : "البحث عن مستخدِمين، أو مجموعات، أو فِرَق",
"No participants found" : "لم يتم العثور على مشاركين", "No participants found" : "لم يتم العثور على مشاركين",
"Board owner" : "منشئ اللوح", "Board owner" : "منشئ اللوح",
"(Group)" : "(مجموعة)", "(Group)" : "(مجموعة)",
@@ -198,7 +197,7 @@ OC.L10N.register(
"Transfer" : "نقل", "Transfer" : "نقل",
"The board has been transferred to {user}" : "تمّ نقل اللوحة إلى {user}", "The board has been transferred to {user}" : "تمّ نقل اللوحة إلى {user}",
"Failed to transfer the board to {user}" : "تعذّر نقل اللوحة إلى {user}", "Failed to transfer the board to {user}" : "تعذّر نقل اللوحة إلى {user}",
"Edit list title" : "تعديل اسم القائمة", "Edit list title" : "عدّل اسم القائمة",
"Archive all cards" : "أرشفة جميع البطاقات ", "Archive all cards" : "أرشفة جميع البطاقات ",
"Unarchive all cards" : "تراجع عن أرشفة كل البطاقات", "Unarchive all cards" : "تراجع عن أرشفة كل البطاقات",
"Delete list" : "حذف القائمة", "Delete list" : "حذف القائمة",
@@ -212,7 +211,7 @@ OC.L10N.register(
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ", "title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
"Board name" : "اسم اللوح", "Board name" : "اسم اللوح",
"Members" : "الاعضاء", "Members" : "الاعضاء",
"Assign to users/groups/team" : "إسناد إلى مستخدمين/مجموعات/فرق", "Assign to users/groups/team" : "إسناد إلى مستخدِمين/مجموعات/فِرَق",
"Assign a user to this card…" : "انسب مستخدم الى هذه البطاقة..", "Assign a user to this card…" : "انسب مستخدم الى هذه البطاقة..",
"Select a user to assign to this card…" : "حدِّد مستخدِماً ليتم إسناد هذه البطاقة له...", "Select a user to assign to this card…" : "حدِّد مستخدِماً ليتم إسناد هذه البطاقة له...",
"Upload new files" : "رفع ملفات جديدة", "Upload new files" : "رفع ملفات جديدة",
@@ -254,34 +253,35 @@ OC.L10N.register(
"Choose attachment" : "اختيار مرفق", "Choose attachment" : "اختيار مرفق",
"Assign a due date to this card…" : "تعيين تاريخ استحقاق لهذه البطاقة...", "Assign a due date to this card…" : "تعيين تاريخ استحقاق لهذه البطاقة...",
"Set a due date" : "تعيين تاريخ الانجاز", "Set a due date" : "تعيين تاريخ الانجاز",
"Add due date" : "إضافة تاريخ الاستحقاق", "Add due date" : "أضِف تاريخ الاستحقاق",
"Choose a date" : "إختَر تاريخاً", "Choose a date" : "إختَر تاريخاً",
"Remove due date" : "ازالة تاريخ الانجاز", "Remove due date" : "ازالة تاريخ الانجاز",
"Mark as done" : "تمييز كمُنجَز",
"Due at:" : "تاريخ الاستحقاق:", "Due at:" : "تاريخ الاستحقاق:",
"Not done" : "غير مُنجَزة", "Not completed" : "غير مكتمل",
"Unarchive card" : "إلغاء أرشفة البطاقة ", "Unarchive card" : "إلغاء أرشفة البطاقة ",
"Archive card" : "أرشفة البطاقة", "Archive card" : "أرشفة البطاقة",
"Select Date" : "اختر التاريخ ", "Select Date" : "اختر التاريخ ",
"Set due date for later today" : "تعيين آخِرَ هذا اليوم كموعدٍ لاستحقاق البطاقة", "Set due date for later today" : "عيِّن آخِرَ هذا اليوم كموعدٍ لاستحقاق البطاقة",
"Set due date for tomorrow" : "تعيين يوم الغد كموعدٍ لاستحقاق البطاقة", "Set due date for tomorrow" : "عيِّن يوم الغد كموعدٍ لاستحقاق البطاقة",
"Set due date for this weekend" : "تعيين نهاية هذا الأسبوع كموعدٍ لاستحقاق البطاقة", "Set due date for this weekend" : "عيِّن نهاية هذا الأسبوع كموعدٍ لاستحقاق البطاقة",
"Set due date for next week" : "تعيين الأسبوع المُقبل كموعدٍ لاستحقاق البطاقة", "Set due date for next week" : "عيِّن الأسبوع المُقبل كموعدٍ لاستحقاق البطاقة",
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..", "Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
"Select or create a tag…" : "اختيار أو إنشاء وسم جديد...", "Select or create a tag…" : "إختَر أو أنشِئْ وسماً ...",
"Create a new tag:" : "إنشاء وسم جديد:", "Create a new tag:" : "إنشاء سِمَةٍ tag جديدة:",
"(group)" : "(مجموعة)", "(group)" : "(مجموعة)",
"Next week {timeLocale}" : "الأسبوع القادم {timeLocale}", "Next week {timeLocale}" : "الأسبوع القادم {timeLocale}",
"Todo items" : "قائمة المهام", "Todo items" : "قائمة المهام",
"{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة", "{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة",
"Edit card title" : "تعديل اسم القائمة", "Edit card title" : "تعديل اسم القائمة",
"Card details" : "تفاصيل البطاقة",
"Assign to me" : "ينسب لي", "Assign to me" : "ينسب لي",
"Unassign myself" : "إلغاء تعييني ", "Unassign myself" : "إلغاء تعييني ",
"Mark as not done" : "تمييز كـ \"غير منتهٍ\"", "Mark as not done" : "تمييز كـ \"غير منتهٍ\"",
"Mark as done" : "تمييز كمُنجَز",
"Delete card" : "حذف البطاقة", "Delete card" : "حذف البطاقة",
"Card deleted" : "البطاقة حٌذفت ", "Card deleted" : "البطاقة حٌذفت ",
"seconds ago" : "ثوانٍ مضت", "seconds ago" : "ثوانٍ مضت",
"Keyboard shortcuts" : "اختصارات لوحة المفاتيح", "Keyboard shortcuts" : "إختصارات لوحة المفاتيح",
"Boost your productivity using Deck with keyboard shortcuts." : "ضاعِف إنتاجيتك باستعمال \"رِزَم البطاقات\" Deck، و اختصارات لوحة المفاتيح ", "Boost your productivity using Deck with keyboard shortcuts." : "ضاعِف إنتاجيتك باستعمال \"رِزَم البطاقات\" Deck، و اختصارات لوحة المفاتيح ",
"Board actions" : "إجراءات اللوحة", "Board actions" : "إجراءات اللوحة",
"Keyboard shortcut" : "إختصار لوحة المفاتيح", "Keyboard shortcut" : "إختصار لوحة المفاتيح",
@@ -310,14 +310,12 @@ OC.L10N.register(
"All boards" : "جميع الالواح", "All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة", "Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "تم مشاركتها معك", "Shared with you" : "تم مشاركتها معك",
"Deck settings" : "إعدادات رزم البطاقات", "Deck settings" : "إعدادات رِزَمِ البطاقات",
"Use bigger card view" : "استخدام بطاقة عرض أكبر ", "Use bigger card view" : "استخدام بطاقة عرض أكبر ",
"Show card ID badge" : "أعرض شارة رقم البطاقة", "Show card ID badge" : "أعرض شارة رقم البطاقة",
"Show boards in calendar/tasks" : "إظهار اللوح في التقويم/المهام", "Show boards in calendar/tasks" : "إظهار اللوح في التقويم/المهام",
"Limit board creation to some groups" : "قَصْرُ حَقِّ إنشاء الألواح على بعض المجموعات ", "Limit board creation to some groups" : "قَصْرُ حَقِّ إنشاء الألواح على بعض المجموعات ",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "المستخدِمون من خارج تلك المجموعات لن يمكنكم إنشاء لوحاتهم الخاصة؛ لكن يمكنهم العمل على اللوحات التي تتمّ مشاركتها معهم.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "المستخدِمون من خارج تلك المجموعات لن يمكنكم إنشاء لوحاتهم الخاصة؛ لكن يمكنهم العمل على اللوحات التي تتمّ مشاركتها معهم.",
"Cancel edit" : "إلغاء التعديل",
"Save board" : "حفظ اللوح",
"Board details" : "تفاصيل لوح", "Board details" : "تفاصيل لوح",
"Edit board" : "تعديل اللوح", "Edit board" : "تعديل اللوح",
"Clone board" : "استنسخ اللوح", "Clone board" : "استنسخ اللوح",
@@ -343,6 +341,7 @@ OC.L10N.register(
"No due" : "غير محدد", "No due" : "غير محدد",
"Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح", "Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح",
"No results found" : "لا يتم العثور على أي نتائج ", "No results found" : "لا يتم العثور على أي نتائج ",
"This weekend {timeLocale}" : "نهاية هذا الأسبوع {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "اسم اللوحة {name} \n* آخر تعديل لها في {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "اسم اللوحة {name} \n* آخر تعديل لها في {lastMod}",
"{stack} in {board}" : "{stack} في {board}", "{stack} in {board}" : "{stack} في {board}",
"Click to expand description" : "إضعط للتوسّع في الوصف", "Click to expand description" : "إضعط للتوسّع في الوصف",
@@ -362,7 +361,6 @@ OC.L10N.register(
"upcoming cards" : "البطاقات القادمة", "upcoming cards" : "البطاقات القادمة",
"New card" : "بطاقة جديدة", "New card" : "بطاقة جديدة",
"Due on {date}" : "مطلوب في {date}", "Due on {date}" : "مطلوب في {date}",
"This weekend {timeLocale}" : "نهاية هذا الأسبوع {timeLocale}",
"Tomorrow {timeLocale}" : "غداً {timeLocale}", "Tomorrow {timeLocale}" : "غداً {timeLocale}",
"Later today {timeLocale}" : "في وقت لاحقٍ اليوم {timeLocale}", "Later today {timeLocale}" : "في وقت لاحقٍ اليوم {timeLocale}",
"Link to a board" : "ربط بلوح", "Link to a board" : "ربط بلوح",
@@ -376,9 +374,16 @@ OC.L10N.register(
"Share with a Deck card" : "مشاركة مع بطاقة Deck", "Share with a Deck card" : "مشاركة مع بطاقة Deck",
"Share {file} with a Deck card" : "مشاركة الملف {file} مع بطاقة Deck", "Share {file} with a Deck card" : "مشاركة الملف {file} مع بطاقة Deck",
"Share" : "مشاركة ", "Share" : "مشاركة ",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>وصف البطاقة</strong>داخل تطبيق Deck قد تغيرت.",
"Timeline" : "الجدول الزمني",
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة أو دائرة ..",
"Searching for users, groups and circles …" : "ابحث عن أعضاء، مجموعات أو حلقات ...", "Searching for users, groups and circles …" : "ابحث عن أعضاء، مجموعات أو حلقات ...",
"(Circle)" : "(دائرة)", "(Circle)" : "(دائرة)",
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر", "Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
"Filter by completed" : "تصفية بحسب الإنجاز" "Next week" : "الاسبوع القادم",
"Next month" : "الشهر القادم",
"List is empty" : "القائمة فارغة",
"Limit deck usage of groups" : "تقييد استخدام Deck للمجموعات",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "سيؤدي تقييد Deck إلى منع المستخدمين الذين ليسوا جزءًا من تلك المجموعات من إنشاء لوحاتهم الخاصة. سيظل المستخدمون قادرين على العمل على اللوحات التي تمت مشاركتها معهم."
}, },
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");

View File

@@ -83,14 +83,14 @@
"{user} has mentioned you in a comment on {deck-card}." : "{user} أشار إليك في تعليق على {deck-card}", "{user} has mentioned you in a comment on {deck-card}." : "{user} أشار إليك في تعليق على {deck-card}",
"The board \"%s\" has been shared with you by %s." : "تمت مشاركة اللوح \"%s\" معك من قبل %s.", "The board \"%s\" has been shared with you by %s." : "تمت مشاركة اللوح \"%s\" معك من قبل %s.",
"{user} has shared {deck-board} with you." : "{user} قام بمشاركة {deck-board} معك.", "{user} has shared {deck-board} with you." : "{user} قام بمشاركة {deck-board} معك.",
"Deck board" : "لوحة البطاقات", "Deck board" : "رُقعة اللوحات Deck board",
"Owned by %1$s" : "يملكها %1$s", "Owned by %1$s" : "يملكها %1$s",
"Deck boards, cards and comments" : "اللوحات و البطاقات و الملاحظات", "Deck boards, cards and comments" : "رُقعة اللوحات و البطاقات و الملاحظات",
"From %1$s, in %2$s/%3$s, owned by %4$s" : " من %1$s، في %2$s/%3$s، يملكها %4$s", "From %1$s, in %2$s/%3$s, owned by %4$s" : " من %1$s، في %2$s/%3$s، يملكها %4$s",
"Create a new deck card" : "إنشاء بطاقة جديدة", "Create a new deck card" : "إنشاء بطاقة deck card جديدة",
"Card comments" : "تعليقات البطاقة ", "Card comments" : "تعليقات البطاقة ",
"%s on %s" : "%s على %s", "%s on %s" : "%s على %s",
"Deck boards and cards" : "اللوحات و البطاقات", "Deck boards and cards" : "رُقَع اللوحات و البطاقات",
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق", "No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق",
"Finished" : "اكتمل", "Finished" : "اكتمل",
"To review" : "لإعادة المراجعة", "To review" : "لإعادة المراجعة",
@@ -117,8 +117,7 @@
"Path is already shared with this card" : "تم مشاركة المسار بالفعل مع هذه البطاقة ", "Path is already shared with this card" : "تم مشاركة المسار بالفعل مع هذه البطاقة ",
"Invalid date, date format must be YYYY-MM-DD" : "تاريخ غير صحيح, يجب أن يكون تنسيق التاريخ YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "تاريخ غير صحيح, يجب أن يكون تنسيق التاريخ YYYY-MM-DD",
"Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق", "Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "التطبيق \"رِزَم البطاقات\" Deck هو أداة لتنظيم المهام الشخصية و الجماعية في نكست كلاود على نمط \"خطوط التصنيع أو التجميع في المصانع\" و المعروف بـ kanban.\n\n\n- 📥 أكتب مهمتك او مهمة فريقك على بطاقة و ضع البطاقة على لوحة البطاقات من ذات التصنيف أو المرحلة من الإنجاز\n- 📄 دوّن ملاحظاتك الإضافية على البطاقة بصيغة ماركداون markdown\n- 🔖 و يمكنك أيضاً إسناد البطاقة أي المهمة إلى شخص أو أشخاص في فريقك\n- 👥 شارك البطاقة مع من ترغب من أعضاء فريقك أو عائلتك أو أصدقائك\n- 📎 إرفاق ملفات و تضمينها بصيغة ماركداون في البطاقة\n- 💬ناقش البطاقة مع زملائك في خانة الملاحظات\n- ⚡ تابع ما يُستجد من عمليات و تطوّرات على البطاقة أو المهمة\n- 🚀 حافظ على مشروعك مُنسّقاً باستمرار.", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "التطبيق \"رِزَم البطاقات\" Deck هو أداة لتنظيم المهام الشخصية و الجماعية في نكست كلاود على نمط \"خطوط التصنيع أو التجميع في المصانع\" و المعروف بـ kanban.\n\n\n- 📥 أكتب مهمتك او مهمة فريقك على بطاقة و ضع البطاقة في الرُّقعة على كدسة البطاقات من ذات التصنيف أو المرحلة من الإنجاز\n- 📄 دوّن ملاحظاتك الإضافية على البطاقة بصيغة ماركداون markdown\n- 🔖 و يمكنك أيضاً إسناد البطاقة أي المهمة إلى شخص أو أشخاص في فريقك\n- 👥 شارك البطاقة مع من ترغب من أعضاء فريقك أو عائلتك أو أصدقائك\n- 📎 إرفاق ملفات و تضمينها بصيغة ماركداون في البطاقة\n- 💬ناقش البطاقة مع زملائك في خانة الملاحظات\n- ⚡ تابع ما يُستجد من عمليات و تطوّرات على البطاقة أو المهمة\n- 🚀 حافظ على مشروعك مُنسّقاً باستمرار.",
"Card details" : "تفاصيل البطاقة",
"Add board" : "إضافة لوح", "Add board" : "إضافة لوح",
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع", "Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح", "Search by board title" : "بحث بواسطة عنوان اللوح",
@@ -148,9 +147,9 @@
"Filter by tag" : "تصفية بواسطة الوسم", "Filter by tag" : "تصفية بواسطة الوسم",
"Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه", "Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه",
"Unassigned" : "غير معيين ", "Unassigned" : "غير معيين ",
"Filter by status" : "تصفية بحسب الحالة", "Filter by completed" : "فلترة بحسب الإنجاز",
"Open and completed" : "مفتوحة و منجزة", "Open and completed" : "مفتوحة و منجزة",
"Open" : "فتح", "Open" : "إفتح",
"Completed" : "مُكتمل", "Completed" : "مُكتمل",
"Filter by due date" : "تصفية بواسطة تاريخ الإنجاز", "Filter by due date" : "تصفية بواسطة تاريخ الإنجاز",
"Overdue" : "تأخر", "Overdue" : "تأخر",
@@ -168,7 +167,7 @@
"Show card cover images" : "أظهِر صور غلاف البطاقات", "Show card cover images" : "أظهِر صور غلاف البطاقات",
"Open details" : "افتح التفاصيل", "Open details" : "افتح التفاصيل",
"Details" : "التفاصيل", "Details" : "التفاصيل",
"Currently present people" : "الأشخاص الحاضرون الآن", "Currently present people" : "أشخاص معروضون حاليّاً",
"Loading board" : "جارِ تحميل اللوح..", "Loading board" : "جارِ تحميل اللوح..",
"Board not found" : "اللوح غير موجود", "Board not found" : "اللوح غير موجود",
"Create a new list to add cards to this board" : "إنشاء قائمة جديدة لإضافة البطاقات على هذا اللوح", "Create a new list to add cards to this board" : "إنشاء قائمة جديدة لإضافة البطاقات على هذا اللوح",
@@ -180,7 +179,7 @@
"Undo" : "تراجع", "Undo" : "تراجع",
"Deleted cards" : "البطاقات المحذوفة", "Deleted cards" : "البطاقات المحذوفة",
"Share board with a user, group or team …" : "مشاركة اللوحة مع مستخدِم او مجموعة أو فريق ...", "Share board with a user, group or team …" : "مشاركة اللوحة مع مستخدِم او مجموعة أو فريق ...",
"Searching for users, groups and teams …" : "البحث عن مستخدِمين، أو مجموعات، أو فرق", "Searching for users, groups and teams …" : "البحث عن مستخدِمين، أو مجموعات، أو فِرَق",
"No participants found" : "لم يتم العثور على مشاركين", "No participants found" : "لم يتم العثور على مشاركين",
"Board owner" : "منشئ اللوح", "Board owner" : "منشئ اللوح",
"(Group)" : "(مجموعة)", "(Group)" : "(مجموعة)",
@@ -196,7 +195,7 @@
"Transfer" : "نقل", "Transfer" : "نقل",
"The board has been transferred to {user}" : "تمّ نقل اللوحة إلى {user}", "The board has been transferred to {user}" : "تمّ نقل اللوحة إلى {user}",
"Failed to transfer the board to {user}" : "تعذّر نقل اللوحة إلى {user}", "Failed to transfer the board to {user}" : "تعذّر نقل اللوحة إلى {user}",
"Edit list title" : "تعديل اسم القائمة", "Edit list title" : "عدّل اسم القائمة",
"Archive all cards" : "أرشفة جميع البطاقات ", "Archive all cards" : "أرشفة جميع البطاقات ",
"Unarchive all cards" : "تراجع عن أرشفة كل البطاقات", "Unarchive all cards" : "تراجع عن أرشفة كل البطاقات",
"Delete list" : "حذف القائمة", "Delete list" : "حذف القائمة",
@@ -210,7 +209,7 @@
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ", "title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
"Board name" : "اسم اللوح", "Board name" : "اسم اللوح",
"Members" : "الاعضاء", "Members" : "الاعضاء",
"Assign to users/groups/team" : "إسناد إلى مستخدمين/مجموعات/فرق", "Assign to users/groups/team" : "إسناد إلى مستخدِمين/مجموعات/فِرَق",
"Assign a user to this card…" : "انسب مستخدم الى هذه البطاقة..", "Assign a user to this card…" : "انسب مستخدم الى هذه البطاقة..",
"Select a user to assign to this card…" : "حدِّد مستخدِماً ليتم إسناد هذه البطاقة له...", "Select a user to assign to this card…" : "حدِّد مستخدِماً ليتم إسناد هذه البطاقة له...",
"Upload new files" : "رفع ملفات جديدة", "Upload new files" : "رفع ملفات جديدة",
@@ -252,34 +251,35 @@
"Choose attachment" : "اختيار مرفق", "Choose attachment" : "اختيار مرفق",
"Assign a due date to this card…" : "تعيين تاريخ استحقاق لهذه البطاقة...", "Assign a due date to this card…" : "تعيين تاريخ استحقاق لهذه البطاقة...",
"Set a due date" : "تعيين تاريخ الانجاز", "Set a due date" : "تعيين تاريخ الانجاز",
"Add due date" : "إضافة تاريخ الاستحقاق", "Add due date" : "أضِف تاريخ الاستحقاق",
"Choose a date" : "إختَر تاريخاً", "Choose a date" : "إختَر تاريخاً",
"Remove due date" : "ازالة تاريخ الانجاز", "Remove due date" : "ازالة تاريخ الانجاز",
"Mark as done" : "تمييز كمُنجَز",
"Due at:" : "تاريخ الاستحقاق:", "Due at:" : "تاريخ الاستحقاق:",
"Not done" : "غير مُنجَزة", "Not completed" : "غير مكتمل",
"Unarchive card" : "إلغاء أرشفة البطاقة ", "Unarchive card" : "إلغاء أرشفة البطاقة ",
"Archive card" : "أرشفة البطاقة", "Archive card" : "أرشفة البطاقة",
"Select Date" : "اختر التاريخ ", "Select Date" : "اختر التاريخ ",
"Set due date for later today" : "تعيين آخِرَ هذا اليوم كموعدٍ لاستحقاق البطاقة", "Set due date for later today" : "عيِّن آخِرَ هذا اليوم كموعدٍ لاستحقاق البطاقة",
"Set due date for tomorrow" : "تعيين يوم الغد كموعدٍ لاستحقاق البطاقة", "Set due date for tomorrow" : "عيِّن يوم الغد كموعدٍ لاستحقاق البطاقة",
"Set due date for this weekend" : "تعيين نهاية هذا الأسبوع كموعدٍ لاستحقاق البطاقة", "Set due date for this weekend" : "عيِّن نهاية هذا الأسبوع كموعدٍ لاستحقاق البطاقة",
"Set due date for next week" : "تعيين الأسبوع المُقبل كموعدٍ لاستحقاق البطاقة", "Set due date for next week" : "عيِّن الأسبوع المُقبل كموعدٍ لاستحقاق البطاقة",
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..", "Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
"Select or create a tag…" : "اختيار أو إنشاء وسم جديد...", "Select or create a tag…" : "إختَر أو أنشِئْ وسماً ...",
"Create a new tag:" : "إنشاء وسم جديد:", "Create a new tag:" : "إنشاء سِمَةٍ tag جديدة:",
"(group)" : "(مجموعة)", "(group)" : "(مجموعة)",
"Next week {timeLocale}" : "الأسبوع القادم {timeLocale}", "Next week {timeLocale}" : "الأسبوع القادم {timeLocale}",
"Todo items" : "قائمة المهام", "Todo items" : "قائمة المهام",
"{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة", "{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة",
"Edit card title" : "تعديل اسم القائمة", "Edit card title" : "تعديل اسم القائمة",
"Card details" : "تفاصيل البطاقة",
"Assign to me" : "ينسب لي", "Assign to me" : "ينسب لي",
"Unassign myself" : "إلغاء تعييني ", "Unassign myself" : "إلغاء تعييني ",
"Mark as not done" : "تمييز كـ \"غير منتهٍ\"", "Mark as not done" : "تمييز كـ \"غير منتهٍ\"",
"Mark as done" : "تمييز كمُنجَز",
"Delete card" : "حذف البطاقة", "Delete card" : "حذف البطاقة",
"Card deleted" : "البطاقة حٌذفت ", "Card deleted" : "البطاقة حٌذفت ",
"seconds ago" : "ثوانٍ مضت", "seconds ago" : "ثوانٍ مضت",
"Keyboard shortcuts" : "اختصارات لوحة المفاتيح", "Keyboard shortcuts" : "إختصارات لوحة المفاتيح",
"Boost your productivity using Deck with keyboard shortcuts." : "ضاعِف إنتاجيتك باستعمال \"رِزَم البطاقات\" Deck، و اختصارات لوحة المفاتيح ", "Boost your productivity using Deck with keyboard shortcuts." : "ضاعِف إنتاجيتك باستعمال \"رِزَم البطاقات\" Deck، و اختصارات لوحة المفاتيح ",
"Board actions" : "إجراءات اللوحة", "Board actions" : "إجراءات اللوحة",
"Keyboard shortcut" : "إختصار لوحة المفاتيح", "Keyboard shortcut" : "إختصار لوحة المفاتيح",
@@ -308,14 +308,12 @@
"All boards" : "جميع الالواح", "All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة", "Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "تم مشاركتها معك", "Shared with you" : "تم مشاركتها معك",
"Deck settings" : "إعدادات رزم البطاقات", "Deck settings" : "إعدادات رِزَمِ البطاقات",
"Use bigger card view" : "استخدام بطاقة عرض أكبر ", "Use bigger card view" : "استخدام بطاقة عرض أكبر ",
"Show card ID badge" : "أعرض شارة رقم البطاقة", "Show card ID badge" : "أعرض شارة رقم البطاقة",
"Show boards in calendar/tasks" : "إظهار اللوح في التقويم/المهام", "Show boards in calendar/tasks" : "إظهار اللوح في التقويم/المهام",
"Limit board creation to some groups" : "قَصْرُ حَقِّ إنشاء الألواح على بعض المجموعات ", "Limit board creation to some groups" : "قَصْرُ حَقِّ إنشاء الألواح على بعض المجموعات ",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "المستخدِمون من خارج تلك المجموعات لن يمكنكم إنشاء لوحاتهم الخاصة؛ لكن يمكنهم العمل على اللوحات التي تتمّ مشاركتها معهم.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "المستخدِمون من خارج تلك المجموعات لن يمكنكم إنشاء لوحاتهم الخاصة؛ لكن يمكنهم العمل على اللوحات التي تتمّ مشاركتها معهم.",
"Cancel edit" : "إلغاء التعديل",
"Save board" : "حفظ اللوح",
"Board details" : "تفاصيل لوح", "Board details" : "تفاصيل لوح",
"Edit board" : "تعديل اللوح", "Edit board" : "تعديل اللوح",
"Clone board" : "استنسخ اللوح", "Clone board" : "استنسخ اللوح",
@@ -341,6 +339,7 @@
"No due" : "غير محدد", "No due" : "غير محدد",
"Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح", "Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح",
"No results found" : "لا يتم العثور على أي نتائج ", "No results found" : "لا يتم العثور على أي نتائج ",
"This weekend {timeLocale}" : "نهاية هذا الأسبوع {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "اسم اللوحة {name} \n* آخر تعديل لها في {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "اسم اللوحة {name} \n* آخر تعديل لها في {lastMod}",
"{stack} in {board}" : "{stack} في {board}", "{stack} in {board}" : "{stack} في {board}",
"Click to expand description" : "إضعط للتوسّع في الوصف", "Click to expand description" : "إضعط للتوسّع في الوصف",
@@ -360,7 +359,6 @@
"upcoming cards" : "البطاقات القادمة", "upcoming cards" : "البطاقات القادمة",
"New card" : "بطاقة جديدة", "New card" : "بطاقة جديدة",
"Due on {date}" : "مطلوب في {date}", "Due on {date}" : "مطلوب في {date}",
"This weekend {timeLocale}" : "نهاية هذا الأسبوع {timeLocale}",
"Tomorrow {timeLocale}" : "غداً {timeLocale}", "Tomorrow {timeLocale}" : "غداً {timeLocale}",
"Later today {timeLocale}" : "في وقت لاحقٍ اليوم {timeLocale}", "Later today {timeLocale}" : "في وقت لاحقٍ اليوم {timeLocale}",
"Link to a board" : "ربط بلوح", "Link to a board" : "ربط بلوح",
@@ -374,9 +372,16 @@
"Share with a Deck card" : "مشاركة مع بطاقة Deck", "Share with a Deck card" : "مشاركة مع بطاقة Deck",
"Share {file} with a Deck card" : "مشاركة الملف {file} مع بطاقة Deck", "Share {file} with a Deck card" : "مشاركة الملف {file} مع بطاقة Deck",
"Share" : "مشاركة ", "Share" : "مشاركة ",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>وصف البطاقة</strong>داخل تطبيق Deck قد تغيرت.",
"Timeline" : "الجدول الزمني",
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة أو دائرة ..",
"Searching for users, groups and circles …" : "ابحث عن أعضاء، مجموعات أو حلقات ...", "Searching for users, groups and circles …" : "ابحث عن أعضاء، مجموعات أو حلقات ...",
"(Circle)" : "(دائرة)", "(Circle)" : "(دائرة)",
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر", "Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
"Filter by completed" : "تصفية بحسب الإنجاز" "Next week" : "الاسبوع القادم",
"Next month" : "الشهر القادم",
"List is empty" : "القائمة فارغة",
"Limit deck usage of groups" : "تقييد استخدام Deck للمجموعات",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "سيؤدي تقييد Deck إلى منع المستخدمين الذين ليسوا جزءًا من تلك المجموعات من إنشاء لوحاتهم الخاصة. سيظل المستخدمون قادرين على العمل على اللوحات التي تمت مشاركتها معهم."
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
} }

View File

@@ -83,10 +83,11 @@ OC.L10N.register(
"Formatting help" : "Ayuda del formatu", "Formatting help" : "Ayuda del formatu",
"Edit description" : "Editar la descripción", "Edit description" : "Editar la descripción",
"View description" : "Ver la descripción", "View description" : "Ver la descripción",
"Mark as done" : "Marcar como fecha", "Not completed" : "Nun se completó",
"Archive card" : "Archivar la tarxeta", "Archive card" : "Archivar la tarxeta",
"(group)" : "(grupu)", "(group)" : "(grupu)",
"Next week {timeLocale}" : "La próxima selmana {timeLocale}", "Next week {timeLocale}" : "La próxima selmana {timeLocale}",
"Mark as done" : "Marcar como fecha",
"Delete card" : "Desaniciar la tarxeta", "Delete card" : "Desaniciar la tarxeta",
"seconds ago" : "hai segundos", "seconds ago" : "hai segundos",
"Keyboard shortcuts" : "Atayos del tecláu", "Keyboard shortcuts" : "Atayos del tecláu",
@@ -95,7 +96,6 @@ OC.L10N.register(
"Ctrl" : "Ctrl", "Ctrl" : "Ctrl",
"Search" : "Guetar", "Search" : "Guetar",
"Shared with you" : "Compartióse contigo", "Shared with you" : "Compartióse contigo",
"Cancel edit" : "Anular la edición",
"All cards" : "Toles tarxetes", "All cards" : "Toles tarxetes",
"No notifications" : "Nun hai nengún avisu", "No notifications" : "Nun hai nengún avisu",
"No reminder" : "Nun hai nengún recordatoriu", "No reminder" : "Nun hai nengún recordatoriu",
@@ -103,11 +103,14 @@ OC.L10N.register(
"Today" : "Güei", "Today" : "Güei",
"Tomorrow" : "Mañana", "Tomorrow" : "Mañana",
"No results found" : "Nun s'atopó nengún resultáu", "No results found" : "Nun s'atopó nengún resultáu",
"Close" : "Zarrar",
"This weekend {timeLocale}" : "Esta fin de selmana {timeLocale}", "This weekend {timeLocale}" : "Esta fin de selmana {timeLocale}",
"Close" : "Zarrar",
"Tomorrow {timeLocale}" : "Mañana {timeLocale}", "Tomorrow {timeLocale}" : "Mañana {timeLocale}",
"Message from {author} in {conversationName}" : "Mensaxe de {author} en {conversationName}", "Message from {author} in {conversationName}" : "Mensaxe de {author} en {conversationName}",
"Error creating the share" : "Hebo un error al crear la compartición", "Error creating the share" : "Hebo un error al crear la compartición",
"Share" : "Compartir" "Share" : "Compartir",
"Timeline" : "Llinia de tiempu",
"Next week" : "La selmana que vien",
"Next month" : "Mes siguiente"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -81,10 +81,11 @@
"Formatting help" : "Ayuda del formatu", "Formatting help" : "Ayuda del formatu",
"Edit description" : "Editar la descripción", "Edit description" : "Editar la descripción",
"View description" : "Ver la descripción", "View description" : "Ver la descripción",
"Mark as done" : "Marcar como fecha", "Not completed" : "Nun se completó",
"Archive card" : "Archivar la tarxeta", "Archive card" : "Archivar la tarxeta",
"(group)" : "(grupu)", "(group)" : "(grupu)",
"Next week {timeLocale}" : "La próxima selmana {timeLocale}", "Next week {timeLocale}" : "La próxima selmana {timeLocale}",
"Mark as done" : "Marcar como fecha",
"Delete card" : "Desaniciar la tarxeta", "Delete card" : "Desaniciar la tarxeta",
"seconds ago" : "hai segundos", "seconds ago" : "hai segundos",
"Keyboard shortcuts" : "Atayos del tecláu", "Keyboard shortcuts" : "Atayos del tecláu",
@@ -93,7 +94,6 @@
"Ctrl" : "Ctrl", "Ctrl" : "Ctrl",
"Search" : "Guetar", "Search" : "Guetar",
"Shared with you" : "Compartióse contigo", "Shared with you" : "Compartióse contigo",
"Cancel edit" : "Anular la edición",
"All cards" : "Toles tarxetes", "All cards" : "Toles tarxetes",
"No notifications" : "Nun hai nengún avisu", "No notifications" : "Nun hai nengún avisu",
"No reminder" : "Nun hai nengún recordatoriu", "No reminder" : "Nun hai nengún recordatoriu",
@@ -101,11 +101,14 @@
"Today" : "Güei", "Today" : "Güei",
"Tomorrow" : "Mañana", "Tomorrow" : "Mañana",
"No results found" : "Nun s'atopó nengún resultáu", "No results found" : "Nun s'atopó nengún resultáu",
"Close" : "Zarrar",
"This weekend {timeLocale}" : "Esta fin de selmana {timeLocale}", "This weekend {timeLocale}" : "Esta fin de selmana {timeLocale}",
"Close" : "Zarrar",
"Tomorrow {timeLocale}" : "Mañana {timeLocale}", "Tomorrow {timeLocale}" : "Mañana {timeLocale}",
"Message from {author} in {conversationName}" : "Mensaxe de {author} en {conversationName}", "Message from {author} in {conversationName}" : "Mensaxe de {author} en {conversationName}",
"Error creating the share" : "Hebo un error al crear la compartición", "Error creating the share" : "Hebo un error al crear la compartición",
"Share" : "Compartir" "Share" : "Compartir",
"Timeline" : "Llinia de tiempu",
"Next week" : "La selmana que vien",
"Next month" : "Mes siguiente"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -111,7 +111,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "Невалидна дата, форматът е различен от ГГГГ-ММ-ДД", "Invalid date, date format must be YYYY-MM-DD" : "Невалидна дата, форматът е различен от ГГГГ-ММ-ДД",
"Personal planning and team project organization" : "Лично планиране и организация на екипни проекти", "Personal planning and team project organization" : "Лично планиране и организация на екипни проекти",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck е инструмент за организация в стил kanban, насочен към лично планиране и организация на проекти за екипи, интегрирани с Nextcloud.\n\n\n- 📥 Добавете задачите си към карти и ги подредете\n- 📄 Запишете допълнителни бележки в markdown формат\n- Присвояване на етикети за още по-добра организация\n- 👥 Споделете с вашия екип, приятели или семейство\n- 📎Прикачете файлове и ги вградете във вашето описание за маркиране\n- 💬Обсъдете с вашия екип, като използвате коментари\n- ⚡ Проследявайте промените в потока от дейности\n- 🚀 Организирайте проекта си", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck е инструмент за организация в стил kanban, насочен към лично планиране и организация на проекти за екипи, интегрирани с Nextcloud.\n\n\n- 📥 Добавете задачите си към карти и ги подредете\n- 📄 Запишете допълнителни бележки в markdown формат\n- Присвояване на етикети за още по-добра организация\n- 👥 Споделете с вашия екип, приятели или семейство\n- 📎Прикачете файлове и ги вградете във вашето описание за маркиране\n- 💬Обсъдете с вашия екип, като използвате коментари\n- ⚡ Проследявайте промените в потока от дейности\n- 🚀 Организирайте проекта си",
"Card details" : "Подробности за картата",
"Add board" : "Добави табло", "Add board" : "Добави табло",
"Select the board to link to a project" : "Изберете таблото, което да свържете към проект", "Select the board to link to a project" : "Изберете таблото, което да свържете към проект",
"Search by board title" : "Търсене по заглавие на таблото", "Search by board title" : "Търсене по заглавие на таблото",
@@ -234,7 +233,7 @@ OC.L10N.register(
"Choose attachment" : "Избор на прикачен файл", "Choose attachment" : "Избор на прикачен файл",
"Set a due date" : "Задаване на крайна дата", "Set a due date" : "Задаване на крайна дата",
"Remove due date" : "Премахни крайната дата", "Remove due date" : "Премахни крайната дата",
"Mark as done" : "Маркирай като готово", "Not completed" : "Незавършен",
"Unarchive card" : "Разархивиране на карта", "Unarchive card" : "Разархивиране на карта",
"Archive card" : "Архивиране на карта", "Archive card" : "Архивиране на карта",
"Select Date" : "Изберете дата", "Select Date" : "Изберете дата",
@@ -243,8 +242,10 @@ OC.L10N.register(
"Todo items" : "Елементи на задача за изпълнение", "Todo items" : "Елементи на задача за изпълнение",
"{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени", "{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени",
"Edit card title" : "Редактиране на заглавието на карта", "Edit card title" : "Редактиране на заглавието на карта",
"Card details" : "Подробности за картата",
"Assign to me" : "Зачисляване към мен", "Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен", "Unassign myself" : "Отмяна на зачисляването към мен",
"Mark as done" : "Маркирай като готово",
"Delete card" : "Изтриване на карта", "Delete card" : "Изтриване на карта",
"Card deleted" : "Картата е изтрита", "Card deleted" : "Картата е изтрита",
"seconds ago" : "преди секунди", "seconds ago" : "преди секунди",
@@ -263,7 +264,6 @@ OC.L10N.register(
"Use bigger card view" : "Използва по-голям изглед на картата", "Use bigger card view" : "Използва по-голям изглед на картата",
"Show card ID badge" : "Показване на обозначение за самоличност на картата", "Show card ID badge" : "Показване на обозначение за самоличност на картата",
"Show boards in calendar/tasks" : "Показване на таблата в календар / задачи", "Show boards in calendar/tasks" : "Показване на таблата в календар / задачи",
"Cancel edit" : "Отказ на редактиране",
"Board details" : "Подробности за табло", "Board details" : "Подробности за табло",
"Edit board" : "Редактиране на табло", "Edit board" : "Редактиране на табло",
"Clone board" : " Клониране на табло", "Clone board" : " Клониране на табло",
@@ -317,8 +317,16 @@ OC.L10N.register(
"Share with a Deck card" : "Споделяне с Deck карта", "Share with a Deck card" : "Споделяне с Deck карта",
"Share {file} with a Deck card" : "Споделяне {file} с Deck карта", "Share {file} with a Deck card" : "Споделяне {file} с Deck карта",
"Share" : "Споделяне", "Share" : "Споделяне",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Описанието на картата</strong> в приложението Deck/набор/ е променено",
"Timeline" : "Времева линия",
"Share board with a user, group or circle …" : "Споделяне на таблото с потребител, група или кръг ...",
"Searching for users, groups and circles …" : "Търсене за потребители, групи и кръгове ...", "Searching for users, groups and circles …" : "Търсене за потребители, групи и кръгове ...",
"(Circle)" : "(Кръг)", "(Circle)" : "(Кръг)",
"Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове" "Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове",
"Next week" : "Следваща седмица",
"Next month" : "Следващия месец",
"List is empty" : "Списъкът е празен",
"Limit deck usage of groups" : "Ограничава използването на набора от групи",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ограничаването на приложението Deck/набор/ ще блокира потребителите, които не са част от тези групи, да създават свои собствени табла. Потребителите все още ще могат да работят на таблата, които са споделени с тях."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -109,7 +109,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "Невалидна дата, форматът е различен от ГГГГ-ММ-ДД", "Invalid date, date format must be YYYY-MM-DD" : "Невалидна дата, форматът е различен от ГГГГ-ММ-ДД",
"Personal planning and team project organization" : "Лично планиране и организация на екипни проекти", "Personal planning and team project organization" : "Лично планиране и организация на екипни проекти",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck е инструмент за организация в стил kanban, насочен към лично планиране и организация на проекти за екипи, интегрирани с Nextcloud.\n\n\n- 📥 Добавете задачите си към карти и ги подредете\n- 📄 Запишете допълнителни бележки в markdown формат\n- Присвояване на етикети за още по-добра организация\n- 👥 Споделете с вашия екип, приятели или семейство\n- 📎Прикачете файлове и ги вградете във вашето описание за маркиране\n- 💬Обсъдете с вашия екип, като използвате коментари\n- ⚡ Проследявайте промените в потока от дейности\n- 🚀 Организирайте проекта си", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck е инструмент за организация в стил kanban, насочен към лично планиране и организация на проекти за екипи, интегрирани с Nextcloud.\n\n\n- 📥 Добавете задачите си към карти и ги подредете\n- 📄 Запишете допълнителни бележки в markdown формат\n- Присвояване на етикети за още по-добра организация\n- 👥 Споделете с вашия екип, приятели или семейство\n- 📎Прикачете файлове и ги вградете във вашето описание за маркиране\n- 💬Обсъдете с вашия екип, като използвате коментари\n- ⚡ Проследявайте промените в потока от дейности\n- 🚀 Организирайте проекта си",
"Card details" : "Подробности за картата",
"Add board" : "Добави табло", "Add board" : "Добави табло",
"Select the board to link to a project" : "Изберете таблото, което да свържете към проект", "Select the board to link to a project" : "Изберете таблото, което да свържете към проект",
"Search by board title" : "Търсене по заглавие на таблото", "Search by board title" : "Търсене по заглавие на таблото",
@@ -232,7 +231,7 @@
"Choose attachment" : "Избор на прикачен файл", "Choose attachment" : "Избор на прикачен файл",
"Set a due date" : "Задаване на крайна дата", "Set a due date" : "Задаване на крайна дата",
"Remove due date" : "Премахни крайната дата", "Remove due date" : "Премахни крайната дата",
"Mark as done" : "Маркирай като готово", "Not completed" : "Незавършен",
"Unarchive card" : "Разархивиране на карта", "Unarchive card" : "Разархивиране на карта",
"Archive card" : "Архивиране на карта", "Archive card" : "Архивиране на карта",
"Select Date" : "Изберете дата", "Select Date" : "Изберете дата",
@@ -241,8 +240,10 @@
"Todo items" : "Елементи на задача за изпълнение", "Todo items" : "Елементи на задача за изпълнение",
"{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени", "{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени",
"Edit card title" : "Редактиране на заглавието на карта", "Edit card title" : "Редактиране на заглавието на карта",
"Card details" : "Подробности за картата",
"Assign to me" : "Зачисляване към мен", "Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен", "Unassign myself" : "Отмяна на зачисляването към мен",
"Mark as done" : "Маркирай като готово",
"Delete card" : "Изтриване на карта", "Delete card" : "Изтриване на карта",
"Card deleted" : "Картата е изтрита", "Card deleted" : "Картата е изтрита",
"seconds ago" : "преди секунди", "seconds ago" : "преди секунди",
@@ -261,7 +262,6 @@
"Use bigger card view" : "Използва по-голям изглед на картата", "Use bigger card view" : "Използва по-голям изглед на картата",
"Show card ID badge" : "Показване на обозначение за самоличност на картата", "Show card ID badge" : "Показване на обозначение за самоличност на картата",
"Show boards in calendar/tasks" : "Показване на таблата в календар / задачи", "Show boards in calendar/tasks" : "Показване на таблата в календар / задачи",
"Cancel edit" : "Отказ на редактиране",
"Board details" : "Подробности за табло", "Board details" : "Подробности за табло",
"Edit board" : "Редактиране на табло", "Edit board" : "Редактиране на табло",
"Clone board" : " Клониране на табло", "Clone board" : " Клониране на табло",
@@ -315,8 +315,16 @@
"Share with a Deck card" : "Споделяне с Deck карта", "Share with a Deck card" : "Споделяне с Deck карта",
"Share {file} with a Deck card" : "Споделяне {file} с Deck карта", "Share {file} with a Deck card" : "Споделяне {file} с Deck карта",
"Share" : "Споделяне", "Share" : "Споделяне",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Описанието на картата</strong> в приложението Deck/набор/ е променено",
"Timeline" : "Времева линия",
"Share board with a user, group or circle …" : "Споделяне на таблото с потребител, група или кръг ...",
"Searching for users, groups and circles …" : "Търсене за потребители, групи и кръгове ...", "Searching for users, groups and circles …" : "Търсене за потребители, групи и кръгове ...",
"(Circle)" : "(Кръг)", "(Circle)" : "(Кръг)",
"Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове" "Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове",
"Next week" : "Следваща седмица",
"Next month" : "Следващия месец",
"List is empty" : "Списъкът е празен",
"Limit deck usage of groups" : "Ограничава използването на набора от групи",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ограничаването на приложението Deck/набор/ ще блокира потребителите, които не са част от тези групи, да създават свои собствени табла. Потребителите все още ще могат да работят на таблата, които са споделени с тях."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -29,7 +29,6 @@ OC.L10N.register(
"Invalid path selected" : "An hent dibabet n'eus ket anezhañ", "Invalid path selected" : "An hent dibabet n'eus ket anezhañ",
"Comments" : "Displegadennoù", "Comments" : "Displegadennoù",
"Modified" : "Cheñchet", "Modified" : "Cheñchet",
"Created" : "Krouet",
"Save" : "Enrollañ", "Save" : "Enrollañ",
"Reply" : "Respont", "Reply" : "Respont",
"Update" : "Adnevesaat", "Update" : "Adnevesaat",
@@ -39,10 +38,12 @@ OC.L10N.register(
"seconds ago" : "eilenn zo", "seconds ago" : "eilenn zo",
"Search" : "Klask", "Search" : "Klask",
"Shared with you" : "Rannet ganeoc'h", "Shared with you" : "Rannet ganeoc'h",
"No notifications" : "Kemennadenn ebet", "No notifications" : "Kemenaden ebet",
"Today" : "Hiziv", "Today" : "Hiziv",
"Tomorrow" : "Warc'hoaz", "Tomorrow" : "Warc'hoaz",
"Close" : "Seriñ", "Close" : "Seriñ",
"Share" : "Rannan" "Share" : "Rannan",
"Next week" : "Sizhun a zeu",
"Next month" : "Miz a zeu"
}, },
"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"); "nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);");

View File

@@ -27,7 +27,6 @@
"Invalid path selected" : "An hent dibabet n'eus ket anezhañ", "Invalid path selected" : "An hent dibabet n'eus ket anezhañ",
"Comments" : "Displegadennoù", "Comments" : "Displegadennoù",
"Modified" : "Cheñchet", "Modified" : "Cheñchet",
"Created" : "Krouet",
"Save" : "Enrollañ", "Save" : "Enrollañ",
"Reply" : "Respont", "Reply" : "Respont",
"Update" : "Adnevesaat", "Update" : "Adnevesaat",
@@ -37,10 +36,12 @@
"seconds ago" : "eilenn zo", "seconds ago" : "eilenn zo",
"Search" : "Klask", "Search" : "Klask",
"Shared with you" : "Rannet ganeoc'h", "Shared with you" : "Rannet ganeoc'h",
"No notifications" : "Kemennadenn ebet", "No notifications" : "Kemenaden ebet",
"Today" : "Hiziv", "Today" : "Hiziv",
"Tomorrow" : "Warc'hoaz", "Tomorrow" : "Warc'hoaz",
"Close" : "Seriñ", "Close" : "Seriñ",
"Share" : "Rannan" "Share" : "Rannan",
"Next week" : "Sizhun a zeu",
"Next month" : "Miz a zeu"
},"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);" },"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"
} }

View File

@@ -120,7 +120,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "La data no és vàlida, el format de la data ha de ser YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "La data no és vàlida, el format de la data ha de ser YYYY-MM-DD",
"Personal planning and team project organization" : "Planificació personal i organització de projectes en equip", "Personal planning and team project organization" : "Planificació personal i organització de projectes en equip",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en format Markdown\n- 🔖 Assigneu etiquetes per una millor organització\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Converses amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en format Markdown\n- 🔖 Assigneu etiquetes per una millor organització\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Converses amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat",
"Card details" : "Detalls de la targeta",
"Add board" : "Afegeix un tauler", "Add board" : "Afegeix un tauler",
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte", "Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Search by board title" : "Cerca per títol del tauler", "Search by board title" : "Cerca per títol del tauler",
@@ -250,9 +249,8 @@ OC.L10N.register(
"Add due date" : "Afegeix una data de caducitat", "Add due date" : "Afegeix una data de caducitat",
"Choose a date" : "Trieu una data", "Choose a date" : "Trieu una data",
"Remove due date" : "Suprimeix la data de caducitat", "Remove due date" : "Suprimeix la data de caducitat",
"Mark as done" : "Marcat com a fet",
"Due at:" : "Venciment a:", "Due at:" : "Venciment a:",
"Not done" : "No s'ha fet", "Not completed" : "No completat",
"Unarchive card" : "Desarxiva targeta", "Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta", "Archive card" : "Arxiva la targeta",
"Select Date" : "Selecciona la data", "Select Date" : "Selecciona la data",
@@ -267,9 +265,11 @@ OC.L10N.register(
"Todo items" : "Tasques pendents", "Todo items" : "Tasques pendents",
"{count} comments, {unread} unread" : "{count} comentaris, {unread} no llegits", "{count} comments, {unread} unread" : "{count} comentaris, {unread} no llegits",
"Edit card title" : "Edició del títol de la targeta", "Edit card title" : "Edició del títol de la targeta",
"Card details" : "Detalls de la targeta",
"Assign to me" : "Assigna'm a mi", "Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix", "Unassign myself" : "Desasignar a mi mateix",
"Mark as not done" : "Marca com no fet", "Mark as not done" : "Marca com no fet",
"Mark as done" : "Marcat com a fet",
"Delete card" : "Suprimeix targeta", "Delete card" : "Suprimeix targeta",
"Card deleted" : "Targeta suprimida", "Card deleted" : "Targeta suprimida",
"seconds ago" : "fa uns segons", "seconds ago" : "fa uns segons",
@@ -307,7 +307,6 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques", "Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
"Limit board creation to some groups" : "Limiteu la creació de taulers a alguns grups", "Limit board creation to some groups" : "Limiteu la creació de taulers a alguns grups",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Els usuaris fora d'aquests grups no podran crear els seus propis taulers, però encara podran treballar en taulers que s'hagin compartit amb ells.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Els usuaris fora d'aquests grups no podran crear els seus propis taulers, però encara podran treballar en taulers que s'hagin compartit amb ells.",
"Cancel edit" : "Cancel·la l'edició",
"Board details" : "Detalls del tauler", "Board details" : "Detalls del tauler",
"Edit board" : "Edita el tauler", "Edit board" : "Edita el tauler",
"Clone board" : "Clonar tauler", "Clone board" : "Clonar tauler",
@@ -333,6 +332,7 @@ OC.L10N.register(
"No due" : "Sense venciment", "No due" : "Sense venciment",
"Search for {searchQuery} in all boards" : "Busca {searchQuery} a tots els taulers", "Search for {searchQuery} in all boards" : "Busca {searchQuery} a tots els taulers",
"No results found" : "No s'han trobat resultats", "No results found" : "No s'han trobat resultats",
"This weekend {timeLocale}" : "Aquest cap de setmana: {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Tauler de piles {name}\n* Última modificació el dia {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Tauler de piles {name}\n* Última modificació el dia {lastMod}",
"{stack} in {board}" : "{stack} a {board}", "{stack} in {board}" : "{stack} a {board}",
"Click to expand description" : "Feu clic per ampliar la descripció", "Click to expand description" : "Feu clic per ampliar la descripció",
@@ -352,7 +352,6 @@ OC.L10N.register(
"upcoming cards" : "pròximes targetes", "upcoming cards" : "pròximes targetes",
"New card" : "Nova targeta", "New card" : "Nova targeta",
"Due on {date}" : "Venciment el dia {date}", "Due on {date}" : "Venciment el dia {date}",
"This weekend {timeLocale}" : "Aquest cap de setmana: {timeLocale}",
"Tomorrow {timeLocale}" : "Demà: {timeLocale}", "Tomorrow {timeLocale}" : "Demà: {timeLocale}",
"Later today {timeLocale}" : "Avui més tard: {timeLocale}", "Later today {timeLocale}" : "Avui més tard: {timeLocale}",
"Link to a board" : "Enllaça a un tauler", "Link to a board" : "Enllaça a un tauler",
@@ -366,8 +365,16 @@ OC.L10N.register(
"Share with a Deck card" : "Compartir amb una targeta de Deck", "Share with a Deck card" : "Compartir amb una targeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} amb una targeta de Deck", "Share {file} with a Deck card" : "Compartir {file} amb una targeta de Deck",
"Share" : "Compartir", "Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "S'ha canviat una <strong>descripció de targeta</strong> a l'aplicació Tauler",
"Timeline" : "Línia de temps",
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
"Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles …", "Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles …",
"(Circle)" : "(Cercle)", "(Circle)" : "(Cercle)",
"Assign to users/groups/circles" : "Assignació a usuaris/grups/cercles" "Assign to users/groups/circles" : "Assignació a usuaris/grups/cercles",
"Next week" : "Setmana següent",
"Next month" : "Mes següent",
"List is empty" : "La llista és buida",
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -118,7 +118,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "La data no és vàlida, el format de la data ha de ser YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "La data no és vàlida, el format de la data ha de ser YYYY-MM-DD",
"Personal planning and team project organization" : "Planificació personal i organització de projectes en equip", "Personal planning and team project organization" : "Planificació personal i organització de projectes en equip",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en format Markdown\n- 🔖 Assigneu etiquetes per una millor organització\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Converses amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en format Markdown\n- 🔖 Assigneu etiquetes per una millor organització\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Converses amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat",
"Card details" : "Detalls de la targeta",
"Add board" : "Afegeix un tauler", "Add board" : "Afegeix un tauler",
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte", "Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Search by board title" : "Cerca per títol del tauler", "Search by board title" : "Cerca per títol del tauler",
@@ -248,9 +247,8 @@
"Add due date" : "Afegeix una data de caducitat", "Add due date" : "Afegeix una data de caducitat",
"Choose a date" : "Trieu una data", "Choose a date" : "Trieu una data",
"Remove due date" : "Suprimeix la data de caducitat", "Remove due date" : "Suprimeix la data de caducitat",
"Mark as done" : "Marcat com a fet",
"Due at:" : "Venciment a:", "Due at:" : "Venciment a:",
"Not done" : "No s'ha fet", "Not completed" : "No completat",
"Unarchive card" : "Desarxiva targeta", "Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta", "Archive card" : "Arxiva la targeta",
"Select Date" : "Selecciona la data", "Select Date" : "Selecciona la data",
@@ -265,9 +263,11 @@
"Todo items" : "Tasques pendents", "Todo items" : "Tasques pendents",
"{count} comments, {unread} unread" : "{count} comentaris, {unread} no llegits", "{count} comments, {unread} unread" : "{count} comentaris, {unread} no llegits",
"Edit card title" : "Edició del títol de la targeta", "Edit card title" : "Edició del títol de la targeta",
"Card details" : "Detalls de la targeta",
"Assign to me" : "Assigna'm a mi", "Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix", "Unassign myself" : "Desasignar a mi mateix",
"Mark as not done" : "Marca com no fet", "Mark as not done" : "Marca com no fet",
"Mark as done" : "Marcat com a fet",
"Delete card" : "Suprimeix targeta", "Delete card" : "Suprimeix targeta",
"Card deleted" : "Targeta suprimida", "Card deleted" : "Targeta suprimida",
"seconds ago" : "fa uns segons", "seconds ago" : "fa uns segons",
@@ -305,7 +305,6 @@
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques", "Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
"Limit board creation to some groups" : "Limiteu la creació de taulers a alguns grups", "Limit board creation to some groups" : "Limiteu la creació de taulers a alguns grups",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Els usuaris fora d'aquests grups no podran crear els seus propis taulers, però encara podran treballar en taulers que s'hagin compartit amb ells.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Els usuaris fora d'aquests grups no podran crear els seus propis taulers, però encara podran treballar en taulers que s'hagin compartit amb ells.",
"Cancel edit" : "Cancel·la l'edició",
"Board details" : "Detalls del tauler", "Board details" : "Detalls del tauler",
"Edit board" : "Edita el tauler", "Edit board" : "Edita el tauler",
"Clone board" : "Clonar tauler", "Clone board" : "Clonar tauler",
@@ -331,6 +330,7 @@
"No due" : "Sense venciment", "No due" : "Sense venciment",
"Search for {searchQuery} in all boards" : "Busca {searchQuery} a tots els taulers", "Search for {searchQuery} in all boards" : "Busca {searchQuery} a tots els taulers",
"No results found" : "No s'han trobat resultats", "No results found" : "No s'han trobat resultats",
"This weekend {timeLocale}" : "Aquest cap de setmana: {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Tauler de piles {name}\n* Última modificació el dia {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Tauler de piles {name}\n* Última modificació el dia {lastMod}",
"{stack} in {board}" : "{stack} a {board}", "{stack} in {board}" : "{stack} a {board}",
"Click to expand description" : "Feu clic per ampliar la descripció", "Click to expand description" : "Feu clic per ampliar la descripció",
@@ -350,7 +350,6 @@
"upcoming cards" : "pròximes targetes", "upcoming cards" : "pròximes targetes",
"New card" : "Nova targeta", "New card" : "Nova targeta",
"Due on {date}" : "Venciment el dia {date}", "Due on {date}" : "Venciment el dia {date}",
"This weekend {timeLocale}" : "Aquest cap de setmana: {timeLocale}",
"Tomorrow {timeLocale}" : "Demà: {timeLocale}", "Tomorrow {timeLocale}" : "Demà: {timeLocale}",
"Later today {timeLocale}" : "Avui més tard: {timeLocale}", "Later today {timeLocale}" : "Avui més tard: {timeLocale}",
"Link to a board" : "Enllaça a un tauler", "Link to a board" : "Enllaça a un tauler",
@@ -364,8 +363,16 @@
"Share with a Deck card" : "Compartir amb una targeta de Deck", "Share with a Deck card" : "Compartir amb una targeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} amb una targeta de Deck", "Share {file} with a Deck card" : "Compartir {file} amb una targeta de Deck",
"Share" : "Compartir", "Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "S'ha canviat una <strong>descripció de targeta</strong> a l'aplicació Tauler",
"Timeline" : "Línia de temps",
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
"Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles …", "Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles …",
"(Circle)" : "(Cercle)", "(Circle)" : "(Cercle)",
"Assign to users/groups/circles" : "Assignació a usuaris/grups/cercles" "Assign to users/groups/circles" : "Assignació a usuaris/grups/cercles",
"Next week" : "Setmana següent",
"Next month" : "Mes següent",
"List is empty" : "La llista és buida",
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -120,7 +120,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum je třeba, aby formát data byl RRRR-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum je třeba, aby formát data byl RRRR-MM-DD",
"Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu", "Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, napojený do Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky (v Markdown) \n- 🔖 Přiřazujte štítky pro ještě lepší uspořádání\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 📎 Připojte soubory a vložte je do (Markdown) popisu \n- 💬 Diskutujte se svým týmem prostřednictvím komentářů\n- ⚡ Udržte si přehled o změnách prostřednictvím sledování proudu aktivit\n- 🚀 Dostaňte svůj projekt pod kontrolu", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, napojený do Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky (v Markdown) \n- 🔖 Přiřazujte štítky pro ještě lepší uspořádání\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 📎 Připojte soubory a vložte je do (Markdown) popisu \n- 💬 Diskutujte se svým týmem prostřednictvím komentářů\n- ⚡ Udržte si přehled o změnách prostřednictvím sledování proudu aktivit\n- 🚀 Dostaňte svůj projekt pod kontrolu",
"Card details" : "Podrobnosti o kartě",
"Add board" : "Přidat tabuli", "Add board" : "Přidat tabuli",
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem", "Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem",
"Search by board title" : "Hledat podle názvu tabule", "Search by board title" : "Hledat podle názvu tabule",
@@ -150,8 +149,6 @@ OC.L10N.register(
"Filter by tag" : "Filtrovat podle štítku", "Filter by tag" : "Filtrovat podle štítku",
"Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen", "Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen",
"Unassigned" : "Nepřiřazeno", "Unassigned" : "Nepřiřazeno",
"Filter by status" : "Filtrovat podle stavu",
"Open and completed" : "Otevřít a dokončeno",
"Open" : "Otevřít", "Open" : "Otevřít",
"Completed" : "Dokončeno", "Completed" : "Dokončeno",
"Filter by due date" : "Filtrovat podle termínu", "Filter by due date" : "Filtrovat podle termínu",
@@ -181,12 +178,9 @@ OC.L10N.register(
"Deleted lists" : "Smazané seznamy", "Deleted lists" : "Smazané seznamy",
"Undo" : "Vrátit zpět", "Undo" : "Vrátit zpět",
"Deleted cards" : "Smazané karty", "Deleted cards" : "Smazané karty",
"Share board with a user, group or team …" : "Sdílet tabuli s uživatelem, skupinou nebo týmem…",
"Searching for users, groups and teams …" : "Hledání v uživatelích, skupinách a týmech…",
"No participants found" : "Nenalezeni žádní účastníci", "No participants found" : "Nenalezeni žádní účastníci",
"Board owner" : "Vlastník tabule", "Board owner" : "Vlastník tabule",
"(Group)" : "(Skupina)", "(Group)" : "(Skupina)",
"(Team)" : "(Tým)",
"Can edit" : "Může upravovat", "Can edit" : "Může upravovat",
"Can share" : "Může sdílet", "Can share" : "Může sdílet",
"Can manage" : "Může spravovat", "Can manage" : "Může spravovat",
@@ -212,9 +206,7 @@ OC.L10N.register(
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu", "title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
"Board name" : "Název tabule", "Board name" : "Název tabule",
"Members" : "Členové", "Members" : "Členové",
"Assign to users/groups/team" : "Přiřadit uživatelům/skupinám/týmům",
"Assign a user to this card…" : "Přiřadit uživatele k této kartě…", "Assign a user to this card…" : "Přiřadit uživatele k této kartě…",
"Select a user to assign to this card…" : "Vyberte uživatele, kterému tuto kartu přiřadit…",
"Upload new files" : "Nahrát nové soubory", "Upload new files" : "Nahrát nové soubory",
"Share from Files" : "Sdílet ze Souborů", "Share from Files" : "Sdílet ze Souborů",
"Pending share" : "Čekající sdílení", "Pending share" : "Čekající sdílení",
@@ -257,9 +249,8 @@ OC.L10N.register(
"Add due date" : "Přidat termín", "Add due date" : "Přidat termín",
"Choose a date" : "Zvolit datum", "Choose a date" : "Zvolit datum",
"Remove due date" : "Odstranit termín", "Remove due date" : "Odstranit termín",
"Mark as done" : "Označit jako hotové",
"Due at:" : "Termín v:", "Due at:" : "Termín v:",
"Not done" : "Nehotové", "Not completed" : "Nedokončeno",
"Unarchive card" : "Zrušit archivaci karty", "Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu", "Archive card" : "Archivovat kartu",
"Select Date" : "Vybrat datum", "Select Date" : "Vybrat datum",
@@ -268,29 +259,26 @@ OC.L10N.register(
"Set due date for this weekend" : "Nastavit termín na tento týden", "Set due date for this weekend" : "Nastavit termín na tento týden",
"Set due date for next week" : "Nastavit termín na příští týden", "Set due date for next week" : "Nastavit termín na příští týden",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…", "Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Select or create a tag…" : "Vyberte nebo vytvořte štítek…",
"Create a new tag:" : "Vytvořit nový štítek:", "Create a new tag:" : "Vytvořit nový štítek:",
"(group)" : "(skupina)", "(group)" : "(skupina)",
"Next week {timeLocale}" : "Příští týden {timeLocale}", "Next week {timeLocale}" : "Příští týden {timeLocale}",
"Todo items" : "Položky k udělání", "Todo items" : "Položky k udělání",
"{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených", "{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených",
"Edit card title" : "Upravit nadpis karty", "Edit card title" : "Upravit nadpis karty",
"Card details" : "Podrobnosti o kartě",
"Assign to me" : "Přiřadit mě", "Assign to me" : "Přiřadit mě",
"Unassign myself" : "Zrušit přiřazení sobě", "Unassign myself" : "Zrušit přiřazení sobě",
"Mark as not done" : "Označit jako nehotové", "Mark as not done" : "Označit jako nehotové",
"Mark as done" : "Označit jako hotové",
"Delete card" : "Smazat kartu", "Delete card" : "Smazat kartu",
"Card deleted" : "Karta smazána", "Card deleted" : "Karta smazána",
"seconds ago" : "před několika sekundami", "seconds ago" : "před několika sekundami",
"Keyboard shortcuts" : "Klávesové zkratky", "Keyboard shortcuts" : "Klávesové zkratky",
"Boost your productivity using Deck with keyboard shortcuts." : "Zvyšte svou produktivitu tím, že budete v Deck používat klávesové zkratky.",
"Board actions" : "Akce ohledně tabule", "Board actions" : "Akce ohledně tabule",
"Keyboard shortcut" : "Klávesová zkratka", "Keyboard shortcut" : "Klávesová zkratka",
"Action" : "Akce", "Action" : "Akce",
"Shift" : "Shift", "Shift" : "Shift",
"Scroll" : "Posunout",
"Scroll sideways" : "Posunout na strany",
"Navigate between cards" : "Pohyb mezi kartami", "Navigate between cards" : "Pohyb mezi kartami",
"Esc" : "Esc",
"Close card details" : "Zavřít podrobnosti o kartě", "Close card details" : "Zavřít podrobnosti o kartě",
"Ctrl" : "Ctrl", "Ctrl" : "Ctrl",
"Search" : "Hledat", "Search" : "Hledat",
@@ -316,8 +304,6 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech", "Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech",
"Limit board creation to some groups" : "Umožnit vytváření tabulí pouze vybraným skupinám", "Limit board creation to some groups" : "Umožnit vytváření tabulí pouze vybraným skupinám",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Uživatelé, kteří nejsou členy těchto skupin nebudou moci vytvářet své vlastní tabule, ale pořád budou moci pracovat na tabulích, které jim byly nasdíleny.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Uživatelé, kteří nejsou členy těchto skupin nebudou moci vytvářet své vlastní tabule, ale pořád budou moci pracovat na tabulích, které jim byly nasdíleny.",
"Cancel edit" : "Zrušit úpravu",
"Save board" : "Uložit tabuli",
"Board details" : "Podrobnosti o tabuli", "Board details" : "Podrobnosti o tabuli",
"Edit board" : "Upravit tabuli", "Edit board" : "Upravit tabuli",
"Clone board" : "Klonovat tabuli", "Clone board" : "Klonovat tabuli",
@@ -343,6 +329,7 @@ OC.L10N.register(
"No due" : "Žádný termín", "No due" : "Žádný termín",
"Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích", "Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích",
"No results found" : "Nenalezeny žádné výsledky", "No results found" : "Nenalezeny žádné výsledky",
"This weekend {timeLocale}" : "Tento víkend {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck karta {name}\n* Naposledy změněno {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Deck karta {name}\n* Naposledy změněno {lastMod}",
"{stack} in {board}" : "{stack} v {board}", "{stack} in {board}" : "{stack} v {board}",
"Click to expand description" : "Popis rozbalíte kliknutím", "Click to expand description" : "Popis rozbalíte kliknutím",
@@ -362,7 +349,6 @@ OC.L10N.register(
"upcoming cards" : "nadcházející karty", "upcoming cards" : "nadcházející karty",
"New card" : "Nová karta", "New card" : "Nová karta",
"Due on {date}" : "Termín {date}", "Due on {date}" : "Termín {date}",
"This weekend {timeLocale}" : "Tento víkend {timeLocale}",
"Tomorrow {timeLocale}" : "Zítra {timeLocale}", "Tomorrow {timeLocale}" : "Zítra {timeLocale}",
"Later today {timeLocale}" : "Později dnes {timeLocale}", "Later today {timeLocale}" : "Později dnes {timeLocale}",
"Link to a board" : "Propojit s tabulí", "Link to a board" : "Propojit s tabulí",
@@ -376,9 +362,16 @@ OC.L10N.register(
"Share with a Deck card" : "Sdílet s kartou aplikace Deck", "Share with a Deck card" : "Sdílet s kartou aplikace Deck",
"Share {file} with a Deck card" : "Sdílet {file} s kartou aplikace Deck", "Share {file} with a Deck card" : "Sdílet {file} s kartou aplikace Deck",
"Share" : "Sdílet", "Share" : "Sdílet",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Popis karty</strong> v aplikaci Deck byl změněn",
"Timeline" : "Časová osa",
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
"Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…", "Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…",
"(Circle)" : "(Okruh)", "(Circle)" : "(Okruh)",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům", "Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
"Filter by completed" : "Filtrovat podle dokončených" "Next week" : "Příští týden",
"Next month" : "Příští měsíc",
"List is empty" : "Seznam je prázdný",
"Limit deck usage of groups" : "Omezit využití deck na skupiny",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny."
}, },
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");

View File

@@ -118,7 +118,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum je třeba, aby formát data byl RRRR-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum je třeba, aby formát data byl RRRR-MM-DD",
"Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu", "Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, napojený do Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky (v Markdown) \n- 🔖 Přiřazujte štítky pro ještě lepší uspořádání\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 📎 Připojte soubory a vložte je do (Markdown) popisu \n- 💬 Diskutujte se svým týmem prostřednictvím komentářů\n- ⚡ Udržte si přehled o změnách prostřednictvím sledování proudu aktivit\n- 🚀 Dostaňte svůj projekt pod kontrolu", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, napojený do Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky (v Markdown) \n- 🔖 Přiřazujte štítky pro ještě lepší uspořádání\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 📎 Připojte soubory a vložte je do (Markdown) popisu \n- 💬 Diskutujte se svým týmem prostřednictvím komentářů\n- ⚡ Udržte si přehled o změnách prostřednictvím sledování proudu aktivit\n- 🚀 Dostaňte svůj projekt pod kontrolu",
"Card details" : "Podrobnosti o kartě",
"Add board" : "Přidat tabuli", "Add board" : "Přidat tabuli",
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem", "Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem",
"Search by board title" : "Hledat podle názvu tabule", "Search by board title" : "Hledat podle názvu tabule",
@@ -148,8 +147,6 @@
"Filter by tag" : "Filtrovat podle štítku", "Filter by tag" : "Filtrovat podle štítku",
"Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen", "Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen",
"Unassigned" : "Nepřiřazeno", "Unassigned" : "Nepřiřazeno",
"Filter by status" : "Filtrovat podle stavu",
"Open and completed" : "Otevřít a dokončeno",
"Open" : "Otevřít", "Open" : "Otevřít",
"Completed" : "Dokončeno", "Completed" : "Dokončeno",
"Filter by due date" : "Filtrovat podle termínu", "Filter by due date" : "Filtrovat podle termínu",
@@ -179,12 +176,9 @@
"Deleted lists" : "Smazané seznamy", "Deleted lists" : "Smazané seznamy",
"Undo" : "Vrátit zpět", "Undo" : "Vrátit zpět",
"Deleted cards" : "Smazané karty", "Deleted cards" : "Smazané karty",
"Share board with a user, group or team …" : "Sdílet tabuli s uživatelem, skupinou nebo týmem…",
"Searching for users, groups and teams …" : "Hledání v uživatelích, skupinách a týmech…",
"No participants found" : "Nenalezeni žádní účastníci", "No participants found" : "Nenalezeni žádní účastníci",
"Board owner" : "Vlastník tabule", "Board owner" : "Vlastník tabule",
"(Group)" : "(Skupina)", "(Group)" : "(Skupina)",
"(Team)" : "(Tým)",
"Can edit" : "Může upravovat", "Can edit" : "Může upravovat",
"Can share" : "Může sdílet", "Can share" : "Může sdílet",
"Can manage" : "Může spravovat", "Can manage" : "Může spravovat",
@@ -210,9 +204,7 @@
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu", "title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
"Board name" : "Název tabule", "Board name" : "Název tabule",
"Members" : "Členové", "Members" : "Členové",
"Assign to users/groups/team" : "Přiřadit uživatelům/skupinám/týmům",
"Assign a user to this card…" : "Přiřadit uživatele k této kartě…", "Assign a user to this card…" : "Přiřadit uživatele k této kartě…",
"Select a user to assign to this card…" : "Vyberte uživatele, kterému tuto kartu přiřadit…",
"Upload new files" : "Nahrát nové soubory", "Upload new files" : "Nahrát nové soubory",
"Share from Files" : "Sdílet ze Souborů", "Share from Files" : "Sdílet ze Souborů",
"Pending share" : "Čekající sdílení", "Pending share" : "Čekající sdílení",
@@ -255,9 +247,8 @@
"Add due date" : "Přidat termín", "Add due date" : "Přidat termín",
"Choose a date" : "Zvolit datum", "Choose a date" : "Zvolit datum",
"Remove due date" : "Odstranit termín", "Remove due date" : "Odstranit termín",
"Mark as done" : "Označit jako hotové",
"Due at:" : "Termín v:", "Due at:" : "Termín v:",
"Not done" : "Nehotové", "Not completed" : "Nedokončeno",
"Unarchive card" : "Zrušit archivaci karty", "Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu", "Archive card" : "Archivovat kartu",
"Select Date" : "Vybrat datum", "Select Date" : "Vybrat datum",
@@ -266,29 +257,26 @@
"Set due date for this weekend" : "Nastavit termín na tento týden", "Set due date for this weekend" : "Nastavit termín na tento týden",
"Set due date for next week" : "Nastavit termín na příští týden", "Set due date for next week" : "Nastavit termín na příští týden",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…", "Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Select or create a tag…" : "Vyberte nebo vytvořte štítek…",
"Create a new tag:" : "Vytvořit nový štítek:", "Create a new tag:" : "Vytvořit nový štítek:",
"(group)" : "(skupina)", "(group)" : "(skupina)",
"Next week {timeLocale}" : "Příští týden {timeLocale}", "Next week {timeLocale}" : "Příští týden {timeLocale}",
"Todo items" : "Položky k udělání", "Todo items" : "Položky k udělání",
"{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených", "{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených",
"Edit card title" : "Upravit nadpis karty", "Edit card title" : "Upravit nadpis karty",
"Card details" : "Podrobnosti o kartě",
"Assign to me" : "Přiřadit mě", "Assign to me" : "Přiřadit mě",
"Unassign myself" : "Zrušit přiřazení sobě", "Unassign myself" : "Zrušit přiřazení sobě",
"Mark as not done" : "Označit jako nehotové", "Mark as not done" : "Označit jako nehotové",
"Mark as done" : "Označit jako hotové",
"Delete card" : "Smazat kartu", "Delete card" : "Smazat kartu",
"Card deleted" : "Karta smazána", "Card deleted" : "Karta smazána",
"seconds ago" : "před několika sekundami", "seconds ago" : "před několika sekundami",
"Keyboard shortcuts" : "Klávesové zkratky", "Keyboard shortcuts" : "Klávesové zkratky",
"Boost your productivity using Deck with keyboard shortcuts." : "Zvyšte svou produktivitu tím, že budete v Deck používat klávesové zkratky.",
"Board actions" : "Akce ohledně tabule", "Board actions" : "Akce ohledně tabule",
"Keyboard shortcut" : "Klávesová zkratka", "Keyboard shortcut" : "Klávesová zkratka",
"Action" : "Akce", "Action" : "Akce",
"Shift" : "Shift", "Shift" : "Shift",
"Scroll" : "Posunout",
"Scroll sideways" : "Posunout na strany",
"Navigate between cards" : "Pohyb mezi kartami", "Navigate between cards" : "Pohyb mezi kartami",
"Esc" : "Esc",
"Close card details" : "Zavřít podrobnosti o kartě", "Close card details" : "Zavřít podrobnosti o kartě",
"Ctrl" : "Ctrl", "Ctrl" : "Ctrl",
"Search" : "Hledat", "Search" : "Hledat",
@@ -314,8 +302,6 @@
"Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech", "Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech",
"Limit board creation to some groups" : "Umožnit vytváření tabulí pouze vybraným skupinám", "Limit board creation to some groups" : "Umožnit vytváření tabulí pouze vybraným skupinám",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Uživatelé, kteří nejsou členy těchto skupin nebudou moci vytvářet své vlastní tabule, ale pořád budou moci pracovat na tabulích, které jim byly nasdíleny.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Uživatelé, kteří nejsou členy těchto skupin nebudou moci vytvářet své vlastní tabule, ale pořád budou moci pracovat na tabulích, které jim byly nasdíleny.",
"Cancel edit" : "Zrušit úpravu",
"Save board" : "Uložit tabuli",
"Board details" : "Podrobnosti o tabuli", "Board details" : "Podrobnosti o tabuli",
"Edit board" : "Upravit tabuli", "Edit board" : "Upravit tabuli",
"Clone board" : "Klonovat tabuli", "Clone board" : "Klonovat tabuli",
@@ -341,6 +327,7 @@
"No due" : "Žádný termín", "No due" : "Žádný termín",
"Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích", "Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích",
"No results found" : "Nenalezeny žádné výsledky", "No results found" : "Nenalezeny žádné výsledky",
"This weekend {timeLocale}" : "Tento víkend {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck karta {name}\n* Naposledy změněno {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Deck karta {name}\n* Naposledy změněno {lastMod}",
"{stack} in {board}" : "{stack} v {board}", "{stack} in {board}" : "{stack} v {board}",
"Click to expand description" : "Popis rozbalíte kliknutím", "Click to expand description" : "Popis rozbalíte kliknutím",
@@ -360,7 +347,6 @@
"upcoming cards" : "nadcházející karty", "upcoming cards" : "nadcházející karty",
"New card" : "Nová karta", "New card" : "Nová karta",
"Due on {date}" : "Termín {date}", "Due on {date}" : "Termín {date}",
"This weekend {timeLocale}" : "Tento víkend {timeLocale}",
"Tomorrow {timeLocale}" : "Zítra {timeLocale}", "Tomorrow {timeLocale}" : "Zítra {timeLocale}",
"Later today {timeLocale}" : "Později dnes {timeLocale}", "Later today {timeLocale}" : "Později dnes {timeLocale}",
"Link to a board" : "Propojit s tabulí", "Link to a board" : "Propojit s tabulí",
@@ -374,9 +360,16 @@
"Share with a Deck card" : "Sdílet s kartou aplikace Deck", "Share with a Deck card" : "Sdílet s kartou aplikace Deck",
"Share {file} with a Deck card" : "Sdílet {file} s kartou aplikace Deck", "Share {file} with a Deck card" : "Sdílet {file} s kartou aplikace Deck",
"Share" : "Sdílet", "Share" : "Sdílet",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Popis karty</strong> v aplikaci Deck byl změněn",
"Timeline" : "Časová osa",
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
"Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…", "Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…",
"(Circle)" : "(Okruh)", "(Circle)" : "(Okruh)",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům", "Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
"Filter by completed" : "Filtrovat podle dokončených" "Next week" : "Příští týden",
"Next month" : "Příští měsíc",
"List is empty" : "Seznam je prázdný",
"Limit deck usage of groups" : "Omezit využití deck na skupiny",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny."
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
} }

View File

@@ -33,6 +33,8 @@ OC.L10N.register(
"An error occurred" : "Digwyddodd gwall", "An error occurred" : "Digwyddodd gwall",
"Today" : "Heddiw", "Today" : "Heddiw",
"Close" : "Cau", "Close" : "Cau",
"Share" : "Rhannu" "Share" : "Rhannu",
"Next week" : "Wythnos nesaf",
"Next month" : "Mis nesaf"
}, },
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"); "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");

View File

@@ -31,6 +31,8 @@
"An error occurred" : "Digwyddodd gwall", "An error occurred" : "Digwyddodd gwall",
"Today" : "Heddiw", "Today" : "Heddiw",
"Close" : "Cau", "Close" : "Cau",
"Share" : "Rhannu" "Share" : "Rhannu",
"Next week" : "Wythnos nesaf",
"Next month" : "Mis nesaf"
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" },"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
} }

View File

@@ -63,7 +63,6 @@ OC.L10N.register(
"Path is already shared with this card" : "Stien er allerede delt med dette kort.", "Path is already shared with this card" : "Stien er allerede delt med dette kort.",
"Invalid date, date format must be YYYY-MM-DD" : "Ikke gyldig dato - dato formatet skal være YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Ikke gyldig dato - dato formatet skal være YYYY-MM-DD",
"Personal planning and team project organization" : "Personlig planlægning og organisering af team projekter", "Personal planning and team project organization" : "Personlig planlægning og organisering af team projekter",
"Card details" : "Kort detaljer",
"Add board" : "Tilføj tavle", "Add board" : "Tilføj tavle",
"Select the board to link to a project" : "Vælg en tavle at linke til et projekt", "Select the board to link to a project" : "Vælg en tavle at linke til et projekt",
"Search by board title" : "Søg efter tavle titel", "Search by board title" : "Søg efter tavle titel",
@@ -88,7 +87,6 @@ OC.L10N.register(
"Archived cards" : "Arkiverede kort", "Archived cards" : "Arkiverede kort",
"Add list" : "Tilføj kolonne", "Add list" : "Tilføj kolonne",
"List name" : "Kolonne navn", "List name" : "Kolonne navn",
"Active filters" : "Aktive filtre",
"Apply filter" : "Aktivér filter", "Apply filter" : "Aktivér filter",
"Filter by tag" : "Filtrer vha. mærkat", "Filter by tag" : "Filtrer vha. mærkat",
"Filter by assigned user" : "Filtrer vha. tildelt bruger", "Filter by assigned user" : "Filtrer vha. tildelt bruger",
@@ -174,15 +172,16 @@ OC.L10N.register(
"Choose attachment" : "Vælg en vedhæftning", "Choose attachment" : "Vælg en vedhæftning",
"Set a due date" : "Sæt en forfaldsdato", "Set a due date" : "Sæt en forfaldsdato",
"Remove due date" : "Fjern forfaldsdato", "Remove due date" : "Fjern forfaldsdato",
"Mark as done" : "Marker som færdig", "Not completed" : "Ikke afsluttet",
"Not done" : "Ikke færdig",
"Unarchive card" : "Gen-aktivér kort", "Unarchive card" : "Gen-aktivér kort",
"Archive card" : "Arkivér kort", "Archive card" : "Arkivér kort",
"Select Date" : "Vælg dato", "Select Date" : "Vælg dato",
"Assign a tag to this card…" : "Tilføj et mærkat til dette kort ...", "Assign a tag to this card…" : "Tilføj et mærkat til dette kort ...",
"(group)" : "(gruppe)", "(group)" : "(gruppe)",
"Card details" : "Kort detaljer",
"Assign to me" : "Tildel til mig", "Assign to me" : "Tildel til mig",
"Unassign myself" : "Fjern mig selv", "Unassign myself" : "Fjern mig selv",
"Mark as done" : "Marker som færdig",
"Delete card" : "Slet kort", "Delete card" : "Slet kort",
"Card deleted" : "Kort slettet", "Card deleted" : "Kort slettet",
"seconds ago" : "få sekunder siden", "seconds ago" : "få sekunder siden",
@@ -197,7 +196,6 @@ OC.L10N.register(
"Shared with you" : "Shared with you", "Shared with you" : "Shared with you",
"Use bigger card view" : "Brug større kort visning", "Use bigger card view" : "Brug større kort visning",
"Show boards in calendar/tasks" : "Vis tavler i kalender/opgaver", "Show boards in calendar/tasks" : "Vis tavler i kalender/opgaver",
"Cancel edit" : "Annuller redigering",
"Board details" : "Liste detaljer", "Board details" : "Liste detaljer",
"Edit board" : "Rediger liste", "Edit board" : "Rediger liste",
"Clone board" : "Klon tavle", "Clone board" : "Klon tavle",
@@ -233,8 +231,14 @@ OC.L10N.register(
"Share with a Deck card" : "Del med et Deck kort", "Share with a Deck card" : "Del med et Deck kort",
"Share {file} with a Deck card" : "Del {file} med et Deck kort", "Share {file} with a Deck card" : "Del {file} med et Deck kort",
"Share" : "Del", "Share" : "Del",
"Timeline" : "Tidslinje",
"Share board with a user, group or circle …" : "Del tavle med en bruger, gruppe eller cirkel ...",
"Searching for users, groups and circles …" : "Leder efter brugere, grupper og cirkler ...", "Searching for users, groups and circles …" : "Leder efter brugere, grupper og cirkler ...",
"(Circle)" : "(Cirkel)", "(Circle)" : "(Cirkel)",
"Assign to users/groups/circles" : "Tildel til brugere/grupper/cirkler" "Assign to users/groups/circles" : "Tildel til brugere/grupper/cirkler",
"Next week" : "Næste uge",
"Next month" : "Næste måned",
"Limit deck usage of groups" : "Begræns Deck brug til grupper",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Begrænsning af Deck vil blokere brugere som ikke er en del af de valgte grupper fra at oprette deres egne tavler. Brugere vil stadig kunne arbejde på tavler der er blevet delt med dem. "
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -61,7 +61,6 @@
"Path is already shared with this card" : "Stien er allerede delt med dette kort.", "Path is already shared with this card" : "Stien er allerede delt med dette kort.",
"Invalid date, date format must be YYYY-MM-DD" : "Ikke gyldig dato - dato formatet skal være YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Ikke gyldig dato - dato formatet skal være YYYY-MM-DD",
"Personal planning and team project organization" : "Personlig planlægning og organisering af team projekter", "Personal planning and team project organization" : "Personlig planlægning og organisering af team projekter",
"Card details" : "Kort detaljer",
"Add board" : "Tilføj tavle", "Add board" : "Tilføj tavle",
"Select the board to link to a project" : "Vælg en tavle at linke til et projekt", "Select the board to link to a project" : "Vælg en tavle at linke til et projekt",
"Search by board title" : "Søg efter tavle titel", "Search by board title" : "Søg efter tavle titel",
@@ -86,7 +85,6 @@
"Archived cards" : "Arkiverede kort", "Archived cards" : "Arkiverede kort",
"Add list" : "Tilføj kolonne", "Add list" : "Tilføj kolonne",
"List name" : "Kolonne navn", "List name" : "Kolonne navn",
"Active filters" : "Aktive filtre",
"Apply filter" : "Aktivér filter", "Apply filter" : "Aktivér filter",
"Filter by tag" : "Filtrer vha. mærkat", "Filter by tag" : "Filtrer vha. mærkat",
"Filter by assigned user" : "Filtrer vha. tildelt bruger", "Filter by assigned user" : "Filtrer vha. tildelt bruger",
@@ -172,15 +170,16 @@
"Choose attachment" : "Vælg en vedhæftning", "Choose attachment" : "Vælg en vedhæftning",
"Set a due date" : "Sæt en forfaldsdato", "Set a due date" : "Sæt en forfaldsdato",
"Remove due date" : "Fjern forfaldsdato", "Remove due date" : "Fjern forfaldsdato",
"Mark as done" : "Marker som færdig", "Not completed" : "Ikke afsluttet",
"Not done" : "Ikke færdig",
"Unarchive card" : "Gen-aktivér kort", "Unarchive card" : "Gen-aktivér kort",
"Archive card" : "Arkivér kort", "Archive card" : "Arkivér kort",
"Select Date" : "Vælg dato", "Select Date" : "Vælg dato",
"Assign a tag to this card…" : "Tilføj et mærkat til dette kort ...", "Assign a tag to this card…" : "Tilføj et mærkat til dette kort ...",
"(group)" : "(gruppe)", "(group)" : "(gruppe)",
"Card details" : "Kort detaljer",
"Assign to me" : "Tildel til mig", "Assign to me" : "Tildel til mig",
"Unassign myself" : "Fjern mig selv", "Unassign myself" : "Fjern mig selv",
"Mark as done" : "Marker som færdig",
"Delete card" : "Slet kort", "Delete card" : "Slet kort",
"Card deleted" : "Kort slettet", "Card deleted" : "Kort slettet",
"seconds ago" : "få sekunder siden", "seconds ago" : "få sekunder siden",
@@ -195,7 +194,6 @@
"Shared with you" : "Shared with you", "Shared with you" : "Shared with you",
"Use bigger card view" : "Brug større kort visning", "Use bigger card view" : "Brug større kort visning",
"Show boards in calendar/tasks" : "Vis tavler i kalender/opgaver", "Show boards in calendar/tasks" : "Vis tavler i kalender/opgaver",
"Cancel edit" : "Annuller redigering",
"Board details" : "Liste detaljer", "Board details" : "Liste detaljer",
"Edit board" : "Rediger liste", "Edit board" : "Rediger liste",
"Clone board" : "Klon tavle", "Clone board" : "Klon tavle",
@@ -231,8 +229,14 @@
"Share with a Deck card" : "Del med et Deck kort", "Share with a Deck card" : "Del med et Deck kort",
"Share {file} with a Deck card" : "Del {file} med et Deck kort", "Share {file} with a Deck card" : "Del {file} med et Deck kort",
"Share" : "Del", "Share" : "Del",
"Timeline" : "Tidslinje",
"Share board with a user, group or circle …" : "Del tavle med en bruger, gruppe eller cirkel ...",
"Searching for users, groups and circles …" : "Leder efter brugere, grupper og cirkler ...", "Searching for users, groups and circles …" : "Leder efter brugere, grupper og cirkler ...",
"(Circle)" : "(Cirkel)", "(Circle)" : "(Cirkel)",
"Assign to users/groups/circles" : "Tildel til brugere/grupper/cirkler" "Assign to users/groups/circles" : "Tildel til brugere/grupper/cirkler",
"Next week" : "Næste uge",
"Next month" : "Næste måned",
"Limit deck usage of groups" : "Begræns Deck brug til grupper",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Begrænsning af Deck vil blokere brugere som ikke er en del af de valgte grupper fra at oprette deres egne tavler. Brugere vil stadig kunne arbejde på tavler der er blevet delt med dem. "
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -120,7 +120,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "Ungültiges Datum, zulässiges Datumsformat: JJJJ-MM-TT", "Invalid date, date format must be YYYY-MM-DD" : "Ungültiges Datum, zulässiges Datumsformat: JJJJ-MM-TT",
"Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation", "Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teile mit deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit deinem Team mit Kommentaren\n- ⚡ Behalte den Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere dein Projekt", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teile mit deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit deinem Team mit Kommentaren\n- ⚡ Behalte den Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere dein Projekt",
"Card details" : "Kartendetails",
"Add board" : "Board hinzufügen", "Add board" : "Board hinzufügen",
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen", "Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen", "Search by board title" : "Nach einem Board suchen",
@@ -150,9 +149,9 @@ OC.L10N.register(
"Filter by tag" : "Nach Schlagwort filtern", "Filter by tag" : "Nach Schlagwort filtern",
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern", "Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Unassigned" : "Nicht zugewiesen", "Unassigned" : "Nicht zugewiesen",
"Filter by status" : "Nach Status filtern", "Filter by completed" : "Nach fertiggestellt filtern",
"Open and completed" : "Offene und fertiggestellte", "Open and completed" : "Offene und fertiggestellte",
"Open" : "Offen", "Open" : "Öffnen",
"Completed" : "Fertiggestellt", "Completed" : "Fertiggestellt",
"Filter by due date" : "Nach Fälligkeitsdatum filtern", "Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig", "Overdue" : "Überfällig",
@@ -257,9 +256,8 @@ OC.L10N.register(
"Add due date" : "Fälligkeitsdatum hinzufügen", "Add due date" : "Fälligkeitsdatum hinzufügen",
"Choose a date" : "Datum auswählen", "Choose a date" : "Datum auswählen",
"Remove due date" : "Fälligkeitsdatum löschen", "Remove due date" : "Fälligkeitsdatum löschen",
"Mark as done" : "Als erledigt markieren",
"Due at:" : "Fallig am:", "Due at:" : "Fallig am:",
"Not done" : "Nicht erledigt", "Not completed" : "Nicht fertiggestellt",
"Unarchive card" : "Karte dearchivieren", "Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren", "Archive card" : "Karte archivieren",
"Select Date" : "Datum auswählen", "Select Date" : "Datum auswählen",
@@ -275,9 +273,11 @@ OC.L10N.register(
"Todo items" : "Aufgaben-Elemente", "Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen", "{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten", "Edit card title" : "Kartentitel bearbeiten",
"Card details" : "Kartendetails",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen", "Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als nicht erledigt markieren", "Mark as not done" : "Als nicht erledigt markieren",
"Mark as done" : "Als erledigt markieren",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Card deleted" : "Karte gelöscht", "Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben", "seconds ago" : "Gerade eben",
@@ -316,8 +316,6 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen", "Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit board creation to some groups" : "Erstellung von Boards auf einige Gruppen beschränken", "Limit board creation to some groups" : "Erstellung von Boards auf einige Gruppen beschränken",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Benutzer außerhalb dieser Gruppen können keine eigenen Boards erstellen, aber weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Benutzer außerhalb dieser Gruppen können keine eigenen Boards erstellen, aber weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.",
"Cancel edit" : "Bearbeiten abbrechen",
"Save board" : "Board speichern",
"Board details" : "Boarddetails", "Board details" : "Boarddetails",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen", "Clone board" : "Board klonen",
@@ -343,6 +341,7 @@ OC.L10N.register(
"No due" : "Kein Fälligkeitsdatum", "No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards", "Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
"No results found" : "Keine Ergebnisse gefunden", "No results found" : "Keine Ergebnisse gefunden",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ", "Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ",
"{stack} in {board}" : "{stack} in {board}", "{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Klicken, um die Beschreibung zu erweitern", "Click to expand description" : "Klicken, um die Beschreibung zu erweitern",
@@ -362,7 +361,6 @@ OC.L10N.register(
"upcoming cards" : "Anstehende Karten", "upcoming cards" : "Anstehende Karten",
"New card" : "Neue Karte", "New card" : "Neue Karte",
"Due on {date}" : "Fällig am {date}", "Due on {date}" : "Fällig am {date}",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Tomorrow {timeLocale}" : "Morgen {timeLocale}", "Tomorrow {timeLocale}" : "Morgen {timeLocale}",
"Later today {timeLocale}" : "Heute noch {timeLocale}", "Later today {timeLocale}" : "Heute noch {timeLocale}",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",
@@ -376,9 +374,16 @@ OC.L10N.register(
"Share with a Deck card" : "Mit einer Deck-Karte teilen", "Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen", "Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben", "Share" : "Freigeben",
"A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde innerhalb der Deck-App geändert",
"Timeline" : "Zeitachse",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …", "Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"(Circle)" : "(Kreis)", "(Circle)" : "(Kreis)",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen", "Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Filter by completed" : "Nach fertiggestellt filtern" "Next week" : "Nächste Woche",
"Next month" : "Nächster Monat",
"List is empty" : "Liste ist leer",
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn du Deck einschränkst, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -118,7 +118,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "Ungültiges Datum, zulässiges Datumsformat: JJJJ-MM-TT", "Invalid date, date format must be YYYY-MM-DD" : "Ungültiges Datum, zulässiges Datumsformat: JJJJ-MM-TT",
"Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation", "Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teile mit deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit deinem Team mit Kommentaren\n- ⚡ Behalte den Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere dein Projekt", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teile mit deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit deinem Team mit Kommentaren\n- ⚡ Behalte den Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere dein Projekt",
"Card details" : "Kartendetails",
"Add board" : "Board hinzufügen", "Add board" : "Board hinzufügen",
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen", "Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen", "Search by board title" : "Nach einem Board suchen",
@@ -148,9 +147,9 @@
"Filter by tag" : "Nach Schlagwort filtern", "Filter by tag" : "Nach Schlagwort filtern",
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern", "Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Unassigned" : "Nicht zugewiesen", "Unassigned" : "Nicht zugewiesen",
"Filter by status" : "Nach Status filtern", "Filter by completed" : "Nach fertiggestellt filtern",
"Open and completed" : "Offene und fertiggestellte", "Open and completed" : "Offene und fertiggestellte",
"Open" : "Offen", "Open" : "Öffnen",
"Completed" : "Fertiggestellt", "Completed" : "Fertiggestellt",
"Filter by due date" : "Nach Fälligkeitsdatum filtern", "Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig", "Overdue" : "Überfällig",
@@ -255,9 +254,8 @@
"Add due date" : "Fälligkeitsdatum hinzufügen", "Add due date" : "Fälligkeitsdatum hinzufügen",
"Choose a date" : "Datum auswählen", "Choose a date" : "Datum auswählen",
"Remove due date" : "Fälligkeitsdatum löschen", "Remove due date" : "Fälligkeitsdatum löschen",
"Mark as done" : "Als erledigt markieren",
"Due at:" : "Fallig am:", "Due at:" : "Fallig am:",
"Not done" : "Nicht erledigt", "Not completed" : "Nicht fertiggestellt",
"Unarchive card" : "Karte dearchivieren", "Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren", "Archive card" : "Karte archivieren",
"Select Date" : "Datum auswählen", "Select Date" : "Datum auswählen",
@@ -273,9 +271,11 @@
"Todo items" : "Aufgaben-Elemente", "Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen", "{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten", "Edit card title" : "Kartentitel bearbeiten",
"Card details" : "Kartendetails",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen", "Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als nicht erledigt markieren", "Mark as not done" : "Als nicht erledigt markieren",
"Mark as done" : "Als erledigt markieren",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Card deleted" : "Karte gelöscht", "Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben", "seconds ago" : "Gerade eben",
@@ -314,8 +314,6 @@
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen", "Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit board creation to some groups" : "Erstellung von Boards auf einige Gruppen beschränken", "Limit board creation to some groups" : "Erstellung von Boards auf einige Gruppen beschränken",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Benutzer außerhalb dieser Gruppen können keine eigenen Boards erstellen, aber weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Benutzer außerhalb dieser Gruppen können keine eigenen Boards erstellen, aber weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.",
"Cancel edit" : "Bearbeiten abbrechen",
"Save board" : "Board speichern",
"Board details" : "Boarddetails", "Board details" : "Boarddetails",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen", "Clone board" : "Board klonen",
@@ -341,6 +339,7 @@
"No due" : "Kein Fälligkeitsdatum", "No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards", "Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
"No results found" : "Keine Ergebnisse gefunden", "No results found" : "Keine Ergebnisse gefunden",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ", "Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ",
"{stack} in {board}" : "{stack} in {board}", "{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Klicken, um die Beschreibung zu erweitern", "Click to expand description" : "Klicken, um die Beschreibung zu erweitern",
@@ -360,7 +359,6 @@
"upcoming cards" : "Anstehende Karten", "upcoming cards" : "Anstehende Karten",
"New card" : "Neue Karte", "New card" : "Neue Karte",
"Due on {date}" : "Fällig am {date}", "Due on {date}" : "Fällig am {date}",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Tomorrow {timeLocale}" : "Morgen {timeLocale}", "Tomorrow {timeLocale}" : "Morgen {timeLocale}",
"Later today {timeLocale}" : "Heute noch {timeLocale}", "Later today {timeLocale}" : "Heute noch {timeLocale}",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",
@@ -374,9 +372,16 @@
"Share with a Deck card" : "Mit einer Deck-Karte teilen", "Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen", "Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben", "Share" : "Freigeben",
"A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde innerhalb der Deck-App geändert",
"Timeline" : "Zeitachse",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …", "Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"(Circle)" : "(Kreis)", "(Circle)" : "(Kreis)",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen", "Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Filter by completed" : "Nach fertiggestellt filtern" "Next week" : "Nächste Woche",
"Next month" : "Nächster Monat",
"List is empty" : "Liste ist leer",
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn du Deck einschränkst, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -120,7 +120,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "Ungültiges Datum, zulässiges Datumsformat: JJJJ-MM-TT", "Invalid date, date format must be YYYY-MM-DD" : "Ungültiges Datum, zulässiges Datumsformat: JJJJ-MM-TT",
"Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation", "Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
"Card details" : "Karten-Details",
"Add board" : "Board hinzufügen", "Add board" : "Board hinzufügen",
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen", "Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen", "Search by board title" : "Nach einem Board suchen",
@@ -150,9 +149,9 @@ OC.L10N.register(
"Filter by tag" : "Nach Schlagwort filtern", "Filter by tag" : "Nach Schlagwort filtern",
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern", "Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Unassigned" : "Nicht zugewiesen", "Unassigned" : "Nicht zugewiesen",
"Filter by status" : "Nach Status filtern", "Filter by completed" : "Nach abgeschlossen filtern",
"Open and completed" : "Offene und abgeschlossene", "Open and completed" : "Offene und abgeschlossene",
"Open" : "Offene", "Open" : "Öffnen",
"Completed" : "Fertiggestellt", "Completed" : "Fertiggestellt",
"Filter by due date" : "Nach Fälligkeitsdatum filtern", "Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig", "Overdue" : "Überfällig",
@@ -257,9 +256,8 @@ OC.L10N.register(
"Add due date" : "Fälligkeitsdatum hinzufügen", "Add due date" : "Fälligkeitsdatum hinzufügen",
"Choose a date" : "Datum auswählen", "Choose a date" : "Datum auswählen",
"Remove due date" : "Fälligkeitsdatum löschen", "Remove due date" : "Fälligkeitsdatum löschen",
"Mark as done" : "Als erledigt markieren",
"Due at:" : "Fallig am:", "Due at:" : "Fallig am:",
"Not done" : "Nicht erledigt", "Not completed" : "Nicht fertiggestellt",
"Unarchive card" : "Karte dearchivieren", "Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren", "Archive card" : "Karte archivieren",
"Select Date" : "Datum auswählen", "Select Date" : "Datum auswählen",
@@ -275,9 +273,11 @@ OC.L10N.register(
"Todo items" : "Aufgaben-Elemente", "Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen", "{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten", "Edit card title" : "Kartentitel bearbeiten",
"Card details" : "Karten-Details",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen", "Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als unerledigt markieren", "Mark as not done" : "Als unerledigt markieren",
"Mark as done" : "Als erledigt markieren",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Card deleted" : "Karte gelöscht", "Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben", "seconds ago" : "Gerade eben",
@@ -316,8 +316,6 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen", "Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit board creation to some groups" : "Boarderstellung auf einige Gruppen beschränken", "Limit board creation to some groups" : "Boarderstellung auf einige Gruppen beschränken",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Benutzer außerhalb dieser Gruppen können keine eigenen Boards erstellen, aber weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Benutzer außerhalb dieser Gruppen können keine eigenen Boards erstellen, aber weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.",
"Cancel edit" : "Bearbeiten abbrechen",
"Save board" : "Board sichern",
"Board details" : "Board-Details", "Board details" : "Board-Details",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen", "Clone board" : "Board klonen",
@@ -343,6 +341,7 @@ OC.L10N.register(
"No due" : "Kein Fälligkeitsdatum", "No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards", "Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
"No results found" : "Keine Ergebnisse gefunden", "No results found" : "Keine Ergebnisse gefunden",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ", "Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ",
"{stack} in {board}" : "{stack} auf {board}", "{stack} in {board}" : "{stack} auf {board}",
"Click to expand description" : "Klicken, um die Beschreibung zu erweitern", "Click to expand description" : "Klicken, um die Beschreibung zu erweitern",
@@ -362,7 +361,6 @@ OC.L10N.register(
"upcoming cards" : "Anstehende Karten", "upcoming cards" : "Anstehende Karten",
"New card" : "Neue Karte", "New card" : "Neue Karte",
"Due on {date}" : "Fällig am {date}", "Due on {date}" : "Fällig am {date}",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Tomorrow {timeLocale}" : "Morgen {timeLocale}", "Tomorrow {timeLocale}" : "Morgen {timeLocale}",
"Later today {timeLocale}" : "Später heute {timeLocale}", "Later today {timeLocale}" : "Später heute {timeLocale}",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",
@@ -376,9 +374,16 @@ OC.L10N.register(
"Share with a Deck card" : "Mit einer Deck-Karte teilen", "Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen", "Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben", "Share" : "Freigeben",
"A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde innerhalb der Deck-App geändert",
"Timeline" : "Zeitachse",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen…",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …", "Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"(Circle)" : "(Kreis)", "(Circle)" : "(Kreis)",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen", "Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Filter by completed" : "Nach Status filtern" "Next week" : "Nächste Woche",
"Next month" : "Nächsten Monat",
"List is empty" : "Liste ist leer",
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -118,7 +118,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "Ungültiges Datum, zulässiges Datumsformat: JJJJ-MM-TT", "Invalid date, date format must be YYYY-MM-DD" : "Ungültiges Datum, zulässiges Datumsformat: JJJJ-MM-TT",
"Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation", "Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
"Card details" : "Karten-Details",
"Add board" : "Board hinzufügen", "Add board" : "Board hinzufügen",
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen", "Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen", "Search by board title" : "Nach einem Board suchen",
@@ -148,9 +147,9 @@
"Filter by tag" : "Nach Schlagwort filtern", "Filter by tag" : "Nach Schlagwort filtern",
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern", "Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Unassigned" : "Nicht zugewiesen", "Unassigned" : "Nicht zugewiesen",
"Filter by status" : "Nach Status filtern", "Filter by completed" : "Nach abgeschlossen filtern",
"Open and completed" : "Offene und abgeschlossene", "Open and completed" : "Offene und abgeschlossene",
"Open" : "Offene", "Open" : "Öffnen",
"Completed" : "Fertiggestellt", "Completed" : "Fertiggestellt",
"Filter by due date" : "Nach Fälligkeitsdatum filtern", "Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig", "Overdue" : "Überfällig",
@@ -255,9 +254,8 @@
"Add due date" : "Fälligkeitsdatum hinzufügen", "Add due date" : "Fälligkeitsdatum hinzufügen",
"Choose a date" : "Datum auswählen", "Choose a date" : "Datum auswählen",
"Remove due date" : "Fälligkeitsdatum löschen", "Remove due date" : "Fälligkeitsdatum löschen",
"Mark as done" : "Als erledigt markieren",
"Due at:" : "Fallig am:", "Due at:" : "Fallig am:",
"Not done" : "Nicht erledigt", "Not completed" : "Nicht fertiggestellt",
"Unarchive card" : "Karte dearchivieren", "Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren", "Archive card" : "Karte archivieren",
"Select Date" : "Datum auswählen", "Select Date" : "Datum auswählen",
@@ -273,9 +271,11 @@
"Todo items" : "Aufgaben-Elemente", "Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen", "{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten", "Edit card title" : "Kartentitel bearbeiten",
"Card details" : "Karten-Details",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen", "Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als unerledigt markieren", "Mark as not done" : "Als unerledigt markieren",
"Mark as done" : "Als erledigt markieren",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Card deleted" : "Karte gelöscht", "Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben", "seconds ago" : "Gerade eben",
@@ -314,8 +314,6 @@
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen", "Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit board creation to some groups" : "Boarderstellung auf einige Gruppen beschränken", "Limit board creation to some groups" : "Boarderstellung auf einige Gruppen beschränken",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Benutzer außerhalb dieser Gruppen können keine eigenen Boards erstellen, aber weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Benutzer außerhalb dieser Gruppen können keine eigenen Boards erstellen, aber weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.",
"Cancel edit" : "Bearbeiten abbrechen",
"Save board" : "Board sichern",
"Board details" : "Board-Details", "Board details" : "Board-Details",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen", "Clone board" : "Board klonen",
@@ -341,6 +339,7 @@
"No due" : "Kein Fälligkeitsdatum", "No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards", "Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
"No results found" : "Keine Ergebnisse gefunden", "No results found" : "Keine Ergebnisse gefunden",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ", "Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ",
"{stack} in {board}" : "{stack} auf {board}", "{stack} in {board}" : "{stack} auf {board}",
"Click to expand description" : "Klicken, um die Beschreibung zu erweitern", "Click to expand description" : "Klicken, um die Beschreibung zu erweitern",
@@ -360,7 +359,6 @@
"upcoming cards" : "Anstehende Karten", "upcoming cards" : "Anstehende Karten",
"New card" : "Neue Karte", "New card" : "Neue Karte",
"Due on {date}" : "Fällig am {date}", "Due on {date}" : "Fällig am {date}",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Tomorrow {timeLocale}" : "Morgen {timeLocale}", "Tomorrow {timeLocale}" : "Morgen {timeLocale}",
"Later today {timeLocale}" : "Später heute {timeLocale}", "Later today {timeLocale}" : "Später heute {timeLocale}",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",
@@ -374,9 +372,16 @@
"Share with a Deck card" : "Mit einer Deck-Karte teilen", "Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen", "Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben", "Share" : "Freigeben",
"A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde innerhalb der Deck-App geändert",
"Timeline" : "Zeitachse",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen…",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …", "Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"(Circle)" : "(Kreis)", "(Circle)" : "(Kreis)",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen", "Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Filter by completed" : "Nach Status filtern" "Next week" : "Nächste Woche",
"Next month" : "Nächsten Monat",
"List is empty" : "Liste ist leer",
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -37,10 +37,6 @@ OC.L10N.register(
"{user} has archived card {card} in list {stack} on board {board}" : "Ο/η {user} αρχειοθέτησε την κάρτα {card} στην λίστα {stack} του πίνακα {board} ", "{user} has archived card {card} in list {stack} on board {board}" : "Ο/η {user} αρχειοθέτησε την κάρτα {card} στην λίστα {stack} του πίνακα {board} ",
"You have unarchived card {card} in list {stack} on board {board}" : "Επαναφέρατε από το αρχείο την καρτέλα {card} της λίστας {stack} του πίνακα {board}", "You have unarchived card {card} in list {stack} on board {board}" : "Επαναφέρατε από το αρχείο την καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "Ο/η {user} επανέφερε από το αρχείο την κάρτα {card} της λίστας {stack} του πίνακα {board}", "{user} has unarchived card {card} in list {stack} on board {board}" : "Ο/η {user} επανέφερε από το αρχείο την κάρτα {card} της λίστας {stack} του πίνακα {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Έχετε επισημάνει την κάρτα {card} ως ολοκληρωμένη στη λίστα {stack} του πίνακα {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} έχει επισημάνει την κάρτα {card} ως ολοκληρωμένη στη λίστα {stack} του πίνακα {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Έχετε επισημάνει την κάρτα {card} ως μη ολοκληρωμένη στη λίστα {stack} του πίνακα {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} έχει επισημάνει την κάρτα {card} ως μη ολοκληρωμένη στη λίστα {stack} του πίνακα {board}",
"You have removed the due date of card {card}" : "Καταργήσατε την ημερομηνία λήξης της καρτέλας {card}", "You have removed the due date of card {card}" : "Καταργήσατε την ημερομηνία λήξης της καρτέλας {card}",
"{user} has removed the due date of card {card}" : "Ο/η {user} κατάργησε την ημερομηνία λήξης της καρτέλας {card}", "{user} has removed the due date of card {card}" : "Ο/η {user} κατάργησε την ημερομηνία λήξης της καρτέλας {card}",
"You have set the due date of card {card} to {after}" : "Ορίσατε την ημερομηνία λήξης της καρτέλας {card} σε {after}", "You have set the due date of card {card} to {after}" : "Ορίσατε την ημερομηνία λήξης της καρτέλας {card} σε {after}",
@@ -88,7 +84,6 @@ OC.L10N.register(
"Deck board" : "Πίνακας του Deck", "Deck board" : "Πίνακας του Deck",
"Owned by %1$s" : "Ανήκει στον/στην %1$s", "Owned by %1$s" : "Ανήκει στον/στην %1$s",
"Deck boards, cards and comments" : "Πίνακες, κάρτες και σχόλια Deck", "Deck boards, cards and comments" : "Πίνακες, κάρτες και σχόλια Deck",
"Create a new deck card" : "Δημιουργήστε μια νέα κάρτα",
"Card comments" : "Σχόλια καρτέλας", "Card comments" : "Σχόλια καρτέλας",
"%s on %s" : "%s στο %s", "%s on %s" : "%s στο %s",
"Deck boards and cards" : "Πίνακες και κάρτες Deck", "Deck boards and cards" : "Πίνακες και κάρτες Deck",
@@ -119,7 +114,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "Μη έγκυρη ημερομηνία, η μορφή ημερομηνίας πρέπει να είναι ΕΕΕΕ-ΜΜ-ΗΗ", "Invalid date, date format must be YYYY-MM-DD" : "Μη έγκυρη ημερομηνία, η μορφή ημερομηνίας πρέπει να είναι ΕΕΕΕ-ΜΜ-ΗΗ",
"Personal planning and team project organization" : "Προσωπικός σχεδιασμός και οργάνωση ομαδικών έργων", "Personal planning and team project organization" : "Προσωπικός σχεδιασμός και οργάνωση ομαδικών έργων",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Το Deck είναι ένα εργαλείο οργάνωσης τύπου kanban με στόχο τον προσωπικό προγραμματισμό και την οργάνωση έργων για ομάδες που έχουν ενσωματωθεί στο Nextcloud.\n\n\n- 📥 Προσθέστε τις εργασίες σας στις καρτέλες και βάλτε τες στη σειρά\n- 📄 Γράψτε τις πρόσθετες σημειώσεις\n- 🔖 Αντιστοιχίστε τις ετικέτες για ακόμη καλύτερη οργάνωση\n- 👥 Μοιραστείτε με την ομάδα, φίλους ή την οικογένειά σας\n- 📎 Επισυνάψτε αρχεία και ενσωματώστε τα στην περιγραφή\n- 💬 Συζητήστε με την ομάδα σας χρησιμοποιώντας σχόλια\n- ⚡ Παρακολουθήστε τις αλλαγές στη ροή δραστηριοτήτων\n- 🚀 Έχετε τα όλα οργανωμένα", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Το Deck είναι ένα εργαλείο οργάνωσης τύπου kanban με στόχο τον προσωπικό προγραμματισμό και την οργάνωση έργων για ομάδες που έχουν ενσωματωθεί στο Nextcloud.\n\n\n- 📥 Προσθέστε τις εργασίες σας στις καρτέλες και βάλτε τες στη σειρά\n- 📄 Γράψτε τις πρόσθετες σημειώσεις\n- 🔖 Αντιστοιχίστε τις ετικέτες για ακόμη καλύτερη οργάνωση\n- 👥 Μοιραστείτε με την ομάδα, φίλους ή την οικογένειά σας\n- 📎 Επισυνάψτε αρχεία και ενσωματώστε τα στην περιγραφή\n- 💬 Συζητήστε με την ομάδα σας χρησιμοποιώντας σχόλια\n- ⚡ Παρακολουθήστε τις αλλαγές στη ροή δραστηριοτήτων\n- 🚀 Έχετε τα όλα οργανωμένα",
"Card details" : "Λεπτομέρειες καρτέλας",
"Add board" : "Προσθήκη πίνακα", "Add board" : "Προσθήκη πίνακα",
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε ένα έργο", "Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε ένα έργο",
"Search by board title" : "Αναζήτηση με το όνομα πίνακα", "Search by board title" : "Αναζήτηση με το όνομα πίνακα",
@@ -149,8 +143,6 @@ OC.L10N.register(
"Filter by tag" : "Φίλτρο ανά ετικέτα", "Filter by tag" : "Φίλτρο ανά ετικέτα",
"Filter by assigned user" : "Φίλτρο ανά χρήστη", "Filter by assigned user" : "Φίλτρο ανά χρήστη",
"Unassigned" : "Χωρίς ανάθεση", "Unassigned" : "Χωρίς ανάθεση",
"Filter by status" : "Φίλτρο με βάση την κατάσταση",
"Open and completed" : "Ανοιχτά και ολοκληρωμένα",
"Open" : "Ανοιχτός", "Open" : "Ανοιχτός",
"Completed" : "Ολοκληρωμένες", "Completed" : "Ολοκληρωμένες",
"Filter by due date" : "Φίλτρο ανά ημερομηνία λήξης", "Filter by due date" : "Φίλτρο ανά ημερομηνία λήξης",
@@ -161,7 +153,6 @@ OC.L10N.register(
"No due date" : "Χωρίς ημερομηνία λήξης", "No due date" : "Χωρίς ημερομηνία λήξης",
"Clear filter" : "Εκκαθάριση φίλτρου", "Clear filter" : "Εκκαθάριση φίλτρου",
"View Modes" : "Τρόποι προβολής", "View Modes" : "Τρόποι προβολής",
"Toggle View Modes" : "Εναλλαγή τρόπων προβολής",
"Hide archived cards" : "Απόκρυψη καρτελών που αρχειοθετήθηκαν", "Hide archived cards" : "Απόκρυψη καρτελών που αρχειοθετήθηκαν",
"Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν", "Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν",
"Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους", "Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους",
@@ -180,8 +171,6 @@ OC.L10N.register(
"Deleted lists" : "Διαγραμμένες λίστες", "Deleted lists" : "Διαγραμμένες λίστες",
"Undo" : "Αναίρεση", "Undo" : "Αναίρεση",
"Deleted cards" : "Διαγραμμένες καρτέλες", "Deleted cards" : "Διαγραμμένες καρτέλες",
"Share board with a user, group or team …" : "Κοινή χρήση πίνακα με έναν χρήστη, μια ομάδα ή team ...",
"Searching for users, groups and teams …" : "Αναζήτηση χρηστών, ομάδων και teams …",
"No participants found" : "Δε βρέθηκαν συμμετέχοντες", "No participants found" : "Δε βρέθηκαν συμμετέχοντες",
"Board owner" : "Κάτοχος πίνακα", "Board owner" : "Κάτοχος πίνακα",
"(Group)" : "(Ομάδα)", "(Group)" : "(Ομάδα)",
@@ -211,7 +200,6 @@ OC.L10N.register(
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται", "title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"Board name" : "Όνομα πίνακα", "Board name" : "Όνομα πίνακα",
"Members" : "Μέλη", "Members" : "Μέλη",
"Assign to users/groups/team" : "Ανάθεση σε χρήστες/ομάδες/teams",
"Assign a user to this card…" : "Ανάθεση χρήστη στην καρτέλα...", "Assign a user to this card…" : "Ανάθεση χρήστη στην καρτέλα...",
"Select a user to assign to this card…" : "Επιλέξτε έναν χρήστη για να του αναθέσετε αυτή την κάρτα...", "Select a user to assign to this card…" : "Επιλέξτε έναν χρήστη για να του αναθέσετε αυτή την κάρτα...",
"Upload new files" : "Ανεβάστε νέα αρχεία", "Upload new files" : "Ανεβάστε νέα αρχεία",
@@ -256,9 +244,8 @@ OC.L10N.register(
"Add due date" : "Προσθήκη ημερομηνίας λήξης", "Add due date" : "Προσθήκη ημερομηνίας λήξης",
"Choose a date" : "Επιλέξτε ημερομηνίας", "Choose a date" : "Επιλέξτε ημερομηνίας",
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης", "Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
"Mark as done" : "Σήμανση ως ολοκληρωμένου",
"Due at:" : "Λήγει στις:", "Due at:" : "Λήγει στις:",
"Not done" : "Μη ολοκληρωμένο", "Not completed" : "Μη ολοκληρωμένο",
"Unarchive card" : "Αναίρεση αρχειοθέτησης καρτέλας", "Unarchive card" : "Αναίρεση αρχειοθέτησης καρτέλας",
"Archive card" : "Αρχειοθέτηση καρτέλας", "Archive card" : "Αρχειοθέτηση καρτέλας",
"Select Date" : "Επιλέξτε ημερομηνία", "Select Date" : "Επιλέξτε ημερομηνία",
@@ -274,9 +261,11 @@ OC.L10N.register(
"Todo items" : "Στοιχεία todo", "Todo items" : "Στοιχεία todo",
"{count} comments, {unread} unread" : "{count} σχόλια, {unread} μη αναγνωσμένα", "{count} comments, {unread} unread" : "{count} σχόλια, {unread} μη αναγνωσμένα",
"Edit card title" : "Επεξεργασία τίτλου κάρτας", "Edit card title" : "Επεξεργασία τίτλου κάρτας",
"Card details" : "Λεπτομέρειες καρτέλας",
"Assign to me" : "Ανάθεση σε εμένα", "Assign to me" : "Ανάθεση σε εμένα",
"Unassign myself" : "Αποδέσμευσή μου", "Unassign myself" : "Αποδέσμευσή μου",
"Mark as not done" : "Σήμανση ως ολοκληρωμένου", "Mark as not done" : "Σήμανση ως ολοκληρωμένου",
"Mark as done" : "Σήμανση ως ολοκληρωμένου",
"Delete card" : "Διαγραφή καρτέλας", "Delete card" : "Διαγραφή καρτέλας",
"Card deleted" : "Η καρτέλα διαγράφηκε", "Card deleted" : "Η καρτέλα διαγράφηκε",
"seconds ago" : " δευτερόλεπτα πριν ", "seconds ago" : " δευτερόλεπτα πριν ",
@@ -311,11 +300,9 @@ OC.L10N.register(
"Shared with you" : "Διαμοιρασμένα μαζί σας", "Shared with you" : "Διαμοιρασμένα μαζί σας",
"Deck settings" : "Ρυθμίσεις Deck", "Deck settings" : "Ρυθμίσεις Deck",
"Use bigger card view" : "Χρησιμοποιήστε μεγαλύτερη προβολή καρτέλας", "Use bigger card view" : "Χρησιμοποιήστε μεγαλύτερη προβολή καρτέλας",
"Show card ID badge" : "Εμφάνιση ID κάρτας",
"Show boards in calendar/tasks" : "Εμφάνιση πινάκων στο ημερολόγιο / εργασίες", "Show boards in calendar/tasks" : "Εμφάνιση πινάκων στο ημερολόγιο / εργασίες",
"Limit board creation to some groups" : "Περιορισμός της δημιουργίας πινάκων σε ορισμένες ομάδες", "Limit board creation to some groups" : "Περιορισμός της δημιουργίας πινάκων σε ορισμένες ομάδες",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Οι χρήστες εκτός αυτών των ομάδων δεν θα μπορούν να δημιουργούν τους δικούς τους πίνακες, αλλά θα μπορούν να εργάζονται σε πίνακες που τους έχουν διαμοιραστεί.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Οι χρήστες εκτός αυτών των ομάδων δεν θα μπορούν να δημιουργούν τους δικούς τους πίνακες, αλλά θα μπορούν να εργάζονται σε πίνακες που τους έχουν διαμοιραστεί.",
"Cancel edit" : "Ακύρωση επεξεργασίας",
"Board details" : "Λεπτομέριες πίνακα", "Board details" : "Λεπτομέριες πίνακα",
"Edit board" : "Επεξεργασία πίνακα", "Edit board" : "Επεξεργασία πίνακα",
"Clone board" : "Κλώνος πίνακα", "Clone board" : "Κλώνος πίνακα",
@@ -341,6 +328,7 @@ OC.L10N.register(
"No due" : "Χωρίς λήξη", "No due" : "Χωρίς λήξη",
"Search for {searchQuery} in all boards" : "Αναζήτηση για {searchQuery} σε όλους τους πίνακες", "Search for {searchQuery} in all boards" : "Αναζήτηση για {searchQuery} σε όλους τους πίνακες",
"No results found" : "Δεν βρέθηκαν αποτελέσματα", "No results found" : "Δεν βρέθηκαν αποτελέσματα",
"This weekend {timeLocale}" : "Αυτή την εβδομάδα {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Πίνακας Deck {name}\n* Τελευταία τροποποίηση στις {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Πίνακας Deck {name}\n* Τελευταία τροποποίηση στις {lastMod}",
"{stack} in {board}" : "{stack} στο {board}", "{stack} in {board}" : "{stack} στο {board}",
"Click to expand description" : "Κλικ για επέκταση περιγραφής", "Click to expand description" : "Κλικ για επέκταση περιγραφής",
@@ -360,7 +348,6 @@ OC.L10N.register(
"upcoming cards" : "επερχόμενες καρτέλες", "upcoming cards" : "επερχόμενες καρτέλες",
"New card" : "Νέα κάρτα", "New card" : "Νέα κάρτα",
"Due on {date}" : "Προθεσμία στις {date}", "Due on {date}" : "Προθεσμία στις {date}",
"This weekend {timeLocale}" : "Αυτή την εβδομάδα {timeLocale}",
"Tomorrow {timeLocale}" : "Αύριο {timeLocale}", "Tomorrow {timeLocale}" : "Αύριο {timeLocale}",
"Later today {timeLocale}" : "Αργότερα σήμερα {timeLocale}", "Later today {timeLocale}" : "Αργότερα σήμερα {timeLocale}",
"Link to a board" : "Σύνδεσμος στον πίνακα", "Link to a board" : "Σύνδεσμος στον πίνακα",
@@ -374,9 +361,16 @@ OC.L10N.register(
"Share with a Deck card" : "Μοιραστείτε με μια καρτέλα Deck", "Share with a Deck card" : "Μοιραστείτε με μια καρτέλα Deck",
"Share {file} with a Deck card" : "Μοιραστείτε το {file} με μια καρτέλα Deck", "Share {file} with a Deck card" : "Μοιραστείτε το {file} με μια καρτέλα Deck",
"Share" : "Μοιραστείτε", "Share" : "Μοιραστείτε",
"A <strong>card description</strong> inside the Deck app has been changed" : "Η <strong>περιγραφή καρτέλας </strong>στην εφαρμογή Deck άλλαξε",
"Timeline" : "Χρονολόγιο",
"Share board with a user, group or circle …" : "Διαμοιράστε τον πίνακα με χρήστη, ομάδα ή κύκλο ...",
"Searching for users, groups and circles …" : "Αναζήτηση χρηστών, ομάδων και κύκλων…", "Searching for users, groups and circles …" : "Αναζήτηση χρηστών, ομάδων και κύκλων…",
"(Circle)" : "(Κύκλος)", "(Circle)" : "(Κύκλος)",
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους", "Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
"Filter by completed" : "Φίλτρο ανά ολοκλήρωση" "Next week" : "Επόμενη εβδομάδα",
"Next month" : "Επόμενος μήνας",
"List is empty" : "Η λίστα είναι κενή",
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής deck σε ομάδες",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -35,10 +35,6 @@
"{user} has archived card {card} in list {stack} on board {board}" : "Ο/η {user} αρχειοθέτησε την κάρτα {card} στην λίστα {stack} του πίνακα {board} ", "{user} has archived card {card} in list {stack} on board {board}" : "Ο/η {user} αρχειοθέτησε την κάρτα {card} στην λίστα {stack} του πίνακα {board} ",
"You have unarchived card {card} in list {stack} on board {board}" : "Επαναφέρατε από το αρχείο την καρτέλα {card} της λίστας {stack} του πίνακα {board}", "You have unarchived card {card} in list {stack} on board {board}" : "Επαναφέρατε από το αρχείο την καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "Ο/η {user} επανέφερε από το αρχείο την κάρτα {card} της λίστας {stack} του πίνακα {board}", "{user} has unarchived card {card} in list {stack} on board {board}" : "Ο/η {user} επανέφερε από το αρχείο την κάρτα {card} της λίστας {stack} του πίνακα {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Έχετε επισημάνει την κάρτα {card} ως ολοκληρωμένη στη λίστα {stack} του πίνακα {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} έχει επισημάνει την κάρτα {card} ως ολοκληρωμένη στη λίστα {stack} του πίνακα {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Έχετε επισημάνει την κάρτα {card} ως μη ολοκληρωμένη στη λίστα {stack} του πίνακα {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} έχει επισημάνει την κάρτα {card} ως μη ολοκληρωμένη στη λίστα {stack} του πίνακα {board}",
"You have removed the due date of card {card}" : "Καταργήσατε την ημερομηνία λήξης της καρτέλας {card}", "You have removed the due date of card {card}" : "Καταργήσατε την ημερομηνία λήξης της καρτέλας {card}",
"{user} has removed the due date of card {card}" : "Ο/η {user} κατάργησε την ημερομηνία λήξης της καρτέλας {card}", "{user} has removed the due date of card {card}" : "Ο/η {user} κατάργησε την ημερομηνία λήξης της καρτέλας {card}",
"You have set the due date of card {card} to {after}" : "Ορίσατε την ημερομηνία λήξης της καρτέλας {card} σε {after}", "You have set the due date of card {card} to {after}" : "Ορίσατε την ημερομηνία λήξης της καρτέλας {card} σε {after}",
@@ -86,7 +82,6 @@
"Deck board" : "Πίνακας του Deck", "Deck board" : "Πίνακας του Deck",
"Owned by %1$s" : "Ανήκει στον/στην %1$s", "Owned by %1$s" : "Ανήκει στον/στην %1$s",
"Deck boards, cards and comments" : "Πίνακες, κάρτες και σχόλια Deck", "Deck boards, cards and comments" : "Πίνακες, κάρτες και σχόλια Deck",
"Create a new deck card" : "Δημιουργήστε μια νέα κάρτα",
"Card comments" : "Σχόλια καρτέλας", "Card comments" : "Σχόλια καρτέλας",
"%s on %s" : "%s στο %s", "%s on %s" : "%s στο %s",
"Deck boards and cards" : "Πίνακες και κάρτες Deck", "Deck boards and cards" : "Πίνακες και κάρτες Deck",
@@ -117,7 +112,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "Μη έγκυρη ημερομηνία, η μορφή ημερομηνίας πρέπει να είναι ΕΕΕΕ-ΜΜ-ΗΗ", "Invalid date, date format must be YYYY-MM-DD" : "Μη έγκυρη ημερομηνία, η μορφή ημερομηνίας πρέπει να είναι ΕΕΕΕ-ΜΜ-ΗΗ",
"Personal planning and team project organization" : "Προσωπικός σχεδιασμός και οργάνωση ομαδικών έργων", "Personal planning and team project organization" : "Προσωπικός σχεδιασμός και οργάνωση ομαδικών έργων",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Το Deck είναι ένα εργαλείο οργάνωσης τύπου kanban με στόχο τον προσωπικό προγραμματισμό και την οργάνωση έργων για ομάδες που έχουν ενσωματωθεί στο Nextcloud.\n\n\n- 📥 Προσθέστε τις εργασίες σας στις καρτέλες και βάλτε τες στη σειρά\n- 📄 Γράψτε τις πρόσθετες σημειώσεις\n- 🔖 Αντιστοιχίστε τις ετικέτες για ακόμη καλύτερη οργάνωση\n- 👥 Μοιραστείτε με την ομάδα, φίλους ή την οικογένειά σας\n- 📎 Επισυνάψτε αρχεία και ενσωματώστε τα στην περιγραφή\n- 💬 Συζητήστε με την ομάδα σας χρησιμοποιώντας σχόλια\n- ⚡ Παρακολουθήστε τις αλλαγές στη ροή δραστηριοτήτων\n- 🚀 Έχετε τα όλα οργανωμένα", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Το Deck είναι ένα εργαλείο οργάνωσης τύπου kanban με στόχο τον προσωπικό προγραμματισμό και την οργάνωση έργων για ομάδες που έχουν ενσωματωθεί στο Nextcloud.\n\n\n- 📥 Προσθέστε τις εργασίες σας στις καρτέλες και βάλτε τες στη σειρά\n- 📄 Γράψτε τις πρόσθετες σημειώσεις\n- 🔖 Αντιστοιχίστε τις ετικέτες για ακόμη καλύτερη οργάνωση\n- 👥 Μοιραστείτε με την ομάδα, φίλους ή την οικογένειά σας\n- 📎 Επισυνάψτε αρχεία και ενσωματώστε τα στην περιγραφή\n- 💬 Συζητήστε με την ομάδα σας χρησιμοποιώντας σχόλια\n- ⚡ Παρακολουθήστε τις αλλαγές στη ροή δραστηριοτήτων\n- 🚀 Έχετε τα όλα οργανωμένα",
"Card details" : "Λεπτομέρειες καρτέλας",
"Add board" : "Προσθήκη πίνακα", "Add board" : "Προσθήκη πίνακα",
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε ένα έργο", "Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε ένα έργο",
"Search by board title" : "Αναζήτηση με το όνομα πίνακα", "Search by board title" : "Αναζήτηση με το όνομα πίνακα",
@@ -147,8 +141,6 @@
"Filter by tag" : "Φίλτρο ανά ετικέτα", "Filter by tag" : "Φίλτρο ανά ετικέτα",
"Filter by assigned user" : "Φίλτρο ανά χρήστη", "Filter by assigned user" : "Φίλτρο ανά χρήστη",
"Unassigned" : "Χωρίς ανάθεση", "Unassigned" : "Χωρίς ανάθεση",
"Filter by status" : "Φίλτρο με βάση την κατάσταση",
"Open and completed" : "Ανοιχτά και ολοκληρωμένα",
"Open" : "Ανοιχτός", "Open" : "Ανοιχτός",
"Completed" : "Ολοκληρωμένες", "Completed" : "Ολοκληρωμένες",
"Filter by due date" : "Φίλτρο ανά ημερομηνία λήξης", "Filter by due date" : "Φίλτρο ανά ημερομηνία λήξης",
@@ -159,7 +151,6 @@
"No due date" : "Χωρίς ημερομηνία λήξης", "No due date" : "Χωρίς ημερομηνία λήξης",
"Clear filter" : "Εκκαθάριση φίλτρου", "Clear filter" : "Εκκαθάριση φίλτρου",
"View Modes" : "Τρόποι προβολής", "View Modes" : "Τρόποι προβολής",
"Toggle View Modes" : "Εναλλαγή τρόπων προβολής",
"Hide archived cards" : "Απόκρυψη καρτελών που αρχειοθετήθηκαν", "Hide archived cards" : "Απόκρυψη καρτελών που αρχειοθετήθηκαν",
"Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν", "Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν",
"Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους", "Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους",
@@ -178,8 +169,6 @@
"Deleted lists" : "Διαγραμμένες λίστες", "Deleted lists" : "Διαγραμμένες λίστες",
"Undo" : "Αναίρεση", "Undo" : "Αναίρεση",
"Deleted cards" : "Διαγραμμένες καρτέλες", "Deleted cards" : "Διαγραμμένες καρτέλες",
"Share board with a user, group or team …" : "Κοινή χρήση πίνακα με έναν χρήστη, μια ομάδα ή team ...",
"Searching for users, groups and teams …" : "Αναζήτηση χρηστών, ομάδων και teams …",
"No participants found" : "Δε βρέθηκαν συμμετέχοντες", "No participants found" : "Δε βρέθηκαν συμμετέχοντες",
"Board owner" : "Κάτοχος πίνακα", "Board owner" : "Κάτοχος πίνακα",
"(Group)" : "(Ομάδα)", "(Group)" : "(Ομάδα)",
@@ -209,7 +198,6 @@
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται", "title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"Board name" : "Όνομα πίνακα", "Board name" : "Όνομα πίνακα",
"Members" : "Μέλη", "Members" : "Μέλη",
"Assign to users/groups/team" : "Ανάθεση σε χρήστες/ομάδες/teams",
"Assign a user to this card…" : "Ανάθεση χρήστη στην καρτέλα...", "Assign a user to this card…" : "Ανάθεση χρήστη στην καρτέλα...",
"Select a user to assign to this card…" : "Επιλέξτε έναν χρήστη για να του αναθέσετε αυτή την κάρτα...", "Select a user to assign to this card…" : "Επιλέξτε έναν χρήστη για να του αναθέσετε αυτή την κάρτα...",
"Upload new files" : "Ανεβάστε νέα αρχεία", "Upload new files" : "Ανεβάστε νέα αρχεία",
@@ -254,9 +242,8 @@
"Add due date" : "Προσθήκη ημερομηνίας λήξης", "Add due date" : "Προσθήκη ημερομηνίας λήξης",
"Choose a date" : "Επιλέξτε ημερομηνίας", "Choose a date" : "Επιλέξτε ημερομηνίας",
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης", "Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
"Mark as done" : "Σήμανση ως ολοκληρωμένου",
"Due at:" : "Λήγει στις:", "Due at:" : "Λήγει στις:",
"Not done" : "Μη ολοκληρωμένο", "Not completed" : "Μη ολοκληρωμένο",
"Unarchive card" : "Αναίρεση αρχειοθέτησης καρτέλας", "Unarchive card" : "Αναίρεση αρχειοθέτησης καρτέλας",
"Archive card" : "Αρχειοθέτηση καρτέλας", "Archive card" : "Αρχειοθέτηση καρτέλας",
"Select Date" : "Επιλέξτε ημερομηνία", "Select Date" : "Επιλέξτε ημερομηνία",
@@ -272,9 +259,11 @@
"Todo items" : "Στοιχεία todo", "Todo items" : "Στοιχεία todo",
"{count} comments, {unread} unread" : "{count} σχόλια, {unread} μη αναγνωσμένα", "{count} comments, {unread} unread" : "{count} σχόλια, {unread} μη αναγνωσμένα",
"Edit card title" : "Επεξεργασία τίτλου κάρτας", "Edit card title" : "Επεξεργασία τίτλου κάρτας",
"Card details" : "Λεπτομέρειες καρτέλας",
"Assign to me" : "Ανάθεση σε εμένα", "Assign to me" : "Ανάθεση σε εμένα",
"Unassign myself" : "Αποδέσμευσή μου", "Unassign myself" : "Αποδέσμευσή μου",
"Mark as not done" : "Σήμανση ως ολοκληρωμένου", "Mark as not done" : "Σήμανση ως ολοκληρωμένου",
"Mark as done" : "Σήμανση ως ολοκληρωμένου",
"Delete card" : "Διαγραφή καρτέλας", "Delete card" : "Διαγραφή καρτέλας",
"Card deleted" : "Η καρτέλα διαγράφηκε", "Card deleted" : "Η καρτέλα διαγράφηκε",
"seconds ago" : " δευτερόλεπτα πριν ", "seconds ago" : " δευτερόλεπτα πριν ",
@@ -309,11 +298,9 @@
"Shared with you" : "Διαμοιρασμένα μαζί σας", "Shared with you" : "Διαμοιρασμένα μαζί σας",
"Deck settings" : "Ρυθμίσεις Deck", "Deck settings" : "Ρυθμίσεις Deck",
"Use bigger card view" : "Χρησιμοποιήστε μεγαλύτερη προβολή καρτέλας", "Use bigger card view" : "Χρησιμοποιήστε μεγαλύτερη προβολή καρτέλας",
"Show card ID badge" : "Εμφάνιση ID κάρτας",
"Show boards in calendar/tasks" : "Εμφάνιση πινάκων στο ημερολόγιο / εργασίες", "Show boards in calendar/tasks" : "Εμφάνιση πινάκων στο ημερολόγιο / εργασίες",
"Limit board creation to some groups" : "Περιορισμός της δημιουργίας πινάκων σε ορισμένες ομάδες", "Limit board creation to some groups" : "Περιορισμός της δημιουργίας πινάκων σε ορισμένες ομάδες",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Οι χρήστες εκτός αυτών των ομάδων δεν θα μπορούν να δημιουργούν τους δικούς τους πίνακες, αλλά θα μπορούν να εργάζονται σε πίνακες που τους έχουν διαμοιραστεί.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Οι χρήστες εκτός αυτών των ομάδων δεν θα μπορούν να δημιουργούν τους δικούς τους πίνακες, αλλά θα μπορούν να εργάζονται σε πίνακες που τους έχουν διαμοιραστεί.",
"Cancel edit" : "Ακύρωση επεξεργασίας",
"Board details" : "Λεπτομέριες πίνακα", "Board details" : "Λεπτομέριες πίνακα",
"Edit board" : "Επεξεργασία πίνακα", "Edit board" : "Επεξεργασία πίνακα",
"Clone board" : "Κλώνος πίνακα", "Clone board" : "Κλώνος πίνακα",
@@ -339,6 +326,7 @@
"No due" : "Χωρίς λήξη", "No due" : "Χωρίς λήξη",
"Search for {searchQuery} in all boards" : "Αναζήτηση για {searchQuery} σε όλους τους πίνακες", "Search for {searchQuery} in all boards" : "Αναζήτηση για {searchQuery} σε όλους τους πίνακες",
"No results found" : "Δεν βρέθηκαν αποτελέσματα", "No results found" : "Δεν βρέθηκαν αποτελέσματα",
"This weekend {timeLocale}" : "Αυτή την εβδομάδα {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Πίνακας Deck {name}\n* Τελευταία τροποποίηση στις {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Πίνακας Deck {name}\n* Τελευταία τροποποίηση στις {lastMod}",
"{stack} in {board}" : "{stack} στο {board}", "{stack} in {board}" : "{stack} στο {board}",
"Click to expand description" : "Κλικ για επέκταση περιγραφής", "Click to expand description" : "Κλικ για επέκταση περιγραφής",
@@ -358,7 +346,6 @@
"upcoming cards" : "επερχόμενες καρτέλες", "upcoming cards" : "επερχόμενες καρτέλες",
"New card" : "Νέα κάρτα", "New card" : "Νέα κάρτα",
"Due on {date}" : "Προθεσμία στις {date}", "Due on {date}" : "Προθεσμία στις {date}",
"This weekend {timeLocale}" : "Αυτή την εβδομάδα {timeLocale}",
"Tomorrow {timeLocale}" : "Αύριο {timeLocale}", "Tomorrow {timeLocale}" : "Αύριο {timeLocale}",
"Later today {timeLocale}" : "Αργότερα σήμερα {timeLocale}", "Later today {timeLocale}" : "Αργότερα σήμερα {timeLocale}",
"Link to a board" : "Σύνδεσμος στον πίνακα", "Link to a board" : "Σύνδεσμος στον πίνακα",
@@ -372,9 +359,16 @@
"Share with a Deck card" : "Μοιραστείτε με μια καρτέλα Deck", "Share with a Deck card" : "Μοιραστείτε με μια καρτέλα Deck",
"Share {file} with a Deck card" : "Μοιραστείτε το {file} με μια καρτέλα Deck", "Share {file} with a Deck card" : "Μοιραστείτε το {file} με μια καρτέλα Deck",
"Share" : "Μοιραστείτε", "Share" : "Μοιραστείτε",
"A <strong>card description</strong> inside the Deck app has been changed" : "Η <strong>περιγραφή καρτέλας </strong>στην εφαρμογή Deck άλλαξε",
"Timeline" : "Χρονολόγιο",
"Share board with a user, group or circle …" : "Διαμοιράστε τον πίνακα με χρήστη, ομάδα ή κύκλο ...",
"Searching for users, groups and circles …" : "Αναζήτηση χρηστών, ομάδων και κύκλων…", "Searching for users, groups and circles …" : "Αναζήτηση χρηστών, ομάδων και κύκλων…",
"(Circle)" : "(Κύκλος)", "(Circle)" : "(Κύκλος)",
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους", "Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
"Filter by completed" : "Φίλτρο ανά ολοκλήρωση" "Next week" : "Επόμενη εβδομάδα",
"Next month" : "Επόμενος μήνας",
"List is empty" : "Η λίστα είναι κενή",
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής deck σε ομάδες",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -120,7 +120,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "Invalid date, date format must be YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Invalid date, date format must be YYYY-MM-DD",
"Personal planning and team project organization" : "Personal planning and team project organization", "Personal planning and team project organization" : "Personal planning and team project organization",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized",
"Card details" : "Card details",
"Add board" : "Add board", "Add board" : "Add board",
"Select the board to link to a project" : "Select the board to link to a project", "Select the board to link to a project" : "Select the board to link to a project",
"Search by board title" : "Search by board title", "Search by board title" : "Search by board title",
@@ -150,7 +149,7 @@ OC.L10N.register(
"Filter by tag" : "Filter by tag", "Filter by tag" : "Filter by tag",
"Filter by assigned user" : "Filter by assigned user", "Filter by assigned user" : "Filter by assigned user",
"Unassigned" : "Unassigned", "Unassigned" : "Unassigned",
"Filter by status" : "Filter by status", "Filter by completed" : "Filter by completed",
"Open and completed" : "Open and completed", "Open and completed" : "Open and completed",
"Open" : "Open", "Open" : "Open",
"Completed" : "Completed", "Completed" : "Completed",
@@ -257,9 +256,8 @@ OC.L10N.register(
"Add due date" : "Add due date", "Add due date" : "Add due date",
"Choose a date" : "Choose a date", "Choose a date" : "Choose a date",
"Remove due date" : "Remove due date", "Remove due date" : "Remove due date",
"Mark as done" : "Mark as done",
"Due at:" : "Due at:", "Due at:" : "Due at:",
"Not done" : "Not done", "Not completed" : "Not completed",
"Unarchive card" : "Unarchive card", "Unarchive card" : "Unarchive card",
"Archive card" : "Archive card", "Archive card" : "Archive card",
"Select Date" : "Select Date", "Select Date" : "Select Date",
@@ -275,9 +273,11 @@ OC.L10N.register(
"Todo items" : "Todo items", "Todo items" : "Todo items",
"{count} comments, {unread} unread" : "{count} comments, {unread} unread", "{count} comments, {unread} unread" : "{count} comments, {unread} unread",
"Edit card title" : "Edit card title", "Edit card title" : "Edit card title",
"Card details" : "Card details",
"Assign to me" : "Assign to me", "Assign to me" : "Assign to me",
"Unassign myself" : "Unassign myself", "Unassign myself" : "Unassign myself",
"Mark as not done" : "Mark as not done", "Mark as not done" : "Mark as not done",
"Mark as done" : "Mark as done",
"Delete card" : "Delete card", "Delete card" : "Delete card",
"Card deleted" : "Card deleted", "Card deleted" : "Card deleted",
"seconds ago" : "seconds ago", "seconds ago" : "seconds ago",
@@ -316,8 +316,6 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Show boards in calendar/tasks", "Show boards in calendar/tasks" : "Show boards in calendar/tasks",
"Limit board creation to some groups" : "Limit board creation to some groups", "Limit board creation to some groups" : "Limit board creation to some groups",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them.",
"Cancel edit" : "Cancel edit",
"Save board" : "Save board",
"Board details" : "Board details", "Board details" : "Board details",
"Edit board" : "Edit board", "Edit board" : "Edit board",
"Clone board" : "Clone board", "Clone board" : "Clone board",
@@ -343,6 +341,7 @@ OC.L10N.register(
"No due" : "No due", "No due" : "No due",
"Search for {searchQuery} in all boards" : "Search for {searchQuery} in all boards", "Search for {searchQuery} in all boards" : "Search for {searchQuery} in all boards",
"No results found" : "No results found", "No results found" : "No results found",
"This weekend {timeLocale}" : "This weekend {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck board {name}\n* Last modified on {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Deck board {name}\n* Last modified on {lastMod}",
"{stack} in {board}" : "{stack} in {board}", "{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Click to expand description", "Click to expand description" : "Click to expand description",
@@ -362,7 +361,6 @@ OC.L10N.register(
"upcoming cards" : "upcoming cards", "upcoming cards" : "upcoming cards",
"New card" : "New card", "New card" : "New card",
"Due on {date}" : "Due on {date}", "Due on {date}" : "Due on {date}",
"This weekend {timeLocale}" : "This weekend {timeLocale}",
"Tomorrow {timeLocale}" : "Tomorrow {timeLocale}", "Tomorrow {timeLocale}" : "Tomorrow {timeLocale}",
"Later today {timeLocale}" : "Later today {timeLocale}", "Later today {timeLocale}" : "Later today {timeLocale}",
"Link to a board" : "Link to a board", "Link to a board" : "Link to a board",
@@ -376,9 +374,16 @@ OC.L10N.register(
"Share with a Deck card" : "Share with a Deck card", "Share with a Deck card" : "Share with a Deck card",
"Share {file} with a Deck card" : "Share {file} with a Deck card", "Share {file} with a Deck card" : "Share {file} with a Deck card",
"Share" : "Share", "Share" : "Share",
"A <strong>card description</strong> inside the Deck app has been changed" : "A <strong>card description</strong> inside the Deck app has been changed",
"Timeline" : "Timeline",
"Share board with a user, group or circle …" : "Share board with a user, group or circle …",
"Searching for users, groups and circles …" : "Searching for users, groups and circles …", "Searching for users, groups and circles …" : "Searching for users, groups and circles …",
"(Circle)" : "(Circle)", "(Circle)" : "(Circle)",
"Assign to users/groups/circles" : "Assign to users/groups/circles", "Assign to users/groups/circles" : "Assign to users/groups/circles",
"Filter by completed" : "Filter by completed" "Next week" : "Next week",
"Next month" : "Next month",
"List is empty" : "List is empty",
"Limit deck usage of groups" : "Limit deck usage of groups",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -118,7 +118,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "Invalid date, date format must be YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Invalid date, date format must be YYYY-MM-DD",
"Personal planning and team project organization" : "Personal planning and team project organization", "Personal planning and team project organization" : "Personal planning and team project organization",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized",
"Card details" : "Card details",
"Add board" : "Add board", "Add board" : "Add board",
"Select the board to link to a project" : "Select the board to link to a project", "Select the board to link to a project" : "Select the board to link to a project",
"Search by board title" : "Search by board title", "Search by board title" : "Search by board title",
@@ -148,7 +147,7 @@
"Filter by tag" : "Filter by tag", "Filter by tag" : "Filter by tag",
"Filter by assigned user" : "Filter by assigned user", "Filter by assigned user" : "Filter by assigned user",
"Unassigned" : "Unassigned", "Unassigned" : "Unassigned",
"Filter by status" : "Filter by status", "Filter by completed" : "Filter by completed",
"Open and completed" : "Open and completed", "Open and completed" : "Open and completed",
"Open" : "Open", "Open" : "Open",
"Completed" : "Completed", "Completed" : "Completed",
@@ -255,9 +254,8 @@
"Add due date" : "Add due date", "Add due date" : "Add due date",
"Choose a date" : "Choose a date", "Choose a date" : "Choose a date",
"Remove due date" : "Remove due date", "Remove due date" : "Remove due date",
"Mark as done" : "Mark as done",
"Due at:" : "Due at:", "Due at:" : "Due at:",
"Not done" : "Not done", "Not completed" : "Not completed",
"Unarchive card" : "Unarchive card", "Unarchive card" : "Unarchive card",
"Archive card" : "Archive card", "Archive card" : "Archive card",
"Select Date" : "Select Date", "Select Date" : "Select Date",
@@ -273,9 +271,11 @@
"Todo items" : "Todo items", "Todo items" : "Todo items",
"{count} comments, {unread} unread" : "{count} comments, {unread} unread", "{count} comments, {unread} unread" : "{count} comments, {unread} unread",
"Edit card title" : "Edit card title", "Edit card title" : "Edit card title",
"Card details" : "Card details",
"Assign to me" : "Assign to me", "Assign to me" : "Assign to me",
"Unassign myself" : "Unassign myself", "Unassign myself" : "Unassign myself",
"Mark as not done" : "Mark as not done", "Mark as not done" : "Mark as not done",
"Mark as done" : "Mark as done",
"Delete card" : "Delete card", "Delete card" : "Delete card",
"Card deleted" : "Card deleted", "Card deleted" : "Card deleted",
"seconds ago" : "seconds ago", "seconds ago" : "seconds ago",
@@ -314,8 +314,6 @@
"Show boards in calendar/tasks" : "Show boards in calendar/tasks", "Show boards in calendar/tasks" : "Show boards in calendar/tasks",
"Limit board creation to some groups" : "Limit board creation to some groups", "Limit board creation to some groups" : "Limit board creation to some groups",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them.",
"Cancel edit" : "Cancel edit",
"Save board" : "Save board",
"Board details" : "Board details", "Board details" : "Board details",
"Edit board" : "Edit board", "Edit board" : "Edit board",
"Clone board" : "Clone board", "Clone board" : "Clone board",
@@ -341,6 +339,7 @@
"No due" : "No due", "No due" : "No due",
"Search for {searchQuery} in all boards" : "Search for {searchQuery} in all boards", "Search for {searchQuery} in all boards" : "Search for {searchQuery} in all boards",
"No results found" : "No results found", "No results found" : "No results found",
"This weekend {timeLocale}" : "This weekend {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck board {name}\n* Last modified on {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Deck board {name}\n* Last modified on {lastMod}",
"{stack} in {board}" : "{stack} in {board}", "{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Click to expand description", "Click to expand description" : "Click to expand description",
@@ -360,7 +359,6 @@
"upcoming cards" : "upcoming cards", "upcoming cards" : "upcoming cards",
"New card" : "New card", "New card" : "New card",
"Due on {date}" : "Due on {date}", "Due on {date}" : "Due on {date}",
"This weekend {timeLocale}" : "This weekend {timeLocale}",
"Tomorrow {timeLocale}" : "Tomorrow {timeLocale}", "Tomorrow {timeLocale}" : "Tomorrow {timeLocale}",
"Later today {timeLocale}" : "Later today {timeLocale}", "Later today {timeLocale}" : "Later today {timeLocale}",
"Link to a board" : "Link to a board", "Link to a board" : "Link to a board",
@@ -374,9 +372,16 @@
"Share with a Deck card" : "Share with a Deck card", "Share with a Deck card" : "Share with a Deck card",
"Share {file} with a Deck card" : "Share {file} with a Deck card", "Share {file} with a Deck card" : "Share {file} with a Deck card",
"Share" : "Share", "Share" : "Share",
"A <strong>card description</strong> inside the Deck app has been changed" : "A <strong>card description</strong> inside the Deck app has been changed",
"Timeline" : "Timeline",
"Share board with a user, group or circle …" : "Share board with a user, group or circle …",
"Searching for users, groups and circles …" : "Searching for users, groups and circles …", "Searching for users, groups and circles …" : "Searching for users, groups and circles …",
"(Circle)" : "(Circle)", "(Circle)" : "(Circle)",
"Assign to users/groups/circles" : "Assign to users/groups/circles", "Assign to users/groups/circles" : "Assign to users/groups/circles",
"Filter by completed" : "Filter by completed" "Next week" : "Next week",
"Next month" : "Next month",
"List is empty" : "List is empty",
"Limit deck usage of groups" : "Limit deck usage of groups",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -130,6 +130,9 @@ OC.L10N.register(
"Link to a board" : "Ligilo al tabulo", "Link to a board" : "Ligilo al tabulo",
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita", "Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita",
"Error creating the share" : "Eraro dum kreo de la kunhavigo", "Error creating the share" : "Eraro dum kreo de la kunhavigo",
"Share" : "Kunhavigi" "Share" : "Kunhavigi",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Karta priskribo</strong> ene de la aplikaĵo Kartaro ŝanĝiĝis",
"Timeline" : "Kronologio",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limigo de Kartaro („Deck“) baros uzantojn, kiuj ne estas en tiuj grupoj, krei iliajn proprajn tabulojn. Uzantoj tamen eblos labori kun tabuloj kunhavigitaj kun ili."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -128,6 +128,9 @@
"Link to a board" : "Ligilo al tabulo", "Link to a board" : "Ligilo al tabulo",
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita", "Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita",
"Error creating the share" : "Eraro dum kreo de la kunhavigo", "Error creating the share" : "Eraro dum kreo de la kunhavigo",
"Share" : "Kunhavigi" "Share" : "Kunhavigi",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Karta priskribo</strong> ene de la aplikaĵo Kartaro ŝanĝiĝis",
"Timeline" : "Kronologio",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limigo de Kartaro („Deck“) baros uzantojn, kiuj ne estas en tiuj grupoj, krei iliajn proprajn tabulojn. Uzantoj tamen eblos labori kun tabuloj kunhavigitaj kun ili."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -120,7 +120,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "Fecha no válida, el formato de las fechas debe ser AAAA-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Fecha no válida, el formato de las fechas debe ser AAAA-MM-DD",
"Personal planning and team project organization" : "Planificación personal y organización de proyecto de equipo", "Personal planning and team project organization" : "Planificación personal y organización de proyecto de equipo",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto",
"Card details" : "Detalles de la tarjeta",
"Add board" : "Añadir tablero", "Add board" : "Añadir tablero",
"Select the board to link to a project" : "Selecciona el tablero que enlazar a un proyecto", "Select the board to link to a project" : "Selecciona el tablero que enlazar a un proyecto",
"Search by board title" : "Buscar por título de tablero", "Search by board title" : "Buscar por título de tablero",
@@ -150,6 +149,7 @@ OC.L10N.register(
"Filter by tag" : "Filtrar por etiqueta", "Filter by tag" : "Filtrar por etiqueta",
"Filter by assigned user" : "Filtrar por usuario asignado", "Filter by assigned user" : "Filtrar por usuario asignado",
"Unassigned" : "No asignado", "Unassigned" : "No asignado",
"Filter by completed" : "Filtrar por completados",
"Open and completed" : "Abiertos y completados", "Open and completed" : "Abiertos y completados",
"Open" : "Abrir", "Open" : "Abrir",
"Completed" : "Completado", "Completed" : "Completado",
@@ -256,9 +256,8 @@ OC.L10N.register(
"Add due date" : "Añadir fecha de vencimiento", "Add due date" : "Añadir fecha de vencimiento",
"Choose a date" : "Elija una fecha", "Choose a date" : "Elija una fecha",
"Remove due date" : "Eliminar fecha límite", "Remove due date" : "Eliminar fecha límite",
"Mark as done" : "Marcar como hecho",
"Due at:" : "Vence el:", "Due at:" : "Vence el:",
"Not done" : "No está finalizado", "Not completed" : "No completado",
"Unarchive card" : "Desarchivar tarjeta", "Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta", "Archive card" : "Archivar tarjeta",
"Select Date" : "Seleccione la fecha", "Select Date" : "Seleccione la fecha",
@@ -274,9 +273,11 @@ OC.L10N.register(
"Todo items" : "Ítems pendientes", "Todo items" : "Ítems pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer", "{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar el título de la tarjeta", "Edit card title" : "Editar el título de la tarjeta",
"Card details" : "Detalles de la tarjeta",
"Assign to me" : "Asignarme a mí", "Assign to me" : "Asignarme a mí",
"Unassign myself" : "Desasignarme a mí mismo", "Unassign myself" : "Desasignarme a mí mismo",
"Mark as not done" : "Marcar como no completado", "Mark as not done" : "Marcar como no completado",
"Mark as done" : "Marcar como hecho",
"Delete card" : "Eliminar tarjeta", "Delete card" : "Eliminar tarjeta",
"Card deleted" : "Tarjeta borrada", "Card deleted" : "Tarjeta borrada",
"seconds ago" : "hace unos segundos", "seconds ago" : "hace unos segundos",
@@ -315,7 +316,6 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas", "Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas",
"Limit board creation to some groups" : "Limitar la creación de tableros a algunos grupos", "Limit board creation to some groups" : "Limitar la creación de tableros a algunos grupos",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Los usuarios fuera de estos grupos no podrán crear sus propios tableros, sin embargo, podrán trabajar en tableros que han sido compartidos con ellos.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Los usuarios fuera de estos grupos no podrán crear sus propios tableros, sin embargo, podrán trabajar en tableros que han sido compartidos con ellos.",
"Cancel edit" : "Cacelar edición",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar tablero", "Edit board" : "Editar tablero",
"Clone board" : "Clonar tablero", "Clone board" : "Clonar tablero",
@@ -341,6 +341,7 @@ OC.L10N.register(
"No due" : "Sin finalizar", "No due" : "Sin finalizar",
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros", "Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",
"No results found" : "No se encontraron resultados", "No results found" : "No se encontraron resultados",
"This weekend {timeLocale}" : "Este fin de semana {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Tablero Deck {name}\n* Última modificación en {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Tablero Deck {name}\n* Última modificación en {lastMod}",
"{stack} in {board}" : "{stack} en {board}", "{stack} in {board}" : "{stack} en {board}",
"Click to expand description" : "Pulse para expandir la descripción", "Click to expand description" : "Pulse para expandir la descripción",
@@ -360,7 +361,6 @@ OC.L10N.register(
"upcoming cards" : "próximas tarjetas", "upcoming cards" : "próximas tarjetas",
"New card" : "Nueva tarjeta", "New card" : "Nueva tarjeta",
"Due on {date}" : "Vence en {date}", "Due on {date}" : "Vence en {date}",
"This weekend {timeLocale}" : "Este fin de semana {timeLocale}",
"Tomorrow {timeLocale}" : "Mañana {timeLocale}", "Tomorrow {timeLocale}" : "Mañana {timeLocale}",
"Later today {timeLocale}" : "Hoy, más tarde {timeLocale}", "Later today {timeLocale}" : "Hoy, más tarde {timeLocale}",
"Link to a board" : "Enlace a un tablero", "Link to a board" : "Enlace a un tablero",
@@ -374,9 +374,16 @@ OC.L10N.register(
"Share with a Deck card" : "Compartir con una tarjeta de Deck", "Share with a Deck card" : "Compartir con una tarjeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck", "Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck",
"Share" : "Compartir", "Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Una <strong>descripción de tarjeta</strong> dentro de la app Deck ha cambiado",
"Timeline" : "Línea de tiempo",
"Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo ...",
"Searching for users, groups and circles …" : "Buscando usuarios, grupos o círculos...", "Searching for users, groups and circles …" : "Buscando usuarios, grupos o círculos...",
"(Circle)" : "(Circle)", "(Circle)" : "(Circle)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos", "Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Filter by completed" : "Filtrar por completados" "Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"List is empty" : "La lista está vacía",
"Limit deck usage of groups" : "Limitar el uso de Deck a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Deck impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos."
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

View File

@@ -118,7 +118,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "Fecha no válida, el formato de las fechas debe ser AAAA-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Fecha no válida, el formato de las fechas debe ser AAAA-MM-DD",
"Personal planning and team project organization" : "Planificación personal y organización de proyecto de equipo", "Personal planning and team project organization" : "Planificación personal y organización de proyecto de equipo",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto",
"Card details" : "Detalles de la tarjeta",
"Add board" : "Añadir tablero", "Add board" : "Añadir tablero",
"Select the board to link to a project" : "Selecciona el tablero que enlazar a un proyecto", "Select the board to link to a project" : "Selecciona el tablero que enlazar a un proyecto",
"Search by board title" : "Buscar por título de tablero", "Search by board title" : "Buscar por título de tablero",
@@ -148,6 +147,7 @@
"Filter by tag" : "Filtrar por etiqueta", "Filter by tag" : "Filtrar por etiqueta",
"Filter by assigned user" : "Filtrar por usuario asignado", "Filter by assigned user" : "Filtrar por usuario asignado",
"Unassigned" : "No asignado", "Unassigned" : "No asignado",
"Filter by completed" : "Filtrar por completados",
"Open and completed" : "Abiertos y completados", "Open and completed" : "Abiertos y completados",
"Open" : "Abrir", "Open" : "Abrir",
"Completed" : "Completado", "Completed" : "Completado",
@@ -254,9 +254,8 @@
"Add due date" : "Añadir fecha de vencimiento", "Add due date" : "Añadir fecha de vencimiento",
"Choose a date" : "Elija una fecha", "Choose a date" : "Elija una fecha",
"Remove due date" : "Eliminar fecha límite", "Remove due date" : "Eliminar fecha límite",
"Mark as done" : "Marcar como hecho",
"Due at:" : "Vence el:", "Due at:" : "Vence el:",
"Not done" : "No está finalizado", "Not completed" : "No completado",
"Unarchive card" : "Desarchivar tarjeta", "Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta", "Archive card" : "Archivar tarjeta",
"Select Date" : "Seleccione la fecha", "Select Date" : "Seleccione la fecha",
@@ -272,9 +271,11 @@
"Todo items" : "Ítems pendientes", "Todo items" : "Ítems pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer", "{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar el título de la tarjeta", "Edit card title" : "Editar el título de la tarjeta",
"Card details" : "Detalles de la tarjeta",
"Assign to me" : "Asignarme a mí", "Assign to me" : "Asignarme a mí",
"Unassign myself" : "Desasignarme a mí mismo", "Unassign myself" : "Desasignarme a mí mismo",
"Mark as not done" : "Marcar como no completado", "Mark as not done" : "Marcar como no completado",
"Mark as done" : "Marcar como hecho",
"Delete card" : "Eliminar tarjeta", "Delete card" : "Eliminar tarjeta",
"Card deleted" : "Tarjeta borrada", "Card deleted" : "Tarjeta borrada",
"seconds ago" : "hace unos segundos", "seconds ago" : "hace unos segundos",
@@ -313,7 +314,6 @@
"Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas", "Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas",
"Limit board creation to some groups" : "Limitar la creación de tableros a algunos grupos", "Limit board creation to some groups" : "Limitar la creación de tableros a algunos grupos",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Los usuarios fuera de estos grupos no podrán crear sus propios tableros, sin embargo, podrán trabajar en tableros que han sido compartidos con ellos.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Los usuarios fuera de estos grupos no podrán crear sus propios tableros, sin embargo, podrán trabajar en tableros que han sido compartidos con ellos.",
"Cancel edit" : "Cacelar edición",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar tablero", "Edit board" : "Editar tablero",
"Clone board" : "Clonar tablero", "Clone board" : "Clonar tablero",
@@ -339,6 +339,7 @@
"No due" : "Sin finalizar", "No due" : "Sin finalizar",
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros", "Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",
"No results found" : "No se encontraron resultados", "No results found" : "No se encontraron resultados",
"This weekend {timeLocale}" : "Este fin de semana {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Tablero Deck {name}\n* Última modificación en {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Tablero Deck {name}\n* Última modificación en {lastMod}",
"{stack} in {board}" : "{stack} en {board}", "{stack} in {board}" : "{stack} en {board}",
"Click to expand description" : "Pulse para expandir la descripción", "Click to expand description" : "Pulse para expandir la descripción",
@@ -358,7 +359,6 @@
"upcoming cards" : "próximas tarjetas", "upcoming cards" : "próximas tarjetas",
"New card" : "Nueva tarjeta", "New card" : "Nueva tarjeta",
"Due on {date}" : "Vence en {date}", "Due on {date}" : "Vence en {date}",
"This weekend {timeLocale}" : "Este fin de semana {timeLocale}",
"Tomorrow {timeLocale}" : "Mañana {timeLocale}", "Tomorrow {timeLocale}" : "Mañana {timeLocale}",
"Later today {timeLocale}" : "Hoy, más tarde {timeLocale}", "Later today {timeLocale}" : "Hoy, más tarde {timeLocale}",
"Link to a board" : "Enlace a un tablero", "Link to a board" : "Enlace a un tablero",
@@ -372,9 +372,16 @@
"Share with a Deck card" : "Compartir con una tarjeta de Deck", "Share with a Deck card" : "Compartir con una tarjeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck", "Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck",
"Share" : "Compartir", "Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Una <strong>descripción de tarjeta</strong> dentro de la app Deck ha cambiado",
"Timeline" : "Línea de tiempo",
"Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo ...",
"Searching for users, groups and circles …" : "Buscando usuarios, grupos o círculos...", "Searching for users, groups and circles …" : "Buscando usuarios, grupos o círculos...",
"(Circle)" : "(Circle)", "(Circle)" : "(Circle)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos", "Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Filter by completed" : "Filtrar por completados" "Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"List is empty" : "La lista está vacía",
"Limit deck usage of groups" : "Limitar el uso de Deck a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Deck impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
} }

View File

@@ -34,18 +34,12 @@ OC.L10N.register(
"Later" : "Después", "Later" : "Después",
"copy" : "copiar", "copy" : "copiar",
"Done" : "Hecho", "Done" : "Hecho",
"The file was uploaded" : "El archivo ha sido subido",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
"No file was uploaded" : "No se subió ningún archivo ", "No file was uploaded" : "No se subió ningún archivo ",
"Missing a temporary folder" : "Falta un directorio temporal", "Missing a temporary folder" : "Falta un directorio temporal",
"Could not write file to disk" : "No se pudo escribir el archivo en el disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Card not found" : "Tarjeta no encontrada", "Card not found" : "Tarjeta no encontrada",
"Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, favor de seguir el formato AAAA-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, favor de seguir el formato AAAA-MM-DD",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto",
"Card details" : "Detalles de la tarjeta",
"Add board" : "Nuevo Tablero", "Add board" : "Nuevo Tablero",
"Search by board title" : "Buscar por título de tablero", "Search by board title" : "Buscar por título de tablero",
"Select board" : "Selecciona tablero", "Select board" : "Selecciona tablero",
@@ -87,6 +81,7 @@ OC.L10N.register(
"Remove due date" : "Eliminar fecha de vencimiento", "Remove due date" : "Eliminar fecha de vencimiento",
"Select Date" : "Seleccionar fecha", "Select Date" : "Seleccionar fecha",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"Card details" : "Detalles de la tarjeta",
"seconds ago" : "segundos", "seconds ago" : "segundos",
"Keyboard shortcuts" : "Atajos de teclado", "Keyboard shortcuts" : "Atajos de teclado",
"Keyboard shortcut" : "Atajo del teclado", "Keyboard shortcut" : "Atajo del teclado",
@@ -112,6 +107,11 @@ OC.L10N.register(
"Close" : "Cerrar", "Close" : "Cerrar",
"Share with a Deck card" : "Compartir con una tarjeta del Tablero", "Share with a Deck card" : "Compartir con una tarjeta del Tablero",
"Share {file} with a Deck card" : "Compartir {file} con una tarjeta del Tablero", "Share {file} with a Deck card" : "Compartir {file} con una tarjeta del Tablero",
"Share" : "Compartir" "Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Una <strong>descripción de tarjeta</strong> dentro de la app Deck ha cambiado",
"Next week" : "Proxima semana",
"Next month" : "Proximo mes",
"Limit deck usage of groups" : "Limitar el uso del Tablero a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Tableros impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos."
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

View File

@@ -32,18 +32,12 @@
"Later" : "Después", "Later" : "Después",
"copy" : "copiar", "copy" : "copiar",
"Done" : "Hecho", "Done" : "Hecho",
"The file was uploaded" : "El archivo ha sido subido",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
"No file was uploaded" : "No se subió ningún archivo ", "No file was uploaded" : "No se subió ningún archivo ",
"Missing a temporary folder" : "Falta un directorio temporal", "Missing a temporary folder" : "Falta un directorio temporal",
"Could not write file to disk" : "No se pudo escribir el archivo en el disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Card not found" : "Tarjeta no encontrada", "Card not found" : "Tarjeta no encontrada",
"Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, favor de seguir el formato AAAA-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, favor de seguir el formato AAAA-MM-DD",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto",
"Card details" : "Detalles de la tarjeta",
"Add board" : "Nuevo Tablero", "Add board" : "Nuevo Tablero",
"Search by board title" : "Buscar por título de tablero", "Search by board title" : "Buscar por título de tablero",
"Select board" : "Selecciona tablero", "Select board" : "Selecciona tablero",
@@ -85,6 +79,7 @@
"Remove due date" : "Eliminar fecha de vencimiento", "Remove due date" : "Eliminar fecha de vencimiento",
"Select Date" : "Seleccionar fecha", "Select Date" : "Seleccionar fecha",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"Card details" : "Detalles de la tarjeta",
"seconds ago" : "segundos", "seconds ago" : "segundos",
"Keyboard shortcuts" : "Atajos de teclado", "Keyboard shortcuts" : "Atajos de teclado",
"Keyboard shortcut" : "Atajo del teclado", "Keyboard shortcut" : "Atajo del teclado",
@@ -110,6 +105,11 @@
"Close" : "Cerrar", "Close" : "Cerrar",
"Share with a Deck card" : "Compartir con una tarjeta del Tablero", "Share with a Deck card" : "Compartir con una tarjeta del Tablero",
"Share {file} with a Deck card" : "Compartir {file} con una tarjeta del Tablero", "Share {file} with a Deck card" : "Compartir {file} con una tarjeta del Tablero",
"Share" : "Compartir" "Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Una <strong>descripción de tarjeta</strong> dentro de la app Deck ha cambiado",
"Next week" : "Proxima semana",
"Next month" : "Proximo mes",
"Limit deck usage of groups" : "Limitar el uso del Tablero a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Tableros impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
} }

View File

@@ -111,7 +111,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, por favor sigue el formato AAAA-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Personal planning and team project organization" : "Planificación personal y organización de proyectos en equipo", "Personal planning and team project organization" : "Planificación personal y organización de proyectos en equipo",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización estilo Kanban destinada a la planificación personal y la organización de proyectos en equipo integrada con Nextcloud.\n \n \n - 📥 Añade tus tareas a tarjetas y ordénalas\n - 📄 Toma notas adicionales en Markdown\n - 🔖 Asigna etiquetas para una mejor organización\n - 👥 Comparte con tu equipo, amigos o familia\n - 📎 Adjunta archivos e incrustarlos en tu descripción en Markdown\n - 💬 Discute con tu equipo usando comentarios\n - ⚡ Sigue los cambios en el flujo de actividad\n - 🚀 Organiza tu proyecto", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización estilo Kanban destinada a la planificación personal y la organización de proyectos en equipo integrada con Nextcloud.\n \n \n - 📥 Añade tus tareas a tarjetas y ordénalas\n - 📄 Toma notas adicionales en Markdown\n - 🔖 Asigna etiquetas para una mejor organización\n - 👥 Comparte con tu equipo, amigos o familia\n - 📎 Adjunta archivos e incrustarlos en tu descripción en Markdown\n - 💬 Discute con tu equipo usando comentarios\n - ⚡ Sigue los cambios en el flujo de actividad\n - 🚀 Organiza tu proyecto",
"Card details" : "Detalles de la tarjeta",
"Add board" : "Agregar tablero", "Add board" : "Agregar tablero",
"Select the board to link to a project" : "Selecciona el tablero para vincularlo a un proyecto", "Select the board to link to a project" : "Selecciona el tablero para vincularlo a un proyecto",
"Search by board title" : "Buscar por título del tablero", "Search by board title" : "Buscar por título del tablero",
@@ -234,7 +233,7 @@ OC.L10N.register(
"Choose attachment" : "Elegir adjunto", "Choose attachment" : "Elegir adjunto",
"Set a due date" : "Establecer una fecha de vencimiento", "Set a due date" : "Establecer una fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Mark as done" : "Marcar como hecha", "Not completed" : "No completado",
"Unarchive card" : "Desarchivar tarjeta", "Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta", "Archive card" : "Archivar tarjeta",
"Select Date" : "Seleccionar fecha", "Select Date" : "Seleccionar fecha",
@@ -243,8 +242,10 @@ OC.L10N.register(
"Todo items" : "Elementos pendientes", "Todo items" : "Elementos pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer", "{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar título de la tarjeta", "Edit card title" : "Editar título de la tarjeta",
"Card details" : "Detalles de la tarjeta",
"Assign to me" : "Asignarme la tarjeta", "Assign to me" : "Asignarme la tarjeta",
"Unassign myself" : "Desasignarme la tarjeta", "Unassign myself" : "Desasignarme la tarjeta",
"Mark as done" : "Marcar como hecha",
"Delete card" : "Eliminar tarjeta", "Delete card" : "Eliminar tarjeta",
"Card deleted" : "Tarjeta eliminada", "Card deleted" : "Tarjeta eliminada",
"seconds ago" : "hace segundos", "seconds ago" : "hace segundos",
@@ -263,7 +264,6 @@ OC.L10N.register(
"Use bigger card view" : "Usar vista de tarjeta más grande", "Use bigger card view" : "Usar vista de tarjeta más grande",
"Show card ID badge" : "Mostrar identificación de la tarjeta", "Show card ID badge" : "Mostrar identificación de la tarjeta",
"Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas", "Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas",
"Cancel edit" : "Cancelar edición",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Clone board" : "Clonar tablero", "Clone board" : "Clonar tablero",
@@ -317,8 +317,16 @@ OC.L10N.register(
"Share with a Deck card" : "Compartir con una tarjeta de Deck", "Share with a Deck card" : "Compartir con una tarjeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck", "Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck",
"Share" : "Compartir", "Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Se ha cambiado una <strong>descripción de la tarjeta</strong> en la aplicación Deck",
"Timeline" : "Línea de tiempo",
"Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo …",
"Searching for users, groups and circles …" : "Buscando usuarios, grupos y círculos …", "Searching for users, groups and circles …" : "Buscando usuarios, grupos y círculos …",
"(Circle)" : "(Círculo)", "(Circle)" : "(Círculo)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos" "Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"List is empty" : "La lista está vacía",
"Limit deck usage of groups" : "Limitar uso de Deck a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Deck bloqueará a los usuarios que no formen parte de esos grupos para que no puedan crear sus propios tableros. Los usuarios aún podrán trabajar en tableros que se hayan compartido con ellos."
}, },
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

View File

@@ -109,7 +109,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, por favor sigue el formato AAAA-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Personal planning and team project organization" : "Planificación personal y organización de proyectos en equipo", "Personal planning and team project organization" : "Planificación personal y organización de proyectos en equipo",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización estilo Kanban destinada a la planificación personal y la organización de proyectos en equipo integrada con Nextcloud.\n \n \n - 📥 Añade tus tareas a tarjetas y ordénalas\n - 📄 Toma notas adicionales en Markdown\n - 🔖 Asigna etiquetas para una mejor organización\n - 👥 Comparte con tu equipo, amigos o familia\n - 📎 Adjunta archivos e incrustarlos en tu descripción en Markdown\n - 💬 Discute con tu equipo usando comentarios\n - ⚡ Sigue los cambios en el flujo de actividad\n - 🚀 Organiza tu proyecto", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck es una herramienta de organización estilo Kanban destinada a la planificación personal y la organización de proyectos en equipo integrada con Nextcloud.\n \n \n - 📥 Añade tus tareas a tarjetas y ordénalas\n - 📄 Toma notas adicionales en Markdown\n - 🔖 Asigna etiquetas para una mejor organización\n - 👥 Comparte con tu equipo, amigos o familia\n - 📎 Adjunta archivos e incrustarlos en tu descripción en Markdown\n - 💬 Discute con tu equipo usando comentarios\n - ⚡ Sigue los cambios en el flujo de actividad\n - 🚀 Organiza tu proyecto",
"Card details" : "Detalles de la tarjeta",
"Add board" : "Agregar tablero", "Add board" : "Agregar tablero",
"Select the board to link to a project" : "Selecciona el tablero para vincularlo a un proyecto", "Select the board to link to a project" : "Selecciona el tablero para vincularlo a un proyecto",
"Search by board title" : "Buscar por título del tablero", "Search by board title" : "Buscar por título del tablero",
@@ -232,7 +231,7 @@
"Choose attachment" : "Elegir adjunto", "Choose attachment" : "Elegir adjunto",
"Set a due date" : "Establecer una fecha de vencimiento", "Set a due date" : "Establecer una fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Mark as done" : "Marcar como hecha", "Not completed" : "No completado",
"Unarchive card" : "Desarchivar tarjeta", "Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta", "Archive card" : "Archivar tarjeta",
"Select Date" : "Seleccionar fecha", "Select Date" : "Seleccionar fecha",
@@ -241,8 +240,10 @@
"Todo items" : "Elementos pendientes", "Todo items" : "Elementos pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer", "{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar título de la tarjeta", "Edit card title" : "Editar título de la tarjeta",
"Card details" : "Detalles de la tarjeta",
"Assign to me" : "Asignarme la tarjeta", "Assign to me" : "Asignarme la tarjeta",
"Unassign myself" : "Desasignarme la tarjeta", "Unassign myself" : "Desasignarme la tarjeta",
"Mark as done" : "Marcar como hecha",
"Delete card" : "Eliminar tarjeta", "Delete card" : "Eliminar tarjeta",
"Card deleted" : "Tarjeta eliminada", "Card deleted" : "Tarjeta eliminada",
"seconds ago" : "hace segundos", "seconds ago" : "hace segundos",
@@ -261,7 +262,6 @@
"Use bigger card view" : "Usar vista de tarjeta más grande", "Use bigger card view" : "Usar vista de tarjeta más grande",
"Show card ID badge" : "Mostrar identificación de la tarjeta", "Show card ID badge" : "Mostrar identificación de la tarjeta",
"Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas", "Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas",
"Cancel edit" : "Cancelar edición",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Clone board" : "Clonar tablero", "Clone board" : "Clonar tablero",
@@ -315,8 +315,16 @@
"Share with a Deck card" : "Compartir con una tarjeta de Deck", "Share with a Deck card" : "Compartir con una tarjeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck", "Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck",
"Share" : "Compartir", "Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Se ha cambiado una <strong>descripción de la tarjeta</strong> en la aplicación Deck",
"Timeline" : "Línea de tiempo",
"Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo …",
"Searching for users, groups and circles …" : "Buscando usuarios, grupos y círculos …", "Searching for users, groups and circles …" : "Buscando usuarios, grupos y círculos …",
"(Circle)" : "(Círculo)", "(Circle)" : "(Círculo)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos" "Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"List is empty" : "La lista está vacía",
"Limit deck usage of groups" : "Limitar uso de Deck a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Deck bloqueará a los usuarios que no formen parte de esos grupos para que no puedan crear sus propios tableros. Los usuarios aún podrán trabajar en tableros que se hayan compartido con ellos."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
} }

View File

@@ -1,81 +1,7 @@
OC.L10N.register( OC.L10N.register(
"deck", "deck",
{ {
"You have created a new board {board}" : "Ha creado un nuevo tablero {board}",
"{user} has created a new board {board}" : "{user} ha creado un nuevo tablero {board}",
"You have deleted the board {board}" : "Eliminó el tablero {board}",
"{user} has deleted the board {board}" : "{user} eliminó el tablero {board}",
"You have restored the board {board}" : "Restauró el tablero {board}",
"{user} has restored the board {board}" : "{user} restaruó el tablero {board}",
"You have shared the board {board} with {acl}" : "Compartió el tablero {board} con {acl}",
"{user} has shared the board {board} with {acl}" : "{user} compartió el tablero {board} con {acl}",
"You have removed {acl} from the board {board}" : "Eliminó {acl} del tablero {board}",
"{user} has removed {acl} from the board {board}" : "{user} removió {acl} del tablero {board}",
"You have renamed the board {before} to {board}" : "Renombró el tablero {before} a {board}",
"{user} has renamed the board {before} to {board}" : "{user} renombró el tablero {before} a {board}",
"You have archived the board {board}" : "Archivó el tablero {board}",
"{user} has archived the board {before}" : "{user} archivó el tablero {before}",
"You have unarchived the board {board}" : "Desarchivó el tablero {board}",
"{user} has unarchived the board {before}" : "{user} desarchivó el tablero {before}",
"You have created a new list {stack} on board {board}" : "Creó una nueva lista {stack} en el tablero {board}",
"{user} has created a new list {stack} on board {board}" : "{user} creó una nueva lista {stack} en el tablero {board}",
"You have renamed list {before} to {stack} on board {board}" : "Renombró la lista {before} a {stack} en el tablero {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} renombró la lista {before} a {stack} en el tablero {board}",
"You have deleted list {stack} on board {board}" : "Eliminó la lista {stack} en el tablero {board}",
"{user} has deleted list {stack} on board {board}" : "{user} eliminó la lista {stack} en el tablero {board}",
"You have created card {card} in list {stack} on board {board}" : "Creó la tarjeta {card} en la lista {stack} en el tablero {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} creó la tarjeta {card} en la lista {stack} en el tablero {board}",
"You have deleted card {card} in list {stack} on board {board}" : "Eliminó la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} eliminó la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have renamed the card {before} to {card}" : "Renombró la tarjeta {before} a {card}",
"{user} has renamed the card {before} to {card}" : "{user} renombró la tarjeta {before} a {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Añadió una descripción a la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} añadió una descripción a la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "Actualizó la descripción de la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} actualizó la descripción de la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have archived card {card} in list {stack} on board {board}" : "Archivó la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has archived card {card} in list {stack} on board {board}" : "{user} archivó la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "Desarchivó la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} desarchivó la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Marcó la tarjeta {card} como completada de la lista {stack} en el tablero {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} marcó la tarjeta {card} como completada de la lista {stack} en el tablero {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Marcó la tarjeta {card} como no completada de la lista {stack} en el tablero {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} marcó la tarjeta {card} como no completada de la lista {stack} en el tablero {board}",
"You have removed the due date of card {card}" : "Eliminó la fecha límite de la tarjeta {card}",
"{user} has removed the due date of card {card}" : "{user} eliminó la fecha límite de la tarjeta {card}",
"You have set the due date of card {card} to {after}" : "Estableció la fecha límite de la tarjeta {card} como {after}",
"{user} has set the due date of card {card} to {after}" : "{user} estableció la fecha límite de la tarjeta {card} como {after}",
"You have updated the due date of card {card} to {after}" : "Actualizó la fecha límite de la tarjeta {card} como {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} actualizó la fecha límite de la tarjeta {card} como {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Añadió la etiqueta {label} a la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} añadió la etiqueta {label} a la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Eliminó la etiqueta {label} de la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} eliminó la etiqueta {label} de la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have assigned {assigneduser} to card {card} on board {board}" : "Asignó a {assigneduser} la tarjeta {card} en el tablero {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asignó a {assigneduser} la tarjeta {card} en el tablero {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Quitó a {assigneduser} de la tarjeta {card} en el tablero {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} quitó a {assigneduser} de la tarjeta {card} en el tablero {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Movió la tarjeta {card} de la lista {stackBefore} a {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} movió la tarjeta {card} de la lista {stackBefore} a {stack}",
"You have added the attachment {attachment} to card {card}" : "Añadió el adjunto {attachment} a la tarjeta {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} añadió el adjunto {attachment} a la tarjeta {card}",
"You have updated the attachment {attachment} on card {card}" : "Actualizó el adjunto {attachment} de la tarjeta {card}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} actualizó el adjunto {attachment} de la tarjeta {card}",
"You have deleted the attachment {attachment} from card {card}" : "Eliminó el adjunto {attachment} de la tarjeta {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} eliminó el adjunto {attachment} de la tarjeta {card}",
"You have restored the attachment {attachment} to card {card}" : "Restauró el adjunto {attachment} de la tarjeta {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} restauró el adjunto {attachment} de la tarjeta {card}",
"You have commented on card {card}" : "Comentó en la tarjeta {card}",
"{user} has commented on card {card}" : "{user} comentó en la tarjeta {card}",
"Deck" : "Deck", "Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Cambios en la aplicación <strong>Deck</strong>",
"A <strong>board, list or card</strong> was changed" : "Un <strong>tablero, lista o tarjeta</strong> cambió",
"A <strong>comment</strong> was created on a card" : "Se creó un <strong>comentario</strong> en una tarjeta",
"A <strong>card description</strong> has been changed" : "Se cambió una <strong>descripción de tarjeta</strong>",
"Cards due today" : "Tarjetas para hoy",
"Cards due tomorrow" : "Tarjetas para mañana",
"Upcoming cards" : "Tarjetas próximas",
"Load more" : "Cargar más",
"Personal" : "Personal", "Personal" : "Personal",
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega", "The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.", "The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
@@ -96,28 +22,15 @@ OC.L10N.register(
"Could not write file to disk" : "No fue posible escribir a disco", "Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"No file uploaded or file size exceeds maximum of %s" : "No se ha cargado ningún archivo o el tamaño del archivo excede el máximo de %s", "No file uploaded or file size exceeds maximum of %s" : "No se ha cargado ningún archivo o el tamaño del archivo excede el máximo de %s",
"Card not found" : "No se encontró la tarjeta",
"Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, por favor sigue el formato AAAA-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Add board" : "Añadir pizarra",
"Move card" : "Mover tarjeta",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe", "File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?", "Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Drop your files to upload" : "Arrastre sus archivos para cargar", "Drop your files to upload" : "Arrastre sus archivos para cargar",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Archived cards" : "Tarjetas archivadas",
"Add list" : "Añadir lista",
"List name" : "Nombre de lista",
"Active filters" : "Filtros activos",
"Filter by tag" : "Filtrar por etiqueta", "Filter by tag" : "Filtrar por etiqueta",
"Unassigned" : "No asignado",
"Open" : "Abrir", "Open" : "Abrir",
"Completed" : "Completado", "Completed" : "Completado",
"Overdue" : "Con retraso",
"Next 7 days" : "Próximos 7 días",
"Next 30 days" : "Próximos 30 días",
"No due date" : "Sin fecha de vencimiento",
"Clear filter" : "Limpiar filtro",
"Hide archived cards" : "Ocultar tarjetas archivadas", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Open details" : "Abrir detalles", "Open details" : "Abrir detalles",
@@ -135,7 +48,6 @@ OC.L10N.register(
"Delete" : "Borrar", "Delete" : "Borrar",
"Failed to create share with {displayName}" : "Fallo al crear el recurso compartido denominado {displayName}", "Failed to create share with {displayName}" : "Fallo al crear el recurso compartido denominado {displayName}",
"Transfer" : "Transferir", "Transfer" : "Transferir",
"Delete list" : "Eliminar lista",
"Edit" : "Editar", "Edit" : "Editar",
"Members" : "Miembros", "Members" : "Miembros",
"Upload new files" : "Cargar nuevos archivos", "Upload new files" : "Cargar nuevos archivos",
@@ -153,13 +65,9 @@ OC.L10N.register(
"Created:" : "Creado:", "Created:" : "Creado:",
"Description" : "Descripción", "Description" : "Descripción",
"Formatting help" : "Ayuda de formato", "Formatting help" : "Ayuda de formato",
"Edit description" : "Editar descripción",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Mark as done" : "Marcar como hecho",
"Not done" : "No está finalizado",
"Archive card" : "Archivar tarjeta",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"Delete card" : "Eliminar tarjeta", "Mark as done" : "Marcar como hecho",
"seconds ago" : "hace segundos", "seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado", "Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado", "Keyboard shortcut" : "Atajo del teclado",
@@ -171,15 +79,12 @@ OC.L10N.register(
"Space" : "Espacio", "Space" : "Espacio",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Cancel edit" : "Cancelar edición",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Clone board" : "Clonar pizarra",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones", "No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros", "Delete board" : "Borrar tableros",
"No reminder" : "Sin recordatorio",
"An error occurred" : "Ha ocurrido un error", "An error occurred" : "Ha ocurrido un error",
"Today" : "Hoy", "Today" : "Hoy",
"Tomorrow" : "Mañana", "Tomorrow" : "Mañana",

View File

@@ -1,79 +1,5 @@
{ "translations": { { "translations": {
"You have created a new board {board}" : "Ha creado un nuevo tablero {board}",
"{user} has created a new board {board}" : "{user} ha creado un nuevo tablero {board}",
"You have deleted the board {board}" : "Eliminó el tablero {board}",
"{user} has deleted the board {board}" : "{user} eliminó el tablero {board}",
"You have restored the board {board}" : "Restauró el tablero {board}",
"{user} has restored the board {board}" : "{user} restaruó el tablero {board}",
"You have shared the board {board} with {acl}" : "Compartió el tablero {board} con {acl}",
"{user} has shared the board {board} with {acl}" : "{user} compartió el tablero {board} con {acl}",
"You have removed {acl} from the board {board}" : "Eliminó {acl} del tablero {board}",
"{user} has removed {acl} from the board {board}" : "{user} removió {acl} del tablero {board}",
"You have renamed the board {before} to {board}" : "Renombró el tablero {before} a {board}",
"{user} has renamed the board {before} to {board}" : "{user} renombró el tablero {before} a {board}",
"You have archived the board {board}" : "Archivó el tablero {board}",
"{user} has archived the board {before}" : "{user} archivó el tablero {before}",
"You have unarchived the board {board}" : "Desarchivó el tablero {board}",
"{user} has unarchived the board {before}" : "{user} desarchivó el tablero {before}",
"You have created a new list {stack} on board {board}" : "Creó una nueva lista {stack} en el tablero {board}",
"{user} has created a new list {stack} on board {board}" : "{user} creó una nueva lista {stack} en el tablero {board}",
"You have renamed list {before} to {stack} on board {board}" : "Renombró la lista {before} a {stack} en el tablero {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} renombró la lista {before} a {stack} en el tablero {board}",
"You have deleted list {stack} on board {board}" : "Eliminó la lista {stack} en el tablero {board}",
"{user} has deleted list {stack} on board {board}" : "{user} eliminó la lista {stack} en el tablero {board}",
"You have created card {card} in list {stack} on board {board}" : "Creó la tarjeta {card} en la lista {stack} en el tablero {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} creó la tarjeta {card} en la lista {stack} en el tablero {board}",
"You have deleted card {card} in list {stack} on board {board}" : "Eliminó la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} eliminó la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have renamed the card {before} to {card}" : "Renombró la tarjeta {before} a {card}",
"{user} has renamed the card {before} to {card}" : "{user} renombró la tarjeta {before} a {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Añadió una descripción a la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} añadió una descripción a la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "Actualizó la descripción de la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} actualizó la descripción de la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have archived card {card} in list {stack} on board {board}" : "Archivó la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has archived card {card} in list {stack} on board {board}" : "{user} archivó la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "Desarchivó la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} desarchivó la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Marcó la tarjeta {card} como completada de la lista {stack} en el tablero {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} marcó la tarjeta {card} como completada de la lista {stack} en el tablero {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Marcó la tarjeta {card} como no completada de la lista {stack} en el tablero {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} marcó la tarjeta {card} como no completada de la lista {stack} en el tablero {board}",
"You have removed the due date of card {card}" : "Eliminó la fecha límite de la tarjeta {card}",
"{user} has removed the due date of card {card}" : "{user} eliminó la fecha límite de la tarjeta {card}",
"You have set the due date of card {card} to {after}" : "Estableció la fecha límite de la tarjeta {card} como {after}",
"{user} has set the due date of card {card} to {after}" : "{user} estableció la fecha límite de la tarjeta {card} como {after}",
"You have updated the due date of card {card} to {after}" : "Actualizó la fecha límite de la tarjeta {card} como {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} actualizó la fecha límite de la tarjeta {card} como {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Añadió la etiqueta {label} a la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} añadió la etiqueta {label} a la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Eliminó la etiqueta {label} de la tarjeta {card} de la lista {stack} en el tablero {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} eliminó la etiqueta {label} de la tarjeta {card} de la lista {stack} en el tablero {board}",
"You have assigned {assigneduser} to card {card} on board {board}" : "Asignó a {assigneduser} la tarjeta {card} en el tablero {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asignó a {assigneduser} la tarjeta {card} en el tablero {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Quitó a {assigneduser} de la tarjeta {card} en el tablero {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} quitó a {assigneduser} de la tarjeta {card} en el tablero {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Movió la tarjeta {card} de la lista {stackBefore} a {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} movió la tarjeta {card} de la lista {stackBefore} a {stack}",
"You have added the attachment {attachment} to card {card}" : "Añadió el adjunto {attachment} a la tarjeta {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} añadió el adjunto {attachment} a la tarjeta {card}",
"You have updated the attachment {attachment} on card {card}" : "Actualizó el adjunto {attachment} de la tarjeta {card}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} actualizó el adjunto {attachment} de la tarjeta {card}",
"You have deleted the attachment {attachment} from card {card}" : "Eliminó el adjunto {attachment} de la tarjeta {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} eliminó el adjunto {attachment} de la tarjeta {card}",
"You have restored the attachment {attachment} to card {card}" : "Restauró el adjunto {attachment} de la tarjeta {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} restauró el adjunto {attachment} de la tarjeta {card}",
"You have commented on card {card}" : "Comentó en la tarjeta {card}",
"{user} has commented on card {card}" : "{user} comentó en la tarjeta {card}",
"Deck" : "Deck", "Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Cambios en la aplicación <strong>Deck</strong>",
"A <strong>board, list or card</strong> was changed" : "Un <strong>tablero, lista o tarjeta</strong> cambió",
"A <strong>comment</strong> was created on a card" : "Se creó un <strong>comentario</strong> en una tarjeta",
"A <strong>card description</strong> has been changed" : "Se cambió una <strong>descripción de tarjeta</strong>",
"Cards due today" : "Tarjetas para hoy",
"Cards due tomorrow" : "Tarjetas para mañana",
"Upcoming cards" : "Tarjetas próximas",
"Load more" : "Cargar más",
"Personal" : "Personal", "Personal" : "Personal",
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega", "The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.", "The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
@@ -94,28 +20,15 @@
"Could not write file to disk" : "No fue posible escribir a disco", "Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"No file uploaded or file size exceeds maximum of %s" : "No se ha cargado ningún archivo o el tamaño del archivo excede el máximo de %s", "No file uploaded or file size exceeds maximum of %s" : "No se ha cargado ningún archivo o el tamaño del archivo excede el máximo de %s",
"Card not found" : "No se encontró la tarjeta",
"Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, por favor sigue el formato AAAA-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Add board" : "Añadir pizarra",
"Move card" : "Mover tarjeta",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe", "File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?", "Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Drop your files to upload" : "Arrastre sus archivos para cargar", "Drop your files to upload" : "Arrastre sus archivos para cargar",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Archived cards" : "Tarjetas archivadas",
"Add list" : "Añadir lista",
"List name" : "Nombre de lista",
"Active filters" : "Filtros activos",
"Filter by tag" : "Filtrar por etiqueta", "Filter by tag" : "Filtrar por etiqueta",
"Unassigned" : "No asignado",
"Open" : "Abrir", "Open" : "Abrir",
"Completed" : "Completado", "Completed" : "Completado",
"Overdue" : "Con retraso",
"Next 7 days" : "Próximos 7 días",
"Next 30 days" : "Próximos 30 días",
"No due date" : "Sin fecha de vencimiento",
"Clear filter" : "Limpiar filtro",
"Hide archived cards" : "Ocultar tarjetas archivadas", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Open details" : "Abrir detalles", "Open details" : "Abrir detalles",
@@ -133,7 +46,6 @@
"Delete" : "Borrar", "Delete" : "Borrar",
"Failed to create share with {displayName}" : "Fallo al crear el recurso compartido denominado {displayName}", "Failed to create share with {displayName}" : "Fallo al crear el recurso compartido denominado {displayName}",
"Transfer" : "Transferir", "Transfer" : "Transferir",
"Delete list" : "Eliminar lista",
"Edit" : "Editar", "Edit" : "Editar",
"Members" : "Miembros", "Members" : "Miembros",
"Upload new files" : "Cargar nuevos archivos", "Upload new files" : "Cargar nuevos archivos",
@@ -151,13 +63,9 @@
"Created:" : "Creado:", "Created:" : "Creado:",
"Description" : "Descripción", "Description" : "Descripción",
"Formatting help" : "Ayuda de formato", "Formatting help" : "Ayuda de formato",
"Edit description" : "Editar descripción",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Mark as done" : "Marcar como hecho",
"Not done" : "No está finalizado",
"Archive card" : "Archivar tarjeta",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"Delete card" : "Eliminar tarjeta", "Mark as done" : "Marcar como hecho",
"seconds ago" : "hace segundos", "seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado", "Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado", "Keyboard shortcut" : "Atajo del teclado",
@@ -169,15 +77,12 @@
"Space" : "Espacio", "Space" : "Espacio",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Cancel edit" : "Cancelar edición",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Clone board" : "Clonar pizarra",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones", "No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros", "Delete board" : "Borrar tableros",
"No reminder" : "Sin recordatorio",
"An error occurred" : "Ha ocurrido un error", "An error occurred" : "Ha ocurrido un error",
"Today" : "Hoy", "Today" : "Hoy",
"Tomorrow" : "Mañana", "Tomorrow" : "Mañana",

View File

@@ -46,12 +46,14 @@ OC.L10N.register(
"Keyboard shortcut" : "Klaviatuuri otsetee", "Keyboard shortcut" : "Klaviatuuri otsetee",
"Search" : "Otsi", "Search" : "Otsi",
"Shared with you" : "Sinuga jagatud", "Shared with you" : "Sinuga jagatud",
"Cancel edit" : "Loobu muutmisest",
"No notifications" : "Märguandeid pole", "No notifications" : "Märguandeid pole",
"An error occurred" : "Tekkis tõrge", "An error occurred" : "Tekkis tõrge",
"Today" : "Täna", "Today" : "Täna",
"Tomorrow" : "Homme", "Tomorrow" : "Homme",
"Close" : "Sulge", "Close" : "Sulge",
"Share" : "Jaga" "Share" : "Jaga",
"Timeline" : "Ajajoon",
"Next week" : "Järgmine nädal",
"Next month" : "Järgmine kuu"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -44,12 +44,14 @@
"Keyboard shortcut" : "Klaviatuuri otsetee", "Keyboard shortcut" : "Klaviatuuri otsetee",
"Search" : "Otsi", "Search" : "Otsi",
"Shared with you" : "Sinuga jagatud", "Shared with you" : "Sinuga jagatud",
"Cancel edit" : "Loobu muutmisest",
"No notifications" : "Märguandeid pole", "No notifications" : "Märguandeid pole",
"An error occurred" : "Tekkis tõrge", "An error occurred" : "Tekkis tõrge",
"Today" : "Täna", "Today" : "Täna",
"Tomorrow" : "Homme", "Tomorrow" : "Homme",
"Close" : "Sulge", "Close" : "Sulge",
"Share" : "Jaga" "Share" : "Jaga",
"Timeline" : "Ajajoon",
"Next week" : "Järgmine nädal",
"Next month" : "Järgmine kuu"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -120,7 +120,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "Data baliogabea, dataren formatuak UUUU-HH-EE izan behar du", "Invalid date, date format must be YYYY-MM-DD" : "Data baliogabea, dataren formatuak UUUU-HH-EE izan behar du",
"Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa", "Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n-📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak Markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure Markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n-📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak Markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure Markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
"Card details" : "Txartelaren xehetasunak",
"Add board" : "Gehitu taula", "Add board" : "Gehitu taula",
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", "Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
"Search by board title" : "Bilatu taula izenez", "Search by board title" : "Bilatu taula izenez",
@@ -150,8 +149,6 @@ OC.L10N.register(
"Filter by tag" : "Iragazi etiketaz", "Filter by tag" : "Iragazi etiketaz",
"Filter by assigned user" : "Iragazi esleitutako erabiltzailez", "Filter by assigned user" : "Iragazi esleitutako erabiltzailez",
"Unassigned" : "Esleitu gabea", "Unassigned" : "Esleitu gabea",
"Filter by status" : "Iragazi egoeraren arabera",
"Open and completed" : "Ireki eta osatutakoak",
"Open" : "Ireki", "Open" : "Ireki",
"Completed" : "Osatua", "Completed" : "Osatua",
"Filter by due date" : "Iragazi epe-mugaz", "Filter by due date" : "Iragazi epe-mugaz",
@@ -181,12 +178,9 @@ OC.L10N.register(
"Deleted lists" : "Ezabatutako zerrendak", "Deleted lists" : "Ezabatutako zerrendak",
"Undo" : "Desegin", "Undo" : "Desegin",
"Deleted cards" : "Ezabatutako txartelak", "Deleted cards" : "Ezabatutako txartelak",
"Share board with a user, group or team …" : "Partekatu taula erabiltzaile, talde edo lantalde batekin…",
"Searching for users, groups and teams …" : "Erabiltzaileak, taldeak, lantaldeak... bilatzen",
"No participants found" : "Ez da parte-hartzailerik aurkitu", "No participants found" : "Ez da parte-hartzailerik aurkitu",
"Board owner" : "Taularen jabea", "Board owner" : "Taularen jabea",
"(Group)" : "(Taldea)", "(Group)" : "(Taldea)",
"(Team)" : "(Lantaldea)",
"Can edit" : "Editatu dezake", "Can edit" : "Editatu dezake",
"Can share" : "Partekatu dezake", "Can share" : "Partekatu dezake",
"Can manage" : "Kudeatu dezake", "Can manage" : "Kudeatu dezake",
@@ -212,9 +206,7 @@ OC.L10N.register(
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira", "title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Board name" : "Taularen izena", "Board name" : "Taularen izena",
"Members" : "Partaideak", "Members" : "Partaideak",
"Assign to users/groups/team" : "Esleitu erabiltzaile/talde/lantaldeei",
"Assign a user to this card…" : "Esleitu erabiltzaile bat txartel honi...", "Assign a user to this card…" : "Esleitu erabiltzaile bat txartel honi...",
"Select a user to assign to this card…" : "Hautatu erabiltzaile bat txartel honetara esleitzeko...",
"Upload new files" : "Igo fitxategi berriak", "Upload new files" : "Igo fitxategi berriak",
"Share from Files" : "Partekatu Fitxategiak-etik", "Share from Files" : "Partekatu Fitxategiak-etik",
"Pending share" : "Partekatzeko zain", "Pending share" : "Partekatzeko zain",
@@ -257,9 +249,8 @@ OC.L10N.register(
"Add due date" : "Gehitu epemuga", "Add due date" : "Gehitu epemuga",
"Choose a date" : "Aukeratu data", "Choose a date" : "Aukeratu data",
"Remove due date" : "Ezabatu epe-muga", "Remove due date" : "Ezabatu epe-muga",
"Mark as done" : "Markatu egindako gisa",
"Due at:" : "Epemuga:", "Due at:" : "Epemuga:",
"Not done" : "Egin gabe", "Not completed" : "Osatu gabe",
"Unarchive card" : "Berreskuratu txartela artxibotik", "Unarchive card" : "Berreskuratu txartela artxibotik",
"Archive card" : "Artxibatu txartela", "Archive card" : "Artxibatu txartela",
"Select Date" : "Hautatu data", "Select Date" : "Hautatu data",
@@ -268,45 +259,28 @@ OC.L10N.register(
"Set due date for this weekend" : "Ezarri epemuga asteburu honetarako", "Set due date for this weekend" : "Ezarri epemuga asteburu honetarako",
"Set due date for next week" : "Ezarri epemuga datorren asterako", "Set due date for next week" : "Ezarri epemuga datorren asterako",
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...", "Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
"Select or create a tag…" : "Hautatu edo sortu etiketa bat...",
"Create a new tag:" : "Sortu etiketa berria:", "Create a new tag:" : "Sortu etiketa berria:",
"(group)" : "(taldea)", "(group)" : "(taldea)",
"Next week {timeLocale}" : "Hurrengo astea {timeLocale}", "Next week {timeLocale}" : "Hurrengo astea {timeLocale}",
"Todo items" : "Elementuak egiteke", "Todo items" : "Elementuak egiteke",
"{count} comments, {unread} unread" : "{count} iruzkin, {unread} irakurri gabe", "{count} comments, {unread} unread" : "{count} iruzkin, {unread} irakurri gabe",
"Edit card title" : "Editatu txartelaren izenburua", "Edit card title" : "Editatu txartelaren izenburua",
"Card details" : "Txartelaren xehetasunak",
"Assign to me" : "Esleitu niri", "Assign to me" : "Esleitu niri",
"Unassign myself" : "Niri esleitzeari utzi", "Unassign myself" : "Niri esleitzeari utzi",
"Mark as not done" : "Markatu ez egindako gisa", "Mark as not done" : "Markatu ez egindako gisa",
"Mark as done" : "Markatu egindako gisa",
"Delete card" : "Ezabatu txartela", "Delete card" : "Ezabatu txartela",
"Card deleted" : "Txartela ezabatuta", "Card deleted" : "Txartela ezabatuta",
"seconds ago" : "segundo lehenago", "seconds ago" : "segundo lehenago",
"Keyboard shortcuts" : "Teklatuaren lasterbideak", "Keyboard shortcuts" : "Teklatuaren lasterbideak",
"Boost your productivity using Deck with keyboard shortcuts." : "Igo ezazu zure produktibitatea Deck teklatuko lasterbideekin erabiliz.",
"Board actions" : "Taularen ekintzak",
"Keyboard shortcut" : "Teklatuko lasterbidea", "Keyboard shortcut" : "Teklatuko lasterbidea",
"Action" : "Ekintza", "Action" : "Ekintza",
"Shift" : "Shift", "Shift" : "Shift",
"Scroll" : "Korritu",
"Scroll sideways" : "Korritu alboetara",
"Navigate between cards" : "Nabigatu txartelen artean",
"Esc" : "Esc",
"Close card details" : "Itxi txartelaren xehetasunak",
"Ctrl" : "Ctrl", "Ctrl" : "Ctrl",
"Search" : "Bilatu", "Search" : "Bilatu",
"Show card filters" : "Erakutsi txartelaren iragazkiak",
"Clear card filters" : "Garbitu txartelaren iragazkiak",
"Show help dialog" : "Erakutsi laguntza elkarrizketa-koadroa",
"Card actions" : "Txartelaren ekintzak",
"The following actions can be triggered on the currently highlighted card" : "Unean nabarmendutako txartelean ekintza hauek abiarazi daitezke",
"Enter" : "Sartu", "Enter" : "Sartu",
"Space" : "Espazioa", "Space" : "Espazioa",
"Open card details" : "Ireki txartelaren xehetasunak",
"Edit the card title" : "Editatu txartelaren izenburua",
"Assign yourself to the current card" : "Esleitu zeure burua uneko txartelari",
"Archive/unarchive the current card" : "Artxibatu/desartxibatu uneko txartela",
"Mark card as completed/not completed" : "Markatu txartela osatuta/ez osatuta bezala",
"Open card menu" : "Ireki txartelaren menua",
"All boards" : "Taula guztiak", "All boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako taulak", "Archived boards" : "Artxibatutako taulak",
"Shared with you" : "Zurekin partekatua", "Shared with you" : "Zurekin partekatua",
@@ -316,24 +290,22 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan", "Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
"Limit board creation to some groups" : "Mugatu taulak sortzea talde batzuei", "Limit board creation to some groups" : "Mugatu taulak sortzea talde batzuei",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Talde horietatik kanpo dauden erabiltzaileek ezingo dituzte haien taulak sortu, baina partekatu zaizkien tauletan lan egiten jarraitu ahal izango dute.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Talde horietatik kanpo dauden erabiltzaileek ezingo dituzte haien taulak sortu, baina partekatu zaizkien tauletan lan egiten jarraitu ahal izango dute.",
"Cancel edit" : "Utzi editatzeari",
"Save board" : "Gorde mahaia",
"Board details" : "Taularen xehetasunak", "Board details" : "Taularen xehetasunak",
"Edit board" : "Editatu taula", "Edit board" : "Editatu taula",
"Clone board" : "Klonatu taula", "Clone board" : "Klonatu taula",
"Unarchive board" : "Atera taula artxibotik", "Unarchive board" : "Atera taula artxibotik",
"Archive board" : "Artxibatu taula", "Archive board" : "Artxibatu taula",
"Export board" : "Esportatu taula", "Export board" : "Esportatu taula",
"Turn on due date reminders" : "Aktibatu epemuga gogorarazpenak", "Turn on due date reminders" : "Aktibatu epemugako abisuak",
"Turn off due date reminders" : "Desaktibatu epemuga gogorarazpenak", "Turn off due date reminders" : "Desaktibatu epemugako abisuak",
"Due date reminders" : "Epemuga gogorarazpenak", "Due date reminders" : "Epemugako abisuak",
"All cards" : "Txartel guztiak", "All cards" : "Txartel guztiak",
"Assigned cards" : "Esleitutako txartelak", "Assigned cards" : "Esleitutako txartelak",
"No notifications" : "Jakinarazpenik ez", "No notifications" : "Jakinarazpenik ez",
"Delete board" : "Ezabatu taula", "Delete board" : "Ezabatu taula",
"Board {0} deleted" : "{0} taula ezabatu da", "Board {0} deleted" : "{0} taula ezabatu da",
"Only assigned cards" : "Bakarrik esleitutako txartelak", "Only assigned cards" : "Bakarrik esleitutako txartelak",
"No reminder" : "Gogorarazpenik ez", "No reminder" : "Abisurik ez",
"An error occurred" : "Errore bat gertatu da", "An error occurred" : "Errore bat gertatu da",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Ziur zaude {title} taula ezabatu nahi duzula? Honek taula honen datu guztiak ezabatuko ditu, artxibatutako txartelak barne.", "Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Ziur zaude {title} taula ezabatu nahi duzula? Honek taula honen datu guztiak ezabatuko ditu, artxibatutako txartelak barne.",
"Delete the board?" : "Taula ezabatu?", "Delete the board?" : "Taula ezabatu?",
@@ -343,6 +315,7 @@ OC.L10N.register(
"No due" : "Epemugarik ez", "No due" : "Epemugarik ez",
"Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan", "Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan",
"No results found" : "Ez da emaitzarik aurkitu", "No results found" : "Ez da emaitzarik aurkitu",
"This weekend {timeLocale}" : "Hurrengo asteburua {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : " Deck-eko {izena} taula\n* Azken aldaketa {lastMod}-n", "Deck board {name}\n* Last modified on {lastMod}" : " Deck-eko {izena} taula\n* Azken aldaketa {lastMod}-n",
"{stack} in {board}" : "{board}-(e)ko {stack}", "{stack} in {board}" : "{board}-(e)ko {stack}",
"Click to expand description" : "Egin klik deskribapena handitzeko", "Click to expand description" : "Egin klik deskribapena handitzeko",
@@ -357,12 +330,9 @@ OC.L10N.register(
"Open card" : "Ireki txartela", "Open card" : "Ireki txartela",
"Close" : "Itxi", "Close" : "Itxi",
"No upcoming cards" : "Ez dago hurrengo txartelik", "No upcoming cards" : "Ez dago hurrengo txartelik",
"upcoming cards today" : "hurrengo txartelak gaur",
"upcoming cards tomorrow" : "hurrengo txartelak bihar",
"upcoming cards" : "hurrengo txartelak", "upcoming cards" : "hurrengo txartelak",
"New card" : "Txartel berria", "New card" : "Txartel berria",
"Due on {date}" : "Iraungitze-data {date}", "Due on {date}" : "Iraungitze-data {date}",
"This weekend {timeLocale}" : "Hurrengo asteburua {timeLocale}",
"Tomorrow {timeLocale}" : "Bihar {timeLocale}", "Tomorrow {timeLocale}" : "Bihar {timeLocale}",
"Later today {timeLocale}" : "Beranduago gaur {timeLocale}", "Later today {timeLocale}" : "Beranduago gaur {timeLocale}",
"Link to a board" : "Estekatu taula batera", "Link to a board" : "Estekatu taula batera",
@@ -376,9 +346,16 @@ OC.L10N.register(
"Share with a Deck card" : "Partekatu Deck txartel baten bidez", "Share with a Deck card" : "Partekatu Deck txartel baten bidez",
"Share {file} with a Deck card" : "Partekatu {file} Deck txartel baten bidez", "Share {file} with a Deck card" : "Partekatu {file} Deck txartel baten bidez",
"Share" : "Partekatu", "Share" : "Partekatu",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Txartel baten deskribapena</strong> aldatu da Deck aplikazioaren barruan",
"Timeline" : "Denbora-lerroa",
"Share board with a user, group or circle …" : "Partekatu taula erabiltzaile, talde edo zirkulu batekin...",
"Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen", "Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
"(Circle)" : "(Zirkulua)", "(Circle)" : "(Zirkulua)",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei", "Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
"Filter by completed" : "Iragazi osatutakoen arabera" "Next week" : "Hurrengo astea",
"Next month" : "Hurrengo hilabetea",
"List is empty" : "Zerrenda hutsik dago",
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei beren taula propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren tauletan lan egin ahalko dute."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -118,7 +118,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "Data baliogabea, dataren formatuak UUUU-HH-EE izan behar du", "Invalid date, date format must be YYYY-MM-DD" : "Data baliogabea, dataren formatuak UUUU-HH-EE izan behar du",
"Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa", "Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n-📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak Markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure Markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n-📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak Markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure Markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
"Card details" : "Txartelaren xehetasunak",
"Add board" : "Gehitu taula", "Add board" : "Gehitu taula",
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", "Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
"Search by board title" : "Bilatu taula izenez", "Search by board title" : "Bilatu taula izenez",
@@ -148,8 +147,6 @@
"Filter by tag" : "Iragazi etiketaz", "Filter by tag" : "Iragazi etiketaz",
"Filter by assigned user" : "Iragazi esleitutako erabiltzailez", "Filter by assigned user" : "Iragazi esleitutako erabiltzailez",
"Unassigned" : "Esleitu gabea", "Unassigned" : "Esleitu gabea",
"Filter by status" : "Iragazi egoeraren arabera",
"Open and completed" : "Ireki eta osatutakoak",
"Open" : "Ireki", "Open" : "Ireki",
"Completed" : "Osatua", "Completed" : "Osatua",
"Filter by due date" : "Iragazi epe-mugaz", "Filter by due date" : "Iragazi epe-mugaz",
@@ -179,12 +176,9 @@
"Deleted lists" : "Ezabatutako zerrendak", "Deleted lists" : "Ezabatutako zerrendak",
"Undo" : "Desegin", "Undo" : "Desegin",
"Deleted cards" : "Ezabatutako txartelak", "Deleted cards" : "Ezabatutako txartelak",
"Share board with a user, group or team …" : "Partekatu taula erabiltzaile, talde edo lantalde batekin…",
"Searching for users, groups and teams …" : "Erabiltzaileak, taldeak, lantaldeak... bilatzen",
"No participants found" : "Ez da parte-hartzailerik aurkitu", "No participants found" : "Ez da parte-hartzailerik aurkitu",
"Board owner" : "Taularen jabea", "Board owner" : "Taularen jabea",
"(Group)" : "(Taldea)", "(Group)" : "(Taldea)",
"(Team)" : "(Lantaldea)",
"Can edit" : "Editatu dezake", "Can edit" : "Editatu dezake",
"Can share" : "Partekatu dezake", "Can share" : "Partekatu dezake",
"Can manage" : "Kudeatu dezake", "Can manage" : "Kudeatu dezake",
@@ -210,9 +204,7 @@
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira", "title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Board name" : "Taularen izena", "Board name" : "Taularen izena",
"Members" : "Partaideak", "Members" : "Partaideak",
"Assign to users/groups/team" : "Esleitu erabiltzaile/talde/lantaldeei",
"Assign a user to this card…" : "Esleitu erabiltzaile bat txartel honi...", "Assign a user to this card…" : "Esleitu erabiltzaile bat txartel honi...",
"Select a user to assign to this card…" : "Hautatu erabiltzaile bat txartel honetara esleitzeko...",
"Upload new files" : "Igo fitxategi berriak", "Upload new files" : "Igo fitxategi berriak",
"Share from Files" : "Partekatu Fitxategiak-etik", "Share from Files" : "Partekatu Fitxategiak-etik",
"Pending share" : "Partekatzeko zain", "Pending share" : "Partekatzeko zain",
@@ -255,9 +247,8 @@
"Add due date" : "Gehitu epemuga", "Add due date" : "Gehitu epemuga",
"Choose a date" : "Aukeratu data", "Choose a date" : "Aukeratu data",
"Remove due date" : "Ezabatu epe-muga", "Remove due date" : "Ezabatu epe-muga",
"Mark as done" : "Markatu egindako gisa",
"Due at:" : "Epemuga:", "Due at:" : "Epemuga:",
"Not done" : "Egin gabe", "Not completed" : "Osatu gabe",
"Unarchive card" : "Berreskuratu txartela artxibotik", "Unarchive card" : "Berreskuratu txartela artxibotik",
"Archive card" : "Artxibatu txartela", "Archive card" : "Artxibatu txartela",
"Select Date" : "Hautatu data", "Select Date" : "Hautatu data",
@@ -266,45 +257,28 @@
"Set due date for this weekend" : "Ezarri epemuga asteburu honetarako", "Set due date for this weekend" : "Ezarri epemuga asteburu honetarako",
"Set due date for next week" : "Ezarri epemuga datorren asterako", "Set due date for next week" : "Ezarri epemuga datorren asterako",
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...", "Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
"Select or create a tag…" : "Hautatu edo sortu etiketa bat...",
"Create a new tag:" : "Sortu etiketa berria:", "Create a new tag:" : "Sortu etiketa berria:",
"(group)" : "(taldea)", "(group)" : "(taldea)",
"Next week {timeLocale}" : "Hurrengo astea {timeLocale}", "Next week {timeLocale}" : "Hurrengo astea {timeLocale}",
"Todo items" : "Elementuak egiteke", "Todo items" : "Elementuak egiteke",
"{count} comments, {unread} unread" : "{count} iruzkin, {unread} irakurri gabe", "{count} comments, {unread} unread" : "{count} iruzkin, {unread} irakurri gabe",
"Edit card title" : "Editatu txartelaren izenburua", "Edit card title" : "Editatu txartelaren izenburua",
"Card details" : "Txartelaren xehetasunak",
"Assign to me" : "Esleitu niri", "Assign to me" : "Esleitu niri",
"Unassign myself" : "Niri esleitzeari utzi", "Unassign myself" : "Niri esleitzeari utzi",
"Mark as not done" : "Markatu ez egindako gisa", "Mark as not done" : "Markatu ez egindako gisa",
"Mark as done" : "Markatu egindako gisa",
"Delete card" : "Ezabatu txartela", "Delete card" : "Ezabatu txartela",
"Card deleted" : "Txartela ezabatuta", "Card deleted" : "Txartela ezabatuta",
"seconds ago" : "segundo lehenago", "seconds ago" : "segundo lehenago",
"Keyboard shortcuts" : "Teklatuaren lasterbideak", "Keyboard shortcuts" : "Teklatuaren lasterbideak",
"Boost your productivity using Deck with keyboard shortcuts." : "Igo ezazu zure produktibitatea Deck teklatuko lasterbideekin erabiliz.",
"Board actions" : "Taularen ekintzak",
"Keyboard shortcut" : "Teklatuko lasterbidea", "Keyboard shortcut" : "Teklatuko lasterbidea",
"Action" : "Ekintza", "Action" : "Ekintza",
"Shift" : "Shift", "Shift" : "Shift",
"Scroll" : "Korritu",
"Scroll sideways" : "Korritu alboetara",
"Navigate between cards" : "Nabigatu txartelen artean",
"Esc" : "Esc",
"Close card details" : "Itxi txartelaren xehetasunak",
"Ctrl" : "Ctrl", "Ctrl" : "Ctrl",
"Search" : "Bilatu", "Search" : "Bilatu",
"Show card filters" : "Erakutsi txartelaren iragazkiak",
"Clear card filters" : "Garbitu txartelaren iragazkiak",
"Show help dialog" : "Erakutsi laguntza elkarrizketa-koadroa",
"Card actions" : "Txartelaren ekintzak",
"The following actions can be triggered on the currently highlighted card" : "Unean nabarmendutako txartelean ekintza hauek abiarazi daitezke",
"Enter" : "Sartu", "Enter" : "Sartu",
"Space" : "Espazioa", "Space" : "Espazioa",
"Open card details" : "Ireki txartelaren xehetasunak",
"Edit the card title" : "Editatu txartelaren izenburua",
"Assign yourself to the current card" : "Esleitu zeure burua uneko txartelari",
"Archive/unarchive the current card" : "Artxibatu/desartxibatu uneko txartela",
"Mark card as completed/not completed" : "Markatu txartela osatuta/ez osatuta bezala",
"Open card menu" : "Ireki txartelaren menua",
"All boards" : "Taula guztiak", "All boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako taulak", "Archived boards" : "Artxibatutako taulak",
"Shared with you" : "Zurekin partekatua", "Shared with you" : "Zurekin partekatua",
@@ -314,24 +288,22 @@
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan", "Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
"Limit board creation to some groups" : "Mugatu taulak sortzea talde batzuei", "Limit board creation to some groups" : "Mugatu taulak sortzea talde batzuei",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Talde horietatik kanpo dauden erabiltzaileek ezingo dituzte haien taulak sortu, baina partekatu zaizkien tauletan lan egiten jarraitu ahal izango dute.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Talde horietatik kanpo dauden erabiltzaileek ezingo dituzte haien taulak sortu, baina partekatu zaizkien tauletan lan egiten jarraitu ahal izango dute.",
"Cancel edit" : "Utzi editatzeari",
"Save board" : "Gorde mahaia",
"Board details" : "Taularen xehetasunak", "Board details" : "Taularen xehetasunak",
"Edit board" : "Editatu taula", "Edit board" : "Editatu taula",
"Clone board" : "Klonatu taula", "Clone board" : "Klonatu taula",
"Unarchive board" : "Atera taula artxibotik", "Unarchive board" : "Atera taula artxibotik",
"Archive board" : "Artxibatu taula", "Archive board" : "Artxibatu taula",
"Export board" : "Esportatu taula", "Export board" : "Esportatu taula",
"Turn on due date reminders" : "Aktibatu epemuga gogorarazpenak", "Turn on due date reminders" : "Aktibatu epemugako abisuak",
"Turn off due date reminders" : "Desaktibatu epemuga gogorarazpenak", "Turn off due date reminders" : "Desaktibatu epemugako abisuak",
"Due date reminders" : "Epemuga gogorarazpenak", "Due date reminders" : "Epemugako abisuak",
"All cards" : "Txartel guztiak", "All cards" : "Txartel guztiak",
"Assigned cards" : "Esleitutako txartelak", "Assigned cards" : "Esleitutako txartelak",
"No notifications" : "Jakinarazpenik ez", "No notifications" : "Jakinarazpenik ez",
"Delete board" : "Ezabatu taula", "Delete board" : "Ezabatu taula",
"Board {0} deleted" : "{0} taula ezabatu da", "Board {0} deleted" : "{0} taula ezabatu da",
"Only assigned cards" : "Bakarrik esleitutako txartelak", "Only assigned cards" : "Bakarrik esleitutako txartelak",
"No reminder" : "Gogorarazpenik ez", "No reminder" : "Abisurik ez",
"An error occurred" : "Errore bat gertatu da", "An error occurred" : "Errore bat gertatu da",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Ziur zaude {title} taula ezabatu nahi duzula? Honek taula honen datu guztiak ezabatuko ditu, artxibatutako txartelak barne.", "Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Ziur zaude {title} taula ezabatu nahi duzula? Honek taula honen datu guztiak ezabatuko ditu, artxibatutako txartelak barne.",
"Delete the board?" : "Taula ezabatu?", "Delete the board?" : "Taula ezabatu?",
@@ -341,6 +313,7 @@
"No due" : "Epemugarik ez", "No due" : "Epemugarik ez",
"Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan", "Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan",
"No results found" : "Ez da emaitzarik aurkitu", "No results found" : "Ez da emaitzarik aurkitu",
"This weekend {timeLocale}" : "Hurrengo asteburua {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : " Deck-eko {izena} taula\n* Azken aldaketa {lastMod}-n", "Deck board {name}\n* Last modified on {lastMod}" : " Deck-eko {izena} taula\n* Azken aldaketa {lastMod}-n",
"{stack} in {board}" : "{board}-(e)ko {stack}", "{stack} in {board}" : "{board}-(e)ko {stack}",
"Click to expand description" : "Egin klik deskribapena handitzeko", "Click to expand description" : "Egin klik deskribapena handitzeko",
@@ -355,12 +328,9 @@
"Open card" : "Ireki txartela", "Open card" : "Ireki txartela",
"Close" : "Itxi", "Close" : "Itxi",
"No upcoming cards" : "Ez dago hurrengo txartelik", "No upcoming cards" : "Ez dago hurrengo txartelik",
"upcoming cards today" : "hurrengo txartelak gaur",
"upcoming cards tomorrow" : "hurrengo txartelak bihar",
"upcoming cards" : "hurrengo txartelak", "upcoming cards" : "hurrengo txartelak",
"New card" : "Txartel berria", "New card" : "Txartel berria",
"Due on {date}" : "Iraungitze-data {date}", "Due on {date}" : "Iraungitze-data {date}",
"This weekend {timeLocale}" : "Hurrengo asteburua {timeLocale}",
"Tomorrow {timeLocale}" : "Bihar {timeLocale}", "Tomorrow {timeLocale}" : "Bihar {timeLocale}",
"Later today {timeLocale}" : "Beranduago gaur {timeLocale}", "Later today {timeLocale}" : "Beranduago gaur {timeLocale}",
"Link to a board" : "Estekatu taula batera", "Link to a board" : "Estekatu taula batera",
@@ -374,9 +344,16 @@
"Share with a Deck card" : "Partekatu Deck txartel baten bidez", "Share with a Deck card" : "Partekatu Deck txartel baten bidez",
"Share {file} with a Deck card" : "Partekatu {file} Deck txartel baten bidez", "Share {file} with a Deck card" : "Partekatu {file} Deck txartel baten bidez",
"Share" : "Partekatu", "Share" : "Partekatu",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Txartel baten deskribapena</strong> aldatu da Deck aplikazioaren barruan",
"Timeline" : "Denbora-lerroa",
"Share board with a user, group or circle …" : "Partekatu taula erabiltzaile, talde edo zirkulu batekin...",
"Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen", "Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
"(Circle)" : "(Zirkulua)", "(Circle)" : "(Zirkulua)",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei", "Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
"Filter by completed" : "Iragazi osatutakoen arabera" "Next week" : "Hurrengo astea",
"Next month" : "Hurrengo hilabetea",
"List is empty" : "Zerrenda hutsik dago",
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei beren taula propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren tauletan lan egin ahalko dute."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -112,7 +112,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "تاریخ نامعتبر است، قالب تاریخ باید YYYY-MM-DD باشد", "Invalid date, date format must be YYYY-MM-DD" : "تاریخ نامعتبر است، قالب تاریخ باید YYYY-MM-DD باشد",
"Personal planning and team project organization" : "برنامه‌ریزی شخصی و سازمان‌دهی کار گروهی", "Personal planning and team project organization" : "برنامه‌ریزی شخصی و سازمان‌دهی کار گروهی",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "برگه‌دان یک ابزار سازمان‌دهی سبک کانبان است که هدف آن برنامه‌ریزی شخصی و سازمان‌دهی پروژه برای گروه‌های مرتبط با Nextcloud است.\n\n\n- 📥 وظایف خود را به برگه‌ها اضافه کنید و آن‌ها را مرتب کنید\n- 📄 یادداشت‌های اضافی را در Markdown یادداشت کنید\n- 🔖 برچسب‌هایی را برای سازمان‌دهی بهتر اختصاص دهید\n- 👥 با گروه، دوستان یا خانوادهٔ خود به اشتراک بگذارید\n- 📎 فایل‌ها را ضمیمه کنید و آنها را در توضیحات Markdown خود قرار دهید\n- 💬 با استفاده از نظرات با تیم خود بحث کنید\n- ⚡ تغییرات در جریان فعالیت را پیگیری کنید\n- 🚀 پروژه خود را سازمان‌دهی کنید", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "برگه‌دان یک ابزار سازمان‌دهی سبک کانبان است که هدف آن برنامه‌ریزی شخصی و سازمان‌دهی پروژه برای گروه‌های مرتبط با Nextcloud است.\n\n\n- 📥 وظایف خود را به برگه‌ها اضافه کنید و آن‌ها را مرتب کنید\n- 📄 یادداشت‌های اضافی را در Markdown یادداشت کنید\n- 🔖 برچسب‌هایی را برای سازمان‌دهی بهتر اختصاص دهید\n- 👥 با گروه، دوستان یا خانوادهٔ خود به اشتراک بگذارید\n- 📎 فایل‌ها را ضمیمه کنید و آنها را در توضیحات Markdown خود قرار دهید\n- 💬 با استفاده از نظرات با تیم خود بحث کنید\n- ⚡ تغییرات در جریان فعالیت را پیگیری کنید\n- 🚀 پروژه خود را سازمان‌دهی کنید",
"Card details" : "جزئیات برگه",
"Add board" : "افزودن تخته", "Add board" : "افزودن تخته",
"Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید", "Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Search by board title" : "جستجو بر اساس عنوان تخته", "Search by board title" : "جستجو بر اساس عنوان تخته",
@@ -236,7 +235,7 @@ OC.L10N.register(
"Assign a due date to this card…" : "Assign a due date to this card…", "Assign a due date to this card…" : "Assign a due date to this card…",
"Set a due date" : "تاریخ سررسید را تعیین کنید", "Set a due date" : "تاریخ سررسید را تعیین کنید",
"Remove due date" : "تاریخ سررسید را حذف کنید", "Remove due date" : "تاریخ سررسید را حذف کنید",
"Mark as done" : "علامت گذاری به عنوان انجام شده", "Not completed" : "Not completed",
"Unarchive card" : "برگه را از بایگانی خارج کنید", "Unarchive card" : "برگه را از بایگانی خارج کنید",
"Archive card" : "بایگانی برگه", "Archive card" : "بایگانی برگه",
"Select Date" : "تاریخ را انتخاب کنید", "Select Date" : "تاریخ را انتخاب کنید",
@@ -246,8 +245,10 @@ OC.L10N.register(
"Todo items" : "Todo items", "Todo items" : "Todo items",
"{count} comments, {unread} unread" : "{count} نظر، { خوانده نشده} خوانده نشده", "{count} comments, {unread} unread" : "{count} نظر، { خوانده نشده} خوانده نشده",
"Edit card title" : "Edit card title", "Edit card title" : "Edit card title",
"Card details" : "جزئیات برگه",
"Assign to me" : "به من اختصاص دهید", "Assign to me" : "به من اختصاص دهید",
"Unassign myself" : "واگذاری به خودم را لغو می‌کنم", "Unassign myself" : "واگذاری به خودم را لغو می‌کنم",
"Mark as done" : "علامت گذاری به عنوان انجام شده",
"Delete card" : "حذف برگه", "Delete card" : "حذف برگه",
"Card deleted" : "برگه پاک شد", "Card deleted" : "برگه پاک شد",
"seconds ago" : "ثانیه‌هایی پیش", "seconds ago" : "ثانیه‌هایی پیش",
@@ -257,7 +258,6 @@ OC.L10N.register(
"Shift" : "تغییر مکان", "Shift" : "تغییر مکان",
"Ctrl" : "Ctrl", "Ctrl" : "Ctrl",
"Search" : "جستجو", "Search" : "جستجو",
"Show help dialog" : "نمایش پنجرهٔ راهنما",
"Enter" : "Enter", "Enter" : "Enter",
"Space" : "Space", "Space" : "Space",
"All boards" : "همه تخته‌ها", "All boards" : "همه تخته‌ها",
@@ -267,7 +267,6 @@ OC.L10N.register(
"Use bigger card view" : "از نمای برگهٔ بزرگتر استفاده کنید", "Use bigger card view" : "از نمای برگهٔ بزرگتر استفاده کنید",
"Show card ID badge" : "Show card ID badge", "Show card ID badge" : "Show card ID badge",
"Show boards in calendar/tasks" : "نمایش تابلوها در تقویم/ وظایف", "Show boards in calendar/tasks" : "نمایش تابلوها در تقویم/ وظایف",
"Cancel edit" : "Cancel edit",
"Board details" : "Board details", "Board details" : "Board details",
"Edit board" : "ویرایش تخته", "Edit board" : "ویرایش تخته",
"Clone board" : "تخته شبیه‌سازی", "Clone board" : "تخته شبیه‌سازی",
@@ -293,6 +292,7 @@ OC.L10N.register(
"No due" : "No due", "No due" : "No due",
"Search for {searchQuery} in all boards" : "Search for {searchQuery} in all boards", "Search for {searchQuery} in all boards" : "Search for {searchQuery} in all boards",
"No results found" : "هیچ نتیجه ای یافت نشد", "No results found" : "هیچ نتیجه ای یافت نشد",
"This weekend {timeLocale}" : "This weekend {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck board {name}\n* Last modified on {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Deck board {name}\n* Last modified on {lastMod}",
"{stack} in {board}" : "{stack} in {board}", "{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Click to expand description", "Click to expand description" : "Click to expand description",
@@ -310,7 +310,6 @@ OC.L10N.register(
"upcoming cards" : "upcoming cards", "upcoming cards" : "upcoming cards",
"New card" : "New card", "New card" : "New card",
"Due on {date}" : "Due on {date}", "Due on {date}" : "Due on {date}",
"This weekend {timeLocale}" : "This weekend {timeLocale}",
"Tomorrow {timeLocale}" : "Tomorrow {timeLocale}", "Tomorrow {timeLocale}" : "Tomorrow {timeLocale}",
"Later today {timeLocale}" : "Later today {timeLocale}", "Later today {timeLocale}" : "Later today {timeLocale}",
"Link to a board" : "Link to a board", "Link to a board" : "Link to a board",
@@ -324,8 +323,16 @@ OC.L10N.register(
"Share with a Deck card" : "Share with a Deck card", "Share with a Deck card" : "Share with a Deck card",
"Share {file} with a Deck card" : "Share {file} with a Deck card", "Share {file} with a Deck card" : "Share {file} with a Deck card",
"Share" : "هم‌رسانی", "Share" : "هم‌رسانی",
"A <strong>card description</strong> inside the Deck app has been changed" : "شرح برگه در برگه‌دان تغییر کرده است",
"Timeline" : "خط زمانی",
"Share board with a user, group or circle …" : "هم‌رسانی تخته با کاربر، گروه یا حلقه...",
"Searching for users, groups and circles …" : "جستجوی کاربران، گروه‌ها و حلقه‌ها…", "Searching for users, groups and circles …" : "جستجوی کاربران، گروه‌ها و حلقه‌ها…",
"(Circle)" : "(حلقه)", "(Circle)" : "(حلقه)",
"Assign to users/groups/circles" : "به کاربران/ گروه‌ها/ حلقه‌ها اختصاص دهید" "Assign to users/groups/circles" : "به کاربران/ گروه‌ها/ حلقه‌ها اختصاص دهید",
"Next week" : "هفتهٔ بعد",
"Next month" : "ماه بعد",
"List is empty" : "فهرست خالی است",
"Limit deck usage of groups" : "استفاده از برگه‌دان گروه‌ها را محدود کنید",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "محدودکردن برگه‌دان باعث می‌شود تا کاربرانی که جزو آن گروه‌ها نیستند، تابلوهای خود را ایجاد کنند. کاربران همچنان می‌توانند روی تابلوهایی کار کنند که با آنها به اشتراک گذاشته شده است."
}, },
"nplurals=2; plural=(n > 1);"); "nplurals=2; plural=(n > 1);");

View File

@@ -110,7 +110,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "تاریخ نامعتبر است، قالب تاریخ باید YYYY-MM-DD باشد", "Invalid date, date format must be YYYY-MM-DD" : "تاریخ نامعتبر است، قالب تاریخ باید YYYY-MM-DD باشد",
"Personal planning and team project organization" : "برنامه‌ریزی شخصی و سازمان‌دهی کار گروهی", "Personal planning and team project organization" : "برنامه‌ریزی شخصی و سازمان‌دهی کار گروهی",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "برگه‌دان یک ابزار سازمان‌دهی سبک کانبان است که هدف آن برنامه‌ریزی شخصی و سازمان‌دهی پروژه برای گروه‌های مرتبط با Nextcloud است.\n\n\n- 📥 وظایف خود را به برگه‌ها اضافه کنید و آن‌ها را مرتب کنید\n- 📄 یادداشت‌های اضافی را در Markdown یادداشت کنید\n- 🔖 برچسب‌هایی را برای سازمان‌دهی بهتر اختصاص دهید\n- 👥 با گروه، دوستان یا خانوادهٔ خود به اشتراک بگذارید\n- 📎 فایل‌ها را ضمیمه کنید و آنها را در توضیحات Markdown خود قرار دهید\n- 💬 با استفاده از نظرات با تیم خود بحث کنید\n- ⚡ تغییرات در جریان فعالیت را پیگیری کنید\n- 🚀 پروژه خود را سازمان‌دهی کنید", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "برگه‌دان یک ابزار سازمان‌دهی سبک کانبان است که هدف آن برنامه‌ریزی شخصی و سازمان‌دهی پروژه برای گروه‌های مرتبط با Nextcloud است.\n\n\n- 📥 وظایف خود را به برگه‌ها اضافه کنید و آن‌ها را مرتب کنید\n- 📄 یادداشت‌های اضافی را در Markdown یادداشت کنید\n- 🔖 برچسب‌هایی را برای سازمان‌دهی بهتر اختصاص دهید\n- 👥 با گروه، دوستان یا خانوادهٔ خود به اشتراک بگذارید\n- 📎 فایل‌ها را ضمیمه کنید و آنها را در توضیحات Markdown خود قرار دهید\n- 💬 با استفاده از نظرات با تیم خود بحث کنید\n- ⚡ تغییرات در جریان فعالیت را پیگیری کنید\n- 🚀 پروژه خود را سازمان‌دهی کنید",
"Card details" : "جزئیات برگه",
"Add board" : "افزودن تخته", "Add board" : "افزودن تخته",
"Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید", "Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Search by board title" : "جستجو بر اساس عنوان تخته", "Search by board title" : "جستجو بر اساس عنوان تخته",
@@ -234,7 +233,7 @@
"Assign a due date to this card…" : "Assign a due date to this card…", "Assign a due date to this card…" : "Assign a due date to this card…",
"Set a due date" : "تاریخ سررسید را تعیین کنید", "Set a due date" : "تاریخ سررسید را تعیین کنید",
"Remove due date" : "تاریخ سررسید را حذف کنید", "Remove due date" : "تاریخ سررسید را حذف کنید",
"Mark as done" : "علامت گذاری به عنوان انجام شده", "Not completed" : "Not completed",
"Unarchive card" : "برگه را از بایگانی خارج کنید", "Unarchive card" : "برگه را از بایگانی خارج کنید",
"Archive card" : "بایگانی برگه", "Archive card" : "بایگانی برگه",
"Select Date" : "تاریخ را انتخاب کنید", "Select Date" : "تاریخ را انتخاب کنید",
@@ -244,8 +243,10 @@
"Todo items" : "Todo items", "Todo items" : "Todo items",
"{count} comments, {unread} unread" : "{count} نظر، { خوانده نشده} خوانده نشده", "{count} comments, {unread} unread" : "{count} نظر، { خوانده نشده} خوانده نشده",
"Edit card title" : "Edit card title", "Edit card title" : "Edit card title",
"Card details" : "جزئیات برگه",
"Assign to me" : "به من اختصاص دهید", "Assign to me" : "به من اختصاص دهید",
"Unassign myself" : "واگذاری به خودم را لغو می‌کنم", "Unassign myself" : "واگذاری به خودم را لغو می‌کنم",
"Mark as done" : "علامت گذاری به عنوان انجام شده",
"Delete card" : "حذف برگه", "Delete card" : "حذف برگه",
"Card deleted" : "برگه پاک شد", "Card deleted" : "برگه پاک شد",
"seconds ago" : "ثانیه‌هایی پیش", "seconds ago" : "ثانیه‌هایی پیش",
@@ -255,7 +256,6 @@
"Shift" : "تغییر مکان", "Shift" : "تغییر مکان",
"Ctrl" : "Ctrl", "Ctrl" : "Ctrl",
"Search" : "جستجو", "Search" : "جستجو",
"Show help dialog" : "نمایش پنجرهٔ راهنما",
"Enter" : "Enter", "Enter" : "Enter",
"Space" : "Space", "Space" : "Space",
"All boards" : "همه تخته‌ها", "All boards" : "همه تخته‌ها",
@@ -265,7 +265,6 @@
"Use bigger card view" : "از نمای برگهٔ بزرگتر استفاده کنید", "Use bigger card view" : "از نمای برگهٔ بزرگتر استفاده کنید",
"Show card ID badge" : "Show card ID badge", "Show card ID badge" : "Show card ID badge",
"Show boards in calendar/tasks" : "نمایش تابلوها در تقویم/ وظایف", "Show boards in calendar/tasks" : "نمایش تابلوها در تقویم/ وظایف",
"Cancel edit" : "Cancel edit",
"Board details" : "Board details", "Board details" : "Board details",
"Edit board" : "ویرایش تخته", "Edit board" : "ویرایش تخته",
"Clone board" : "تخته شبیه‌سازی", "Clone board" : "تخته شبیه‌سازی",
@@ -291,6 +290,7 @@
"No due" : "No due", "No due" : "No due",
"Search for {searchQuery} in all boards" : "Search for {searchQuery} in all boards", "Search for {searchQuery} in all boards" : "Search for {searchQuery} in all boards",
"No results found" : "هیچ نتیجه ای یافت نشد", "No results found" : "هیچ نتیجه ای یافت نشد",
"This weekend {timeLocale}" : "This weekend {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck board {name}\n* Last modified on {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Deck board {name}\n* Last modified on {lastMod}",
"{stack} in {board}" : "{stack} in {board}", "{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Click to expand description", "Click to expand description" : "Click to expand description",
@@ -308,7 +308,6 @@
"upcoming cards" : "upcoming cards", "upcoming cards" : "upcoming cards",
"New card" : "New card", "New card" : "New card",
"Due on {date}" : "Due on {date}", "Due on {date}" : "Due on {date}",
"This weekend {timeLocale}" : "This weekend {timeLocale}",
"Tomorrow {timeLocale}" : "Tomorrow {timeLocale}", "Tomorrow {timeLocale}" : "Tomorrow {timeLocale}",
"Later today {timeLocale}" : "Later today {timeLocale}", "Later today {timeLocale}" : "Later today {timeLocale}",
"Link to a board" : "Link to a board", "Link to a board" : "Link to a board",
@@ -322,8 +321,16 @@
"Share with a Deck card" : "Share with a Deck card", "Share with a Deck card" : "Share with a Deck card",
"Share {file} with a Deck card" : "Share {file} with a Deck card", "Share {file} with a Deck card" : "Share {file} with a Deck card",
"Share" : "هم‌رسانی", "Share" : "هم‌رسانی",
"A <strong>card description</strong> inside the Deck app has been changed" : "شرح برگه در برگه‌دان تغییر کرده است",
"Timeline" : "خط زمانی",
"Share board with a user, group or circle …" : "هم‌رسانی تخته با کاربر، گروه یا حلقه...",
"Searching for users, groups and circles …" : "جستجوی کاربران، گروه‌ها و حلقه‌ها…", "Searching for users, groups and circles …" : "جستجوی کاربران، گروه‌ها و حلقه‌ها…",
"(Circle)" : "(حلقه)", "(Circle)" : "(حلقه)",
"Assign to users/groups/circles" : "به کاربران/ گروه‌ها/ حلقه‌ها اختصاص دهید" "Assign to users/groups/circles" : "به کاربران/ گروه‌ها/ حلقه‌ها اختصاص دهید",
"Next week" : "هفتهٔ بعد",
"Next month" : "ماه بعد",
"List is empty" : "فهرست خالی است",
"Limit deck usage of groups" : "استفاده از برگه‌دان گروه‌ها را محدود کنید",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "محدودکردن برگه‌دان باعث می‌شود تا کاربرانی که جزو آن گروه‌ها نیستند، تابلوهای خود را ایجاد کنند. کاربران همچنان می‌توانند روی تابلوهایی کار کنند که با آنها به اشتراک گذاشته شده است."
},"pluralForm" :"nplurals=2; plural=(n > 1);" },"pluralForm" :"nplurals=2; plural=(n > 1);"
} }

View File

@@ -31,7 +31,6 @@ OC.L10N.register(
"{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}", "{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Olet lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}", "You have added a description to card {card} in list {stack} on board {board}" : "Olet lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} on lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}", "{user} has added a description to card {card} in list {stack} on board {board}" : "{user} on lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "Olet päivittänyt kortin {card} kuvauksen listalla {stack} taululla {board}",
"You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}", "You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}",
"{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}", "{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}",
"You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}", "You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}",
@@ -62,9 +61,7 @@ OC.L10N.register(
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.", "The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.", "The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
"{user} has shared {deck-board} with you." : "{user} on jakanut taulun {deck-board} kanssasi.",
"Deck board" : "Deck-taulu", "Deck board" : "Deck-taulu",
"Create a new deck card" : "Luo uusi kortti",
"Card comments" : "Kortin kommentit", "Card comments" : "Kortin kommentit",
"Finished" : "Valmistunut", "Finished" : "Valmistunut",
"To review" : "Arvosteltavana", "To review" : "Arvosteltavana",
@@ -89,7 +86,6 @@ OC.L10N.register(
"Card not found" : "Korttia ei löydy", "Card not found" : "Korttia ei löydy",
"Path is already shared with this card" : "Polku on jo jaettu tämän kortin kanssa", "Path is already shared with this card" : "Polku on jo jaettu tämän kortin kanssa",
"Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päivä, päivän muodon tulee olla YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päivä, päivän muodon tulee olla YYYY-MM-DD",
"Card details" : "Näytä kortin sisältö",
"Add board" : "Lisää taulu", "Add board" : "Lisää taulu",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu", "Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Search by board title" : "Hae taulun otsikon mukaan", "Search by board title" : "Hae taulun otsikon mukaan",
@@ -114,16 +110,13 @@ OC.L10N.register(
"Archived cards" : "Arkistoidut kortit", "Archived cards" : "Arkistoidut kortit",
"Add list" : "Lisää lista", "Add list" : "Lisää lista",
"List name" : "Listan nimi", "List name" : "Listan nimi",
"Active filters" : "Aktiiviset suodattimet",
"Apply filter" : "Toteuta suodatus", "Apply filter" : "Toteuta suodatus",
"Filter by tag" : "Suodata tunnisteen perusteella", "Filter by tag" : "Suodata tunnisteen perusteella",
"Filter by assigned user" : "Suodata määritetyn käyttäjän perusteella", "Filter by assigned user" : "Suodata määritetyn käyttäjän mukaan",
"Unassigned" : "Määrittämätön", "Unassigned" : "Määrittämätön",
"Filter by status" : "Suodata tilan perusteella", "Open" : "Avaa",
"Open and completed" : "Avoimet ja valmiit", "Completed" : "Valmistui",
"Open" : "Avoimet", "Filter by due date" : "Suodata määräpäivän mukaan",
"Completed" : "Valmiit",
"Filter by due date" : "Suodata määräpäivän perusteella",
"Overdue" : "Myöhässä", "Overdue" : "Myöhässä",
"Next 24 hours" : "Seuraavat 24 tuntia", "Next 24 hours" : "Seuraavat 24 tuntia",
"Next 7 days" : "Seuraavat 7 päivää", "Next 7 days" : "Seuraavat 7 päivää",
@@ -133,8 +126,6 @@ OC.L10N.register(
"Hide archived cards" : "Piilota arkistoidut kortit", "Hide archived cards" : "Piilota arkistoidut kortit",
"Show archived cards" : "Näytä arkistoidut kortit", "Show archived cards" : "Näytä arkistoidut kortit",
"Toggle compact mode" : "Käytä kompaktia tilaa", "Toggle compact mode" : "Käytä kompaktia tilaa",
"Hide card cover images" : "Piilota korttien kansikuvat",
"Show card cover images" : "Näytä korttien kansikuvat",
"Open details" : "Avaa yksityiskohdat", "Open details" : "Avaa yksityiskohdat",
"Details" : "Tiedot", "Details" : "Tiedot",
"Loading board" : "Ladataan taulua", "Loading board" : "Ladataan taulua",
@@ -147,7 +138,6 @@ OC.L10N.register(
"Deleted lists" : "Poistetut listat", "Deleted lists" : "Poistetut listat",
"Undo" : "Kumoa", "Undo" : "Kumoa",
"Deleted cards" : "Poistetut kortit", "Deleted cards" : "Poistetut kortit",
"Share board with a user, group or team …" : "Jaa taulu käyttäjän, ryhmän tai tiimin kanssa...",
"No participants found" : "Ei osallistujia löydetty", "No participants found" : "Ei osallistujia löydetty",
"Board owner" : "Taulun omistaja", "Board owner" : "Taulun omistaja",
"(Group)" : "(Ryhmä)", "(Group)" : "(Ryhmä)",
@@ -156,8 +146,6 @@ OC.L10N.register(
"Can manage" : "Voi hallita", "Can manage" : "Voi hallita",
"Owner" : "Omistaja", "Owner" : "Omistaja",
"Delete" : "Poista", "Delete" : "Poista",
"Failed to create share with {displayName}" : "Jaon luonti epäonnistui kohteen {displayName} kanssa",
"Are you sure you want to transfer the board {title} to {user}?" : "Haluatko varmasti siirtää taulun {title} käyttäjälle {user}?",
"Transfer" : "Siirrä", "Transfer" : "Siirrä",
"Archive all cards" : "Arkistoi kaikki kortit", "Archive all cards" : "Arkistoi kaikki kortit",
"Delete list" : "Poista lista", "Delete list" : "Poista lista",
@@ -171,8 +159,6 @@ OC.L10N.register(
"Board name" : "Taulun nimi", "Board name" : "Taulun nimi",
"Members" : "Jäsenet", "Members" : "Jäsenet",
"Upload new files" : "Lähetä uusia tiedostoja", "Upload new files" : "Lähetä uusia tiedostoja",
"Share from Files" : "Jaa tiedostoista",
"Pending share" : "Odottava jako",
"Add this attachment" : "Lisää tämä liite", "Add this attachment" : "Lisää tämä liite",
"Download" : "Lataa", "Download" : "Lataa",
"Remove attachment" : "Poista liite", "Remove attachment" : "Poista liite",
@@ -206,20 +192,19 @@ OC.L10N.register(
"Write a description …" : "Kirjoita kuvaus…", "Write a description …" : "Kirjoita kuvaus…",
"Choose attachment" : "Valitse liite", "Choose attachment" : "Valitse liite",
"Set a due date" : "Aseta eräpäivä", "Set a due date" : "Aseta eräpäivä",
"Choose a date" : "Valitse päivämäärä",
"Remove due date" : "Poista eräpäivä", "Remove due date" : "Poista eräpäivä",
"Mark as done" : "Merkitse valmiiksi", "Not completed" : "Ei valmis",
"Unarchive card" : "Poista kortti arkistosta", "Unarchive card" : "Poista kortti arkistosta",
"Archive card" : "Arkistoi kortti", "Archive card" : "Arkistoi kortti",
"Select Date" : "Valitse päivä", "Select Date" : "Valitse päivä",
"Assign a tag to this card…" : "Lisää kortille tunniste...", "Assign a tag to this card…" : "Lisää kortille tunniste...",
"Create a new tag:" : "Luo uusi tunniste:",
"(group)" : "(ryhmä)", "(group)" : "(ryhmä)",
"Next week {timeLocale}" : "Ensi viikko {timeLocale}", "Next week {timeLocale}" : "Ensi viikko {timeLocale}",
"{count} comments, {unread} unread" : "{count} kommenttia, {unread} lukematonta", "{count} comments, {unread} unread" : "{count} kommenttia, {unread} lukematonta",
"Edit card title" : "Muokkaa kortin otsikkoa", "Card details" : "Näytä kortin sisältö",
"Assign to me" : "Määritä minulle", "Assign to me" : "Määritä minulle",
"Unassign myself" : "Poista määritys minulta", "Unassign myself" : "Poista määritys minulta",
"Mark as done" : "Merkitse valmiiksi",
"Delete card" : "Poista kortti", "Delete card" : "Poista kortti",
"Card deleted" : "Kortti poistettu", "Card deleted" : "Kortti poistettu",
"seconds ago" : "sekuntia sitten", "seconds ago" : "sekuntia sitten",
@@ -228,33 +213,26 @@ OC.L10N.register(
"Action" : "Toiminto", "Action" : "Toiminto",
"Shift" : "Siirrä", "Shift" : "Siirrä",
"Search" : "Etsi", "Search" : "Etsi",
"Mark card as completed/not completed" : "Merkitse kortti valmiiksi/avoimeksi",
"All boards" : "Kaikki taulut", "All boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut", "Archived boards" : "Arkistoidut taulut",
"Shared with you" : "Jaettu kanssasi", "Shared with you" : "Jaettu kanssasi",
"Deck settings" : "Pakan asetukset",
"Show boards in calendar/tasks" : "Näytä taulut kalenterissa ja tehtävissä",
"Cancel edit" : "Peruuta muokkaus",
"Board details" : "Taulun tiedot", "Board details" : "Taulun tiedot",
"Edit board" : "Muokkaa taulua", "Edit board" : "Muokkaa taulua",
"Clone board" : "Monista taulu", "Clone board" : "Monista taulu",
"Unarchive board" : "Kumoa taulun arkistointi", "Unarchive board" : "Kumoa taulun arkistointi",
"Archive board" : "Arkistoi taulu", "Archive board" : "Arkistoi taulu",
"Export board" : "Vie taulu",
"All cards" : "Kaikki kortit", "All cards" : "Kaikki kortit",
"No notifications" : "Ei ilmoituksia", "No notifications" : "Ei ilmoituksia",
"Delete board" : "Poista taulu", "Delete board" : "Poista taulu",
"Board {0} deleted" : "Taulu {0} poistettu", "Board {0} deleted" : "Taulu {0} poistettu",
"No reminder" : "Ei muistutusta", "No reminder" : "Ei muistutusta",
"An error occurred" : "Tapahtui virhe", "An error occurred" : "Tapahtui virhe",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Haluatko varmasti poistaa taulun {title}? Tämä poistaa kaikki taulun tiedot, mukaan lukien arkistoidut kortit.",
"Delete the board?" : "Poistetaanko tämä taulu?", "Delete the board?" : "Poistetaanko tämä taulu?",
"Today" : "Tänään", "Today" : "Tänään",
"Tomorrow" : "Huomenna", "Tomorrow" : "Huomenna",
"Search for {searchQuery} in all boards" : "Hae ehtoja {searchQuery} kaikilta tauluilta", "Search for {searchQuery} in all boards" : "Hae ehtoja {searchQuery} kaikilta tauluilta",
"No results found" : "Ei tuloksia", "No results found" : "Ei tuloksia",
"Click to expand description" : "Laajenna kuvausta ", "This weekend {timeLocale}" : "Tämä viikonloppu {timeLocale}",
"{nbCards} cards" : "{nbCards} korttia ",
"Click to expand comment" : "Napsauta laajentaaksesi kommentin", "Click to expand comment" : "Napsauta laajentaaksesi kommentin",
"Create a new card" : "Luo uusi kortti", "Create a new card" : "Luo uusi kortti",
"Card title" : "Kortin otsikko", "Card title" : "Kortin otsikko",
@@ -265,9 +243,6 @@ OC.L10N.register(
"Close" : "Sulje", "Close" : "Sulje",
"No upcoming cards" : "Ei tulevia kortteja", "No upcoming cards" : "Ei tulevia kortteja",
"upcoming cards" : "tulevat kortit", "upcoming cards" : "tulevat kortit",
"New card" : "Uusi kortti",
"Due on {date}" : "Määräpäivä {date}",
"This weekend {timeLocale}" : "Tämä viikonloppu {timeLocale}",
"Tomorrow {timeLocale}" : "Huomenna {timeLocale}", "Tomorrow {timeLocale}" : "Huomenna {timeLocale}",
"Later today {timeLocale}" : "Myöhemmin tänään {timeLocale}", "Later today {timeLocale}" : "Myöhemmin tänään {timeLocale}",
"Link to a board" : "Linkki taululle", "Link to a board" : "Linkki taululle",
@@ -278,6 +253,13 @@ OC.L10N.register(
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty", "Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
"Error creating the share" : "Virhe jakoa luotaessa", "Error creating the share" : "Virhe jakoa luotaessa",
"Share" : "Jaa", "Share" : "Jaa",
"(Circle)" : "(Piiri)" "A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Kortin kuvaus</strong> Pakka-sovelluksessa on vaihtunut",
"Timeline" : "Aikajana",
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
"(Circle)" : "(Piiri)",
"Next week" : "Seuraava viikko",
"Next month" : "Seuraava kuukausi",
"List is empty" : "Lista on tyhjä",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -29,7 +29,6 @@
"{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}", "{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Olet lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}", "You have added a description to card {card} in list {stack} on board {board}" : "Olet lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} on lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}", "{user} has added a description to card {card} in list {stack} on board {board}" : "{user} on lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "Olet päivittänyt kortin {card} kuvauksen listalla {stack} taululla {board}",
"You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}", "You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}",
"{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}", "{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}",
"You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}", "You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}",
@@ -60,9 +59,7 @@
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.", "The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.", "The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
"{user} has shared {deck-board} with you." : "{user} on jakanut taulun {deck-board} kanssasi.",
"Deck board" : "Deck-taulu", "Deck board" : "Deck-taulu",
"Create a new deck card" : "Luo uusi kortti",
"Card comments" : "Kortin kommentit", "Card comments" : "Kortin kommentit",
"Finished" : "Valmistunut", "Finished" : "Valmistunut",
"To review" : "Arvosteltavana", "To review" : "Arvosteltavana",
@@ -87,7 +84,6 @@
"Card not found" : "Korttia ei löydy", "Card not found" : "Korttia ei löydy",
"Path is already shared with this card" : "Polku on jo jaettu tämän kortin kanssa", "Path is already shared with this card" : "Polku on jo jaettu tämän kortin kanssa",
"Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päivä, päivän muodon tulee olla YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päivä, päivän muodon tulee olla YYYY-MM-DD",
"Card details" : "Näytä kortin sisältö",
"Add board" : "Lisää taulu", "Add board" : "Lisää taulu",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu", "Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Search by board title" : "Hae taulun otsikon mukaan", "Search by board title" : "Hae taulun otsikon mukaan",
@@ -112,16 +108,13 @@
"Archived cards" : "Arkistoidut kortit", "Archived cards" : "Arkistoidut kortit",
"Add list" : "Lisää lista", "Add list" : "Lisää lista",
"List name" : "Listan nimi", "List name" : "Listan nimi",
"Active filters" : "Aktiiviset suodattimet",
"Apply filter" : "Toteuta suodatus", "Apply filter" : "Toteuta suodatus",
"Filter by tag" : "Suodata tunnisteen perusteella", "Filter by tag" : "Suodata tunnisteen perusteella",
"Filter by assigned user" : "Suodata määritetyn käyttäjän perusteella", "Filter by assigned user" : "Suodata määritetyn käyttäjän mukaan",
"Unassigned" : "Määrittämätön", "Unassigned" : "Määrittämätön",
"Filter by status" : "Suodata tilan perusteella", "Open" : "Avaa",
"Open and completed" : "Avoimet ja valmiit", "Completed" : "Valmistui",
"Open" : "Avoimet", "Filter by due date" : "Suodata määräpäivän mukaan",
"Completed" : "Valmiit",
"Filter by due date" : "Suodata määräpäivän perusteella",
"Overdue" : "Myöhässä", "Overdue" : "Myöhässä",
"Next 24 hours" : "Seuraavat 24 tuntia", "Next 24 hours" : "Seuraavat 24 tuntia",
"Next 7 days" : "Seuraavat 7 päivää", "Next 7 days" : "Seuraavat 7 päivää",
@@ -131,8 +124,6 @@
"Hide archived cards" : "Piilota arkistoidut kortit", "Hide archived cards" : "Piilota arkistoidut kortit",
"Show archived cards" : "Näytä arkistoidut kortit", "Show archived cards" : "Näytä arkistoidut kortit",
"Toggle compact mode" : "Käytä kompaktia tilaa", "Toggle compact mode" : "Käytä kompaktia tilaa",
"Hide card cover images" : "Piilota korttien kansikuvat",
"Show card cover images" : "Näytä korttien kansikuvat",
"Open details" : "Avaa yksityiskohdat", "Open details" : "Avaa yksityiskohdat",
"Details" : "Tiedot", "Details" : "Tiedot",
"Loading board" : "Ladataan taulua", "Loading board" : "Ladataan taulua",
@@ -145,7 +136,6 @@
"Deleted lists" : "Poistetut listat", "Deleted lists" : "Poistetut listat",
"Undo" : "Kumoa", "Undo" : "Kumoa",
"Deleted cards" : "Poistetut kortit", "Deleted cards" : "Poistetut kortit",
"Share board with a user, group or team …" : "Jaa taulu käyttäjän, ryhmän tai tiimin kanssa...",
"No participants found" : "Ei osallistujia löydetty", "No participants found" : "Ei osallistujia löydetty",
"Board owner" : "Taulun omistaja", "Board owner" : "Taulun omistaja",
"(Group)" : "(Ryhmä)", "(Group)" : "(Ryhmä)",
@@ -154,8 +144,6 @@
"Can manage" : "Voi hallita", "Can manage" : "Voi hallita",
"Owner" : "Omistaja", "Owner" : "Omistaja",
"Delete" : "Poista", "Delete" : "Poista",
"Failed to create share with {displayName}" : "Jaon luonti epäonnistui kohteen {displayName} kanssa",
"Are you sure you want to transfer the board {title} to {user}?" : "Haluatko varmasti siirtää taulun {title} käyttäjälle {user}?",
"Transfer" : "Siirrä", "Transfer" : "Siirrä",
"Archive all cards" : "Arkistoi kaikki kortit", "Archive all cards" : "Arkistoi kaikki kortit",
"Delete list" : "Poista lista", "Delete list" : "Poista lista",
@@ -169,8 +157,6 @@
"Board name" : "Taulun nimi", "Board name" : "Taulun nimi",
"Members" : "Jäsenet", "Members" : "Jäsenet",
"Upload new files" : "Lähetä uusia tiedostoja", "Upload new files" : "Lähetä uusia tiedostoja",
"Share from Files" : "Jaa tiedostoista",
"Pending share" : "Odottava jako",
"Add this attachment" : "Lisää tämä liite", "Add this attachment" : "Lisää tämä liite",
"Download" : "Lataa", "Download" : "Lataa",
"Remove attachment" : "Poista liite", "Remove attachment" : "Poista liite",
@@ -204,20 +190,19 @@
"Write a description …" : "Kirjoita kuvaus…", "Write a description …" : "Kirjoita kuvaus…",
"Choose attachment" : "Valitse liite", "Choose attachment" : "Valitse liite",
"Set a due date" : "Aseta eräpäivä", "Set a due date" : "Aseta eräpäivä",
"Choose a date" : "Valitse päivämäärä",
"Remove due date" : "Poista eräpäivä", "Remove due date" : "Poista eräpäivä",
"Mark as done" : "Merkitse valmiiksi", "Not completed" : "Ei valmis",
"Unarchive card" : "Poista kortti arkistosta", "Unarchive card" : "Poista kortti arkistosta",
"Archive card" : "Arkistoi kortti", "Archive card" : "Arkistoi kortti",
"Select Date" : "Valitse päivä", "Select Date" : "Valitse päivä",
"Assign a tag to this card…" : "Lisää kortille tunniste...", "Assign a tag to this card…" : "Lisää kortille tunniste...",
"Create a new tag:" : "Luo uusi tunniste:",
"(group)" : "(ryhmä)", "(group)" : "(ryhmä)",
"Next week {timeLocale}" : "Ensi viikko {timeLocale}", "Next week {timeLocale}" : "Ensi viikko {timeLocale}",
"{count} comments, {unread} unread" : "{count} kommenttia, {unread} lukematonta", "{count} comments, {unread} unread" : "{count} kommenttia, {unread} lukematonta",
"Edit card title" : "Muokkaa kortin otsikkoa", "Card details" : "Näytä kortin sisältö",
"Assign to me" : "Määritä minulle", "Assign to me" : "Määritä minulle",
"Unassign myself" : "Poista määritys minulta", "Unassign myself" : "Poista määritys minulta",
"Mark as done" : "Merkitse valmiiksi",
"Delete card" : "Poista kortti", "Delete card" : "Poista kortti",
"Card deleted" : "Kortti poistettu", "Card deleted" : "Kortti poistettu",
"seconds ago" : "sekuntia sitten", "seconds ago" : "sekuntia sitten",
@@ -226,33 +211,26 @@
"Action" : "Toiminto", "Action" : "Toiminto",
"Shift" : "Siirrä", "Shift" : "Siirrä",
"Search" : "Etsi", "Search" : "Etsi",
"Mark card as completed/not completed" : "Merkitse kortti valmiiksi/avoimeksi",
"All boards" : "Kaikki taulut", "All boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut", "Archived boards" : "Arkistoidut taulut",
"Shared with you" : "Jaettu kanssasi", "Shared with you" : "Jaettu kanssasi",
"Deck settings" : "Pakan asetukset",
"Show boards in calendar/tasks" : "Näytä taulut kalenterissa ja tehtävissä",
"Cancel edit" : "Peruuta muokkaus",
"Board details" : "Taulun tiedot", "Board details" : "Taulun tiedot",
"Edit board" : "Muokkaa taulua", "Edit board" : "Muokkaa taulua",
"Clone board" : "Monista taulu", "Clone board" : "Monista taulu",
"Unarchive board" : "Kumoa taulun arkistointi", "Unarchive board" : "Kumoa taulun arkistointi",
"Archive board" : "Arkistoi taulu", "Archive board" : "Arkistoi taulu",
"Export board" : "Vie taulu",
"All cards" : "Kaikki kortit", "All cards" : "Kaikki kortit",
"No notifications" : "Ei ilmoituksia", "No notifications" : "Ei ilmoituksia",
"Delete board" : "Poista taulu", "Delete board" : "Poista taulu",
"Board {0} deleted" : "Taulu {0} poistettu", "Board {0} deleted" : "Taulu {0} poistettu",
"No reminder" : "Ei muistutusta", "No reminder" : "Ei muistutusta",
"An error occurred" : "Tapahtui virhe", "An error occurred" : "Tapahtui virhe",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Haluatko varmasti poistaa taulun {title}? Tämä poistaa kaikki taulun tiedot, mukaan lukien arkistoidut kortit.",
"Delete the board?" : "Poistetaanko tämä taulu?", "Delete the board?" : "Poistetaanko tämä taulu?",
"Today" : "Tänään", "Today" : "Tänään",
"Tomorrow" : "Huomenna", "Tomorrow" : "Huomenna",
"Search for {searchQuery} in all boards" : "Hae ehtoja {searchQuery} kaikilta tauluilta", "Search for {searchQuery} in all boards" : "Hae ehtoja {searchQuery} kaikilta tauluilta",
"No results found" : "Ei tuloksia", "No results found" : "Ei tuloksia",
"Click to expand description" : "Laajenna kuvausta ", "This weekend {timeLocale}" : "Tämä viikonloppu {timeLocale}",
"{nbCards} cards" : "{nbCards} korttia ",
"Click to expand comment" : "Napsauta laajentaaksesi kommentin", "Click to expand comment" : "Napsauta laajentaaksesi kommentin",
"Create a new card" : "Luo uusi kortti", "Create a new card" : "Luo uusi kortti",
"Card title" : "Kortin otsikko", "Card title" : "Kortin otsikko",
@@ -263,9 +241,6 @@
"Close" : "Sulje", "Close" : "Sulje",
"No upcoming cards" : "Ei tulevia kortteja", "No upcoming cards" : "Ei tulevia kortteja",
"upcoming cards" : "tulevat kortit", "upcoming cards" : "tulevat kortit",
"New card" : "Uusi kortti",
"Due on {date}" : "Määräpäivä {date}",
"This weekend {timeLocale}" : "Tämä viikonloppu {timeLocale}",
"Tomorrow {timeLocale}" : "Huomenna {timeLocale}", "Tomorrow {timeLocale}" : "Huomenna {timeLocale}",
"Later today {timeLocale}" : "Myöhemmin tänään {timeLocale}", "Later today {timeLocale}" : "Myöhemmin tänään {timeLocale}",
"Link to a board" : "Linkki taululle", "Link to a board" : "Linkki taululle",
@@ -276,6 +251,13 @@
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty", "Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
"Error creating the share" : "Virhe jakoa luotaessa", "Error creating the share" : "Virhe jakoa luotaessa",
"Share" : "Jaa", "Share" : "Jaa",
"(Circle)" : "(Piiri)" "A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Kortin kuvaus</strong> Pakka-sovelluksessa on vaihtunut",
"Timeline" : "Aikajana",
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
"(Circle)" : "(Piiri)",
"Next week" : "Seuraava viikko",
"Next month" : "Seuraava kuukausi",
"List is empty" : "Lista on tyhjä",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -37,10 +37,10 @@ OC.L10N.register(
"{user} has archived card {card} in list {stack} on board {board}" : "{user} a archivé la carte {card} de la liste {stack} du tableau {board}", "{user} has archived card {card} in list {stack} on board {board}" : "{user} a archivé la carte {card} de la liste {stack} du tableau {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "Vous avez désarchivé la carte {card} de la liste {stack} du tableau {board}", "You have unarchived card {card} in list {stack} on board {board}" : "Vous avez désarchivé la carte {card} de la liste {stack} du tableau {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} a désarchivé la carte {card} de la liste {stack} du tableau {board}", "{user} has unarchived card {card} in list {stack} on board {board}" : "{user} a désarchivé la carte {card} de la liste {stack} du tableau {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Vous avez marqué la carte {card} comme faite dans la liste {stack} sur le tableau {board}", "You have marked the card {card} as done in list {stack} on board {board}" : "Vous avez marqué la carte {card} comme terminée dans la liste {stack} sur le tableau {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} a marqué la carte {card} comme faite dans la liste {stack} sur le tableau {board}", "{user} has marked card {card} as done in list {stack} on board {board}" : "{user} a marqué la carte {card} comme terminée dans la liste {stack} sur le tableau {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Vous avez marqué la carte {card} comme non faite dans la liste {stack} sur le tableau {board}", "You have marked the card {card} as undone in list {stack} on board {board}" : "Vous avez marqué la carte {card} comme non terminée dans la liste {stack} sur le tableau {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} a marqué la carte {card} comme non faite dans la liste {stack} sur le tableau {board}", "{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} a marqué la carte {card} comme non terminée dans la liste {stack} sur le tableau {board}",
"You have removed the due date of card {card}" : "Vous avez supprimé la date d'échéance de la carte {card}", "You have removed the due date of card {card}" : "Vous avez supprimé la date d'échéance de la carte {card}",
"{user} has removed the due date of card {card}" : "{user} a supprimé la date d'échéance de la carte {card}", "{user} has removed the due date of card {card}" : "{user} a supprimé la date d'échéance de la carte {card}",
"You have set the due date of card {card} to {after}" : "Vous avez établi la date d'échéance de la carte {card} au {after}", "You have set the due date of card {card} to {after}" : "Vous avez établi la date d'échéance de la carte {card} au {after}",
@@ -101,7 +101,7 @@ OC.L10N.register(
"copy" : "copie", "copy" : "copie",
"To do" : "À faire", "To do" : "À faire",
"Doing" : "En cours", "Doing" : "En cours",
"Done" : "Fait", "Done" : "Terminé",
"Example Task 3" : "Exemple de tâche 3", "Example Task 3" : "Exemple de tâche 3",
"Example Task 2" : "Exemple de tâche 2", "Example Task 2" : "Exemple de tâche 2",
"Example Task 1" : "Exemple de tâche 1", "Example Task 1" : "Exemple de tâche 1",
@@ -120,7 +120,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "Date non valable, le format de la date doit être AAAA-MM-JJ", "Invalid date, date format must be YYYY-MM-DD" : "Date non valable, le format de la date doit être AAAA-MM-JJ",
"Personal planning and team project organization" : "Agenda personnel et organisation projet", "Personal planning and team project organization" : "Agenda personnel et organisation projet",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Joignez des fichiers et utilisez-les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Joignez des fichiers et utilisez-les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets",
"Card details" : "Détails de la carte",
"Add board" : "Ajouter un tableau", "Add board" : "Ajouter un tableau",
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.", "Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
"Search by board title" : "Rechercher par titre du tableau", "Search by board title" : "Rechercher par titre du tableau",
@@ -150,9 +149,9 @@ OC.L10N.register(
"Filter by tag" : "Filtrer par étiquette", "Filter by tag" : "Filtrer par étiquette",
"Filter by assigned user" : "Filtrer par utilisateur", "Filter by assigned user" : "Filtrer par utilisateur",
"Unassigned" : "Non attribué", "Unassigned" : "Non attribué",
"Filter by status" : "Filtrer par statut", "Filter by completed" : "Filtrer par terminé",
"Open and completed" : "Ouvert et terminé", "Open and completed" : "Ouvert et terminé",
"Open" : "Ouvert", "Open" : "Ouvrir",
"Completed" : "Terminé", "Completed" : "Terminé",
"Filter by due date" : "Filtrer par échéance", "Filter by due date" : "Filtrer par échéance",
"Overdue" : "En retard", "Overdue" : "En retard",
@@ -257,9 +256,8 @@ OC.L10N.register(
"Add due date" : "Ajouter une date d'échéance", "Add due date" : "Ajouter une date d'échéance",
"Choose a date" : "Sélectionner une date", "Choose a date" : "Sélectionner une date",
"Remove due date" : "Retirer la date d'échéance", "Remove due date" : "Retirer la date d'échéance",
"Mark as done" : "Marquer comme fait",
"Due at:" : "Dû au :", "Due at:" : "Dû au :",
"Not done" : "Non fait", "Not completed" : "Non terminé",
"Unarchive card" : "Sortir la carte des archives", "Unarchive card" : "Sortir la carte des archives",
"Archive card" : "Archiver la carte", "Archive card" : "Archiver la carte",
"Select Date" : "Sélectionnez une date", "Select Date" : "Sélectionnez une date",
@@ -275,9 +273,11 @@ OC.L10N.register(
"Todo items" : "À faire", "Todo items" : "À faire",
"{count} comments, {unread} unread" : "{count} commentaires, {unread} non lus", "{count} comments, {unread} unread" : "{count} commentaires, {unread} non lus",
"Edit card title" : "Modifier le titre de la carte", "Edit card title" : "Modifier le titre de la carte",
"Card details" : "Détails de la carte",
"Assign to me" : "Me l'affecter", "Assign to me" : "Me l'affecter",
"Unassign myself" : "Me désaffecter", "Unassign myself" : "Me désaffecter",
"Mark as not done" : "Marquer comme non fait", "Mark as not done" : "Marquer comme non terminée",
"Mark as done" : "Marquer comme fait",
"Delete card" : "Supprimer la carte", "Delete card" : "Supprimer la carte",
"Card deleted" : "Carte supprimée", "Card deleted" : "Carte supprimée",
"seconds ago" : "à l'instant", "seconds ago" : "à l'instant",
@@ -316,8 +316,6 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Afficher les tableaux dans les agendas/tâches", "Show boards in calendar/tasks" : "Afficher les tableaux dans les agendas/tâches",
"Limit board creation to some groups" : "Limiter la création de tableaux à certains groupes", "Limit board creation to some groups" : "Limiter la création de tableaux à certains groupes",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Les utilisateurs qui ne font pas partie de ces groupes ne pourront pas créer leurs propres tableaux, mais pourront toujours travailler sur les tableaux qui ont été partagés avec eux.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Les utilisateurs qui ne font pas partie de ces groupes ne pourront pas créer leurs propres tableaux, mais pourront toujours travailler sur les tableaux qui ont été partagés avec eux.",
"Cancel edit" : "Annuler les modifications",
"Save board" : "Sauvegarder le tableau",
"Board details" : "Détails du tableau", "Board details" : "Détails du tableau",
"Edit board" : "Renommer le tableau", "Edit board" : "Renommer le tableau",
"Clone board" : "Dupliquer le tableau", "Clone board" : "Dupliquer le tableau",
@@ -343,6 +341,7 @@ OC.L10N.register(
"No due" : "Sans échéance", "No due" : "Sans échéance",
"Search for {searchQuery} in all boards" : "Recherche de {searchQuery} dans tous les tableaux", "Search for {searchQuery} in all boards" : "Recherche de {searchQuery} dans tous les tableaux",
"No results found" : "Aucun résultat", "No results found" : "Aucun résultat",
"This weekend {timeLocale}" : "Ce week-end {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Tableau {name}\n* Dernière modification le {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Tableau {name}\n* Dernière modification le {lastMod}",
"{stack} in {board}" : "{stack} dans {board}", "{stack} in {board}" : "{stack} dans {board}",
"Click to expand description" : "Cliquer pour visualiser la description", "Click to expand description" : "Cliquer pour visualiser la description",
@@ -362,7 +361,6 @@ OC.L10N.register(
"upcoming cards" : "prochaines cartes", "upcoming cards" : "prochaines cartes",
"New card" : "Nouvelle carte", "New card" : "Nouvelle carte",
"Due on {date}" : "Échéance le {date}", "Due on {date}" : "Échéance le {date}",
"This weekend {timeLocale}" : "Ce week-end {timeLocale}",
"Tomorrow {timeLocale}" : "Demain {timeLocale}", "Tomorrow {timeLocale}" : "Demain {timeLocale}",
"Later today {timeLocale}" : "Plus tard aujourd'hui {timeLocale}", "Later today {timeLocale}" : "Plus tard aujourd'hui {timeLocale}",
"Link to a board" : "Relier à un tableau", "Link to a board" : "Relier à un tableau",
@@ -376,9 +374,16 @@ OC.L10N.register(
"Share with a Deck card" : "Partager avec Deck en tant que carte", "Share with a Deck card" : "Partager avec Deck en tant que carte",
"Share {file} with a Deck card" : "Partager {file} avec Deck en tant que carte", "Share {file} with a Deck card" : "Partager {file} avec Deck en tant que carte",
"Share" : "Partager", "Share" : "Partager",
"A <strong>card description</strong> inside the Deck app has been changed" : "La <strong>description de la carte</strong> présente dans l'application Deck a été modifiée",
"Timeline" : "Journal",
"Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…",
"Searching for users, groups and circles …" : "Recherche d'utilisateurs, de groupes et de cercles ...", "Searching for users, groups and circles …" : "Recherche d'utilisateurs, de groupes et de cercles ...",
"(Circle)" : "(Cercle)", "(Circle)" : "(Cercle)",
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles", "Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
"Filter by completed" : "Filtrer par état" "Next week" : "Semaine suivante",
"Next month" : "Mois suivant",
"List is empty" : "La liste est vide",
"Limit deck usage of groups" : "Limiter l'utilisation de Deck aux groupes",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiter Deck empêchera les utilisateurs ne faisant pas partie de ces groupes de créer leurs propres tableaux. Ces utilisateurs pourront toujours travailler sur les tableaux qui ont été partagés avec eux."
}, },
"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");

View File

@@ -35,10 +35,10 @@
"{user} has archived card {card} in list {stack} on board {board}" : "{user} a archivé la carte {card} de la liste {stack} du tableau {board}", "{user} has archived card {card} in list {stack} on board {board}" : "{user} a archivé la carte {card} de la liste {stack} du tableau {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "Vous avez désarchivé la carte {card} de la liste {stack} du tableau {board}", "You have unarchived card {card} in list {stack} on board {board}" : "Vous avez désarchivé la carte {card} de la liste {stack} du tableau {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} a désarchivé la carte {card} de la liste {stack} du tableau {board}", "{user} has unarchived card {card} in list {stack} on board {board}" : "{user} a désarchivé la carte {card} de la liste {stack} du tableau {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Vous avez marqué la carte {card} comme faite dans la liste {stack} sur le tableau {board}", "You have marked the card {card} as done in list {stack} on board {board}" : "Vous avez marqué la carte {card} comme terminée dans la liste {stack} sur le tableau {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} a marqué la carte {card} comme faite dans la liste {stack} sur le tableau {board}", "{user} has marked card {card} as done in list {stack} on board {board}" : "{user} a marqué la carte {card} comme terminée dans la liste {stack} sur le tableau {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Vous avez marqué la carte {card} comme non faite dans la liste {stack} sur le tableau {board}", "You have marked the card {card} as undone in list {stack} on board {board}" : "Vous avez marqué la carte {card} comme non terminée dans la liste {stack} sur le tableau {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} a marqué la carte {card} comme non faite dans la liste {stack} sur le tableau {board}", "{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} a marqué la carte {card} comme non terminée dans la liste {stack} sur le tableau {board}",
"You have removed the due date of card {card}" : "Vous avez supprimé la date d'échéance de la carte {card}", "You have removed the due date of card {card}" : "Vous avez supprimé la date d'échéance de la carte {card}",
"{user} has removed the due date of card {card}" : "{user} a supprimé la date d'échéance de la carte {card}", "{user} has removed the due date of card {card}" : "{user} a supprimé la date d'échéance de la carte {card}",
"You have set the due date of card {card} to {after}" : "Vous avez établi la date d'échéance de la carte {card} au {after}", "You have set the due date of card {card} to {after}" : "Vous avez établi la date d'échéance de la carte {card} au {after}",
@@ -99,7 +99,7 @@
"copy" : "copie", "copy" : "copie",
"To do" : "À faire", "To do" : "À faire",
"Doing" : "En cours", "Doing" : "En cours",
"Done" : "Fait", "Done" : "Terminé",
"Example Task 3" : "Exemple de tâche 3", "Example Task 3" : "Exemple de tâche 3",
"Example Task 2" : "Exemple de tâche 2", "Example Task 2" : "Exemple de tâche 2",
"Example Task 1" : "Exemple de tâche 1", "Example Task 1" : "Exemple de tâche 1",
@@ -118,7 +118,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "Date non valable, le format de la date doit être AAAA-MM-JJ", "Invalid date, date format must be YYYY-MM-DD" : "Date non valable, le format de la date doit être AAAA-MM-JJ",
"Personal planning and team project organization" : "Agenda personnel et organisation projet", "Personal planning and team project organization" : "Agenda personnel et organisation projet",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Joignez des fichiers et utilisez-les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Joignez des fichiers et utilisez-les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets",
"Card details" : "Détails de la carte",
"Add board" : "Ajouter un tableau", "Add board" : "Ajouter un tableau",
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.", "Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
"Search by board title" : "Rechercher par titre du tableau", "Search by board title" : "Rechercher par titre du tableau",
@@ -148,9 +147,9 @@
"Filter by tag" : "Filtrer par étiquette", "Filter by tag" : "Filtrer par étiquette",
"Filter by assigned user" : "Filtrer par utilisateur", "Filter by assigned user" : "Filtrer par utilisateur",
"Unassigned" : "Non attribué", "Unassigned" : "Non attribué",
"Filter by status" : "Filtrer par statut", "Filter by completed" : "Filtrer par terminé",
"Open and completed" : "Ouvert et terminé", "Open and completed" : "Ouvert et terminé",
"Open" : "Ouvert", "Open" : "Ouvrir",
"Completed" : "Terminé", "Completed" : "Terminé",
"Filter by due date" : "Filtrer par échéance", "Filter by due date" : "Filtrer par échéance",
"Overdue" : "En retard", "Overdue" : "En retard",
@@ -255,9 +254,8 @@
"Add due date" : "Ajouter une date d'échéance", "Add due date" : "Ajouter une date d'échéance",
"Choose a date" : "Sélectionner une date", "Choose a date" : "Sélectionner une date",
"Remove due date" : "Retirer la date d'échéance", "Remove due date" : "Retirer la date d'échéance",
"Mark as done" : "Marquer comme fait",
"Due at:" : "Dû au :", "Due at:" : "Dû au :",
"Not done" : "Non fait", "Not completed" : "Non terminé",
"Unarchive card" : "Sortir la carte des archives", "Unarchive card" : "Sortir la carte des archives",
"Archive card" : "Archiver la carte", "Archive card" : "Archiver la carte",
"Select Date" : "Sélectionnez une date", "Select Date" : "Sélectionnez une date",
@@ -273,9 +271,11 @@
"Todo items" : "À faire", "Todo items" : "À faire",
"{count} comments, {unread} unread" : "{count} commentaires, {unread} non lus", "{count} comments, {unread} unread" : "{count} commentaires, {unread} non lus",
"Edit card title" : "Modifier le titre de la carte", "Edit card title" : "Modifier le titre de la carte",
"Card details" : "Détails de la carte",
"Assign to me" : "Me l'affecter", "Assign to me" : "Me l'affecter",
"Unassign myself" : "Me désaffecter", "Unassign myself" : "Me désaffecter",
"Mark as not done" : "Marquer comme non fait", "Mark as not done" : "Marquer comme non terminée",
"Mark as done" : "Marquer comme fait",
"Delete card" : "Supprimer la carte", "Delete card" : "Supprimer la carte",
"Card deleted" : "Carte supprimée", "Card deleted" : "Carte supprimée",
"seconds ago" : "à l'instant", "seconds ago" : "à l'instant",
@@ -314,8 +314,6 @@
"Show boards in calendar/tasks" : "Afficher les tableaux dans les agendas/tâches", "Show boards in calendar/tasks" : "Afficher les tableaux dans les agendas/tâches",
"Limit board creation to some groups" : "Limiter la création de tableaux à certains groupes", "Limit board creation to some groups" : "Limiter la création de tableaux à certains groupes",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Les utilisateurs qui ne font pas partie de ces groupes ne pourront pas créer leurs propres tableaux, mais pourront toujours travailler sur les tableaux qui ont été partagés avec eux.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Les utilisateurs qui ne font pas partie de ces groupes ne pourront pas créer leurs propres tableaux, mais pourront toujours travailler sur les tableaux qui ont été partagés avec eux.",
"Cancel edit" : "Annuler les modifications",
"Save board" : "Sauvegarder le tableau",
"Board details" : "Détails du tableau", "Board details" : "Détails du tableau",
"Edit board" : "Renommer le tableau", "Edit board" : "Renommer le tableau",
"Clone board" : "Dupliquer le tableau", "Clone board" : "Dupliquer le tableau",
@@ -341,6 +339,7 @@
"No due" : "Sans échéance", "No due" : "Sans échéance",
"Search for {searchQuery} in all boards" : "Recherche de {searchQuery} dans tous les tableaux", "Search for {searchQuery} in all boards" : "Recherche de {searchQuery} dans tous les tableaux",
"No results found" : "Aucun résultat", "No results found" : "Aucun résultat",
"This weekend {timeLocale}" : "Ce week-end {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Tableau {name}\n* Dernière modification le {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Tableau {name}\n* Dernière modification le {lastMod}",
"{stack} in {board}" : "{stack} dans {board}", "{stack} in {board}" : "{stack} dans {board}",
"Click to expand description" : "Cliquer pour visualiser la description", "Click to expand description" : "Cliquer pour visualiser la description",
@@ -360,7 +359,6 @@
"upcoming cards" : "prochaines cartes", "upcoming cards" : "prochaines cartes",
"New card" : "Nouvelle carte", "New card" : "Nouvelle carte",
"Due on {date}" : "Échéance le {date}", "Due on {date}" : "Échéance le {date}",
"This weekend {timeLocale}" : "Ce week-end {timeLocale}",
"Tomorrow {timeLocale}" : "Demain {timeLocale}", "Tomorrow {timeLocale}" : "Demain {timeLocale}",
"Later today {timeLocale}" : "Plus tard aujourd'hui {timeLocale}", "Later today {timeLocale}" : "Plus tard aujourd'hui {timeLocale}",
"Link to a board" : "Relier à un tableau", "Link to a board" : "Relier à un tableau",
@@ -374,9 +372,16 @@
"Share with a Deck card" : "Partager avec Deck en tant que carte", "Share with a Deck card" : "Partager avec Deck en tant que carte",
"Share {file} with a Deck card" : "Partager {file} avec Deck en tant que carte", "Share {file} with a Deck card" : "Partager {file} avec Deck en tant que carte",
"Share" : "Partager", "Share" : "Partager",
"A <strong>card description</strong> inside the Deck app has been changed" : "La <strong>description de la carte</strong> présente dans l'application Deck a été modifiée",
"Timeline" : "Journal",
"Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…",
"Searching for users, groups and circles …" : "Recherche d'utilisateurs, de groupes et de cercles ...", "Searching for users, groups and circles …" : "Recherche d'utilisateurs, de groupes et de cercles ...",
"(Circle)" : "(Cercle)", "(Circle)" : "(Cercle)",
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles", "Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
"Filter by completed" : "Filtrer par état" "Next week" : "Semaine suivante",
"Next month" : "Mois suivant",
"List is empty" : "La liste est vide",
"Limit deck usage of groups" : "Limiter l'utilisation de Deck aux groupes",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiter Deck empêchera les utilisateurs ne faisant pas partie de ces groupes de créer leurs propres tableaux. Ces utilisateurs pourront toujours travailler sur les tableaux qui ont été partagés avec eux."
},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
} }

View File

@@ -1,384 +0,0 @@
OC.L10N.register(
"deck",
{
"You have created a new board {board}" : "Tá bord {board} nua cruthaithe agat",
"{user} has created a new board {board}" : "Tá bord {board} nua cruthaithe ag {user}",
"You have deleted the board {board}" : "Tá an bord {board} scriosta agat",
"{user} has deleted the board {board}" : "Tá an bord {board} scriosta ag {user}",
"You have restored the board {board}" : "Tá an bord {board} aischurtha agat",
"{user} has restored the board {board}" : "Tá an bord {board} athchóirithe ag {user}",
"You have shared the board {board} with {acl}" : "Tá an bord {board} roinnte agat le {acl}",
"{user} has shared the board {board} with {acl}" : "Roinn {user} an bord {board} le {acl}",
"You have removed {acl} from the board {board}" : "Bhain tú {acl} den chlár {board}",
"{user} has removed {acl} from the board {board}" : "Bhain {user} {acl} den chlár {board}",
"You have renamed the board {before} to {board}" : "D'athainmnigh tú an bord {before} go {board}",
"{user} has renamed the board {before} to {board}" : "D'athainmnigh {user} an bord {before} go {board}",
"You have archived the board {board}" : "Tá an bord {board} curtha i gcartlann agat",
"{user} has archived the board {before}" : "Chuir {user} an clár i gcartlann {roimh}",
"You have unarchived the board {board}" : "Tá an bord {board} díchartlannaithe agat",
"{user} has unarchived the board {before}" : "Rinne {user} an clár a dhíchartlannú {before}",
"You have created a new list {stack} on board {board}" : "Tá liosta {stack} nua cruthaithe agat ar bord {board}",
"{user} has created a new list {stack} on board {board}" : "Chruthaigh {user} liosta {stack} nua ar bord {board}",
"You have renamed list {before} to {stack} on board {board}" : "D'athainmnigh tú an liosta {before} mar {stack} ar bord {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "D'athainmnigh {user} an liosta {before} go {stack} ar bord {board}",
"You have deleted list {stack} on board {board}" : "Tá an liosta {stack} scriosta agat ar bord {board}",
"{user} has deleted list {stack} on board {board}" : "Scrios {user} an liosta {stack} ar bord {board}",
"You have created card {card} in list {stack} on board {board}" : "Chruthaigh tú cárta {card} sa liosta {stack} ar bord {board}",
"{user} has created card {card} in list {stack} on board {board}" : "Chruthaigh {user} cárta {card} sa liosta {stack} ar bord {board}",
"You have deleted card {card} in list {stack} on board {board}" : "Tá cárta {card} scriosta agat sa liosta {stack} ar bord {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "scrios {user} cárta {card} sa liosta {stack} ar bord {board}",
"You have renamed the card {before} to {card}" : "D'athainmnigh tú an cárta {before} go {card}",
"{user} has renamed the card {before} to {card}" : "D'athainmnigh {user} an cárta {before} go {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Chuir tú cur síos le cárta {card} sa liosta {stack} ar bord {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "Chuir {user} cur síos le cárta {card} sa liosta {stack} ar bord {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "Tá an cur síos ar chárta {card} sa liosta {stack} ar bord {board} nuashonraithe agat",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "Tá an cur síos ar an gcárta {card} sa liosta {stack} ar bord {board} nuashonraithe ag {user}",
"You have archived card {card} in list {stack} on board {board}" : "Tá cárta {card} sa chartlann agat sa liosta {stack} ar bord {board}",
"{user} has archived card {card} in list {stack} on board {board}" : "Chuir {user} cárta {card} sa liosta {stack} ar bord {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "Tá cárta {card} dí-cartlannaithe agat sa liosta {stack} ar bord {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "Tá {card} neamhchartlannaithe ag {user} sa liosta {stack} ar bord {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Tá an cárta {card} marcáilte agat mar a rinneadh sa liosta {stack} ar bord {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "Mharcáil {user} cárta {card} mar a rinneadh sa liosta {stack} ar bord {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Tá tú tar éis an cárta {card} a mharcáil mar rud cealaithe sa liosta {stack} ar bord {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "Mharcáil {user} an cárta {card} mar rud cealaithe sa liosta {stack} ar bord {board}",
"You have removed the due date of card {card}" : "Bhain tú dáta dlite an chárta {card}",
"{user} has removed the due date of card {card}" : "Bhain {user} dáta dlite an chárta {card}",
"You have set the due date of card {card} to {after}" : "Tá dáta dlite an chárta {card} socraithe agat go dtí {after}",
"{user} has set the due date of card {card} to {after}" : "Tá dáta dlite an chárta {card} socraithe ag {user} go dtí {after}",
"You have updated the due date of card {card} to {after}" : "Tá dáta dlite cárta {card} nuashonraithe agat go dtí {after}",
"{user} has updated the due date of card {card} to {after}" : "Tá dáta dlite an chárta {card} nuashonraithe ag {user} go dtí {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Chuir tú an chlib {label} le cárta {card} sa liosta {stack} ar bord {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "Chuir {user} an chlib {label} le cárta {card} sa liosta {stack} ar bord {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Bhain tú an chlib {label} de chárta {card} sa liosta {stack} ar bord {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "Bhain {user} an chlib {label} de chárta {card} sa liosta {stack} ar bord {board}",
"You have assigned {assigneduser} to card {card} on board {board}" : "Shann tú {assigneduser} do chárta {card} ar bord {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "Tá {user} sannta {assigneduser} do chárta {card} ar bord {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Tá {assigneduser} díshannta agat ó chárta {card} ar bord {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "Tá {user} díshannaithe {user} ó chárta {card} ar bord {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Bhog tú an cárta {card} ón liosta {stackBefore} go {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "Bhog {user} an cárta {card} ón liosta {stackBefore} go {stack}",
"You have added the attachment {attachment} to card {card}" : "Chuir tú an ceangaltán {attachment} le cárta {card}",
"{user} has added the attachment {attachment} to card {card}" : "Chuir {user} an ceangaltán {attachment} le cárta {card}",
"You have updated the attachment {attachment} on card {card}" : "Tá an ceangaltán {attachment} ar chárta {card} nuashonraithe agat",
"{user} has updated the attachment {attachment} on card {card}" : "Tá an ceangaltán {attachment} ar chárta {card} nuashonraithe ag {user}",
"You have deleted the attachment {attachment} from card {card}" : "Scrios tú an ceangaltán {attachment} de chárta {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "Scrios {user} an ceangaltán {attachment} ó chárta {card}",
"You have restored the attachment {attachment} to card {card}" : "Tá an ceangaltán {attachment} aischurtha go cárta {card}",
"{user} has restored the attachment {attachment} to card {card}" : "Tá {user} tar éis an ceangaltán {attachment} a aischur chuig cárta {card}",
"You have commented on card {card}" : "Rinne tú nóta tráchta ar chárta {card}",
"{user} has commented on card {card}" : "Rinne {user} nóta tráchta ar chárta {card}",
"Deck" : "Deic",
"Changes in the <strong>Deck app</strong>" : "Athruithe san aip 1Deck1",
"A <strong>board, list or card</strong> was changed" : "Athraíodh <strong>chlár, liosta nó cárta</strong> ",
"A <strong>comment</strong> was created on a card" : "Cruthaíodh <strong>trácht</strong> ar chárta",
"A <strong>card description</strong> has been changed" : "Athraíodh <strong>cur síos chárta</strong> ",
"Cards due today" : "Cártaí dlite inniu",
"Cards due tomorrow" : "Cártaí dlite amárach",
"Upcoming cards" : "Cártaí atá le teacht",
"Load more" : "Luchtaigh níos mó",
"Personal" : "Pearsanta",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Tá an cárta \"%s\" ar \"%s\" tugtha duit ag %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "Shann {user} an cárta {deck-card} ar {deck-board} duit.",
"The card \"%s\" on \"%s\" has reached its due date." : "Tá an dáta dlite sroichte ag an gcárta \"%s\" ar \"%s\".",
"The card {deck-card} on {deck-board} has reached its due date." : "Tá an dáta dlite sroichte ag an gcárta {deck-card} ar {deck-board}.",
"%s has mentioned you in a comment on \"%s\"." : "Luaigh %s tú i nóta tráchta ar \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "Luaigh {user} thú i nóta tráchta ar {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Tá an clár \"%s\" roinnte leat ag %s.",
"{user} has shared {deck-board} with you." : "Roinn {user} {deck-board} leat.",
"Deck board" : "Bord deic",
"Owned by %1$s" : "Is le %1$s í",
"Deck boards, cards and comments" : "Cláir deic, cártaí agus tuairimí",
"From %1$s, in %2$s/%3$s, owned by %4$s" : "Ó %1$s, i %2$s/%3$s, ar le %4$s é",
"Create a new deck card" : "Cruthaigh cárta deic nua",
"Card comments" : "Tuairimí cártaí",
"%s on %s" : "%s ar %s",
"Deck boards and cards" : "Cláir deic agus cártaí",
"No data was provided to create an attachment." : "Níor soláthraíodh aon sonraí chun ceangaltán a chruthú.",
"Finished" : "Críochnaithe",
"To review" : "Chun athbhreithniú a dhéanamh",
"Action needed" : "Gníomh de dhíth",
"Later" : "Níos déanaí",
"copy" : "cóip",
"To do" : "A dhéanamh",
"Doing" : "Ag déanamh",
"Done" : "Déanta",
"Example Task 3" : "Tasc Sampla 3",
"Example Task 2" : "Tasc Sampla 2",
"Example Task 1" : "Tasc Sampla 1",
"The file was uploaded" : "Uaslódáladh an comhad",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Sáraíonn an comhad uaslódáilte an treoir upload_max_filesize i php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Sáraíonn an comhad uaslódáilte an treoir MAX_FILE_SIZE a sonraíodh san fhoirm HTML",
"The file was only partially uploaded" : "Níor uaslódáladh an comhad ach go páirteach",
"No file was uploaded" : "Níor uaslódáladh aon chomhad",
"Missing a temporary folder" : "Fillteán sealadach ar iarraidh",
"Could not write file to disk" : "Níorbh fhéidir an comhad a scríobh ar an diosca",
"A PHP extension stopped the file upload" : "Chuir síneadh PHP stop le huaslódáil an chomhaid",
"No file uploaded or file size exceeds maximum of %s" : "Níl aon chomhad uaslódáilte nó méid comhaid níos mó ná uasmhéid%s",
"This comment has more than %s characters.\nAdded as an attachment to the card with name %s.\nAccessible on URL: %s." : "Tá níos mó ná %s carachtar sa nóta tráchta seo.\nCurtha leis mar cheangaltán leis an gcárta ar a bhfuil an t-ainm %s.\nInrochtana ar URL: %s.",
"Card not found" : "Cárta gan aimsiú",
"Path is already shared with this card" : "Tá an chonair roinnte leis an gcárta seo cheana féin",
"Invalid date, date format must be YYYY-MM-DD" : "Dáta neamhbhailí, caithfidh formáid an dáta a bheith BBBB-MM-DD",
"Personal planning and team project organization" : "Pleanáil phearsanta agus eagrú tionscadail foirne",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Is uirlis eagraíochta stíl kanban é Deck atá dírithe ar phleanáil phearsanta agus eagrú tionscadail d'fhoirne atá comhtháite le Nextcloud.\n\n\n- 📥 Cuir do thascanna le cártaí agus cuir in ord iad\n- 📄 Scríobh síos nótaí breise i Markdown\n- 🔖 Sann lipéid le haghaidh eagrú níos fearr fós\n- 👥 Roinn le d'fhoireann, do chairde nó do theaghlach\n- 📎 Ceangail comhaid agus leabaigh iad i do chur síos Markdown\n- 💬 Déan plé le dfhoireann ag úsáid tuairimí\n- ⚡ Coinnigh súil ar athruithe sa sruth gníomhaíochta\n- 🚀 Eagraigh do thionscadal",
"Card details" : "Sonraí cártaí",
"Add board" : "Cuir bord leis",
"Select the board to link to a project" : "Roghnaigh an clár chun nasc a dhéanamh le tionscadal",
"Search by board title" : "Cuardaigh de réir teideal an bhoird",
"Select board" : "Roghnaigh bord",
"Move card to another board" : "Bog cárta go bord eile",
"Select a board" : "Roghnaigh bord",
"No lists available" : "Níl aon liostaí ar fáil",
"Select a list" : "Roghnaigh liosta",
"Move card" : "Bog cárta",
"Cancel" : "Cealaigh",
"Select a card" : "Roghnaigh cárta",
"Select the card to link to a project" : "Roghnaigh an cárta chun nascadh le tionscadal",
"Link to card" : "Nasc le cárta",
"File already exists" : "Tá an comhad ann cheana féin",
"A file with the name {filename} already exists." : "Tá comhad leis an ainm {filename} ann cheana féin.",
"Do you want to overwrite it?" : "Ar mhaith leat é a fhorscríobh?",
"Overwrite file" : "Forscríobh comhad",
"Keep existing file" : "Coinnigh an comhad atá ann cheana féin",
"This board is read only" : "Tá an bord seo léite amháin",
"Drop your files to upload" : "Scaoil do chuid comhad le huaslódáil",
"Add card" : "Cuir cárta leis",
"Archived cards" : "Cártaí cartlainne",
"Add list" : "Cuir liosta leis",
"List name" : "Ainm an liosta",
"Active filters" : "Scagairí gníomhacha",
"Apply filter" : "Cuir scagaire i bhfeidhm",
"Filter by tag" : "Scag le clib",
"Filter by assigned user" : "Scag de réir úsáideora sannta",
"Unassigned" : "Neamhshannta",
"Filter by status" : "Scag de réir stádais",
"Open and completed" : "Oscailte agus críochnaithe",
"Open" : "Oscail",
"Completed" : "Críochnaithe",
"Filter by due date" : "Scag faoin dáta dlite",
"Overdue" : "Thar téarma",
"Next 24 hours" : "24 uair an chloig eile",
"Next 7 days" : "7 lá ina dhiaidh sin",
"Next 30 days" : "30 lá eile",
"No due date" : "Gan dáta dlite",
"Clear filter" : "Glan an scagaire",
"View Modes" : "Modhanna Amharc",
"Toggle View Modes" : "Scoránaigh Modhanna Amharc",
"Hide archived cards" : "Folaigh cártaí cartlainne",
"Show archived cards" : "Taispeáin cártaí cartlainne",
"Toggle compact mode" : "Scoránaigh mód dlúth",
"Hide card cover images" : "Folaigh íomhánna clúdaigh cártaí",
"Show card cover images" : "Taispeáin íomhánna clúdaigh cártaí",
"Open details" : "Sonraí oscailte",
"Details" : "Sonraí",
"Currently present people" : "Daoine i láthair faoi láthair",
"Loading board" : "Bord á lódáil",
"Board not found" : "Bord gan aimsiú",
"Create a new list to add cards to this board" : "Cruthaigh liosta nua chun cártaí a chur leis an gclár seo",
"Sharing" : "Roinnt",
"Tags" : "Clibeanna",
"Deleted items" : "Míreanna scriosta",
"Activity" : "Gníomhaíocht",
"Deleted lists" : "Liostaí scriosta",
"Undo" : "Cealaigh",
"Deleted cards" : "Cártaí scriosta",
"Share board with a user, group or team …" : "Roinn an clár le húsáideoir, grúpa nó foireann…",
"Searching for users, groups and teams …" : "Ag cuardach úsáideoirí, grúpaí agus foirne…",
"No participants found" : "Níor aimsíodh rannpháirtithe ar bith",
"Board owner" : "Úinéir boird",
"(Group)" : "(Grúpa)",
"(Team)" : "(Foireann)",
"Can edit" : "Is féidir eagarthóireacht a dhéanamh",
"Can share" : "Is féidir a roinnt",
"Can manage" : "Is féidir a bhainistiú",
"Owner" : "Úinéir",
"Delete" : "Scrios",
"Failed to create share with {displayName}" : "Theip ar chomhroinnt le {displayName} a chruthú",
"Are you sure you want to transfer the board {title} to {user}?" : "An bhfuil tú cinnte gur mhaith leat an clár {title} a aistriú go {user}?",
"Transfer the board." : "Aistrigh an bord.",
"Transfer" : "Aistriú",
"The board has been transferred to {user}" : "Aistríodh an clár go {user}",
"Failed to transfer the board to {user}" : "Theip ar an gclár a aistriú go {user}",
"Edit list title" : "Cuir teideal an liosta in eagar",
"Archive all cards" : "Cartlann na cártaí go léir",
"Unarchive all cards" : "Díchairtigh na cártaí go léir",
"Delete list" : "Scrios an liosta",
"Archive all cards in this list" : "Cuir gach cárta sa liosta seo i gcartlann",
"Unarchive all cards in this list" : "Déan na cártaí go léir sa liosta seo a dhíchartlannú",
"Add a new card" : "Cuir cárta nua leis",
"Card name" : "Ainm cárta",
"List deleted" : "Scriosadh an liosta",
"Edit" : "Cuir in eagar",
"Add a new tag" : "Cuir clib nua leis",
"title and color value must be provided" : "ní mór teideal agus luach datha a sholáthar",
"Board name" : "Ainm an bhoird",
"Members" : "Baill",
"Assign to users/groups/team" : "Sann d'úsáideoirí/grúpaí/foireann",
"Assign a user to this card…" : "Sann úsáideoir don chárta seo…",
"Select a user to assign to this card…" : "Roghnaigh úsáideoir le sannadh don chárta seo…",
"Upload new files" : "Uaslódáil comhaid nua",
"Share from Files" : "Comhroinn ó Chomhaid",
"Pending share" : "Ar feitheamh sciar",
"Add this attachment" : "Cuir an ceangaltán seo leis",
"Show in Files" : "Taispeáin i gComhaid",
"Download" : "Íoslódáil",
"Remove attachment" : "Bain ceangaltán",
"Delete Attachment" : "Scrios Ceangaltán",
"Restore Attachment" : "Athchóirigh Ceangaltán",
"File to share" : "Comhad le roinnt",
"Invalid path selected" : "Conair neamhbhailí roghnaithe",
"Open in sidebar view" : "Oscail san amharc barra taoibh",
"Open in bigger view" : "Oscail i radharc níos mó",
"Attachments" : "Ceangaltáin",
"Comments" : "Tuairimí",
"Modified" : "Athraithe",
"Created" : "Cruthaithe",
"The title cannot be empty." : "Ní féidir leis an teideal a bheith folamh.",
"No comments yet. Begin the discussion!" : "Níl trácht ar bith fós. Cuir tús leis an bplé!",
"Failed to load comments" : "Theip ar lódáil nótaí",
"Save" : "Sábháil",
"The comment cannot be empty." : "Ní féidir leis an nóta tráchta a bheith folamh.",
"The comment cannot be longer than 1000 characters." : "Ní féidir leis an nóta tráchta a bheith níos faide ná 1000 carachtar.",
"In reply to" : "Mar fhreagra ar",
"Cancel reply" : "Cealaigh freagra",
"Reply" : "Freagra",
"Update" : "Nuashonrú",
"Created:" : "Cruthaithe:",
"Description" : "Cur síos",
"(Unsaved)" : "(Gan sábháil)",
"(Saving…)" : "(Shábháil…)",
"Formatting help" : "Ionsáigh ó Chomhaid",
"Edit description" : "Cuir cur síos in eagar",
"View description" : "Féach ar an gcur síos",
"Add Attachment" : "Cuir Ceangaltán leis",
"Write a description …" : "Scríobh cur síos…",
"Choose attachment" : "Roghnaigh ceangaltán",
"Assign a due date to this card…" : "Sann dáta dlite don chárta seo…",
"Set a due date" : "Socraigh dáta dlite",
"Add due date" : "Cuir dáta dlite leis",
"Choose a date" : "Roghnaigh dáta",
"Remove due date" : "Bain an dáta dlite",
"Mark as done" : "Marcáil mar a rinneadh",
"Due at:" : "Dlite ag:",
"Not done" : "Ní dhearna",
"Unarchive card" : "Cárta unarchive",
"Archive card" : "Cárta cartlainne",
"Select Date" : "Roghnaigh Dáta",
"Set due date for later today" : "Socraigh dáta dlite níos déanaí inniu",
"Set due date for tomorrow" : "Socraigh dáta dlite don lá amárach",
"Set due date for this weekend" : "Socraigh dáta dlite don deireadh seachtaine seo",
"Set due date for next week" : "Socraigh dáta dlite don tseachtain seo chugainn",
"Assign a tag to this card…" : "Sann clib don chárta seo…",
"Select or create a tag…" : "Roghnaigh nó cruthaigh clib…",
"Create a new tag:" : "Cruthaigh clib nua:",
"(group)" : "(grúpa)",
"Next week {timeLocale}" : "An tseachtain seo chugainn {timeLocale}",
"Todo items" : "Míreanna le déanamh",
"{count} comments, {unread} unread" : "{count} nóta tráchta, {unread} neamhléite",
"Edit card title" : "Cuir teideal an chárta in eagar",
"Assign to me" : "Sann dom",
"Unassign myself" : "Díshannadh mé féin",
"Mark as not done" : "Marcáil mar nach bhfuil déanta",
"Delete card" : "Scrios cárta",
"Card deleted" : "Cárta scriosta",
"seconds ago" : "soicind ó shin",
"Keyboard shortcuts" : "Aicearraí méarchláir",
"Boost your productivity using Deck with keyboard shortcuts." : "Cuir le do tháirgiúlacht ag baint úsáide as Deic le aicearraí méarchláir.",
"Board actions" : "Gníomhartha an Bhoird",
"Keyboard shortcut" : "Aicearra méarchláir",
"Action" : "Gníomh",
"Shift" : "Shift",
"Scroll" : "Scrollaigh",
"Scroll sideways" : "Scrollaigh taobh",
"Navigate between cards" : "Déan nascleanúint idir cártaí",
"Esc" : "Esc",
"Close card details" : "Dún sonraí an chárta",
"Ctrl" : "Ctrl",
"Search" : "Cuardach",
"Show card filters" : "Taispeáin scagairí cártaí",
"Clear card filters" : "Glan na scagairí cárta",
"Show help dialog" : "Taispeáin dialóg cabhrach",
"Card actions" : "Gníomhartha cártaí",
"The following actions can be triggered on the currently highlighted card" : "Is féidir na gníomhartha seo a leanas a chur i ngníomh ar an gcárta aibhsithe faoi láthair",
"Enter" : "Cuir isteach",
"Space" : "Spás",
"Open card details" : "Oscail sonraí cárta",
"Edit the card title" : "Cuir teideal an chárta in eagar",
"Assign yourself to the current card" : "Sann tú féin don chárta reatha",
"Archive/unarchive the current card" : "Cuir an cárta reatha i gcartlann/dí-cartlann",
"Mark card as completed/not completed" : "Marcáil an cárta mar chríochnaithe/gan chríochnú",
"Open card menu" : "Oscail roghchlár cártaí",
"All boards" : "Gach boird",
"Archived boards" : "Boird chartlainne",
"Shared with you" : "Roinnte leat",
"Deck settings" : "Socruithe deic",
"Use bigger card view" : "Úsáid radharc cárta níos mó",
"Show card ID badge" : "Taispeáin suaitheantas aitheantais an chárta",
"Show boards in calendar/tasks" : "Taispeáin cláir san fhéilire/tascanna",
"Limit board creation to some groups" : "Teorainn a chur le cruthú cláir do roinnt grúpaí",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Ní bheidh úsáideoirí taobh amuigh de na grúpaí sin in ann a gcuid boird féin a chruthú, ach beidh siad fós in ann oibriú ar bhoird atá roinnte leo.",
"Cancel edit" : "Cealaigh eagarthóireacht",
"Save board" : "Sábháil bord",
"Board details" : "Sonraí an Bhoird",
"Edit board" : "Cuir bord in eagar",
"Clone board" : "Clár clón",
"Unarchive board" : "Bord gan chartlann",
"Archive board" : "Bord cartlainne",
"Export board" : "Bord easpórtála",
"Turn on due date reminders" : "Cuir meabhrúcháin dáta dlite ar siúl",
"Turn off due date reminders" : "Múch meabhrúcháin dáta dlite",
"Due date reminders" : "Meabhrúcháin dáta dlite",
"All cards" : "Gach cártaí",
"Assigned cards" : "Cártaí sannta",
"No notifications" : "Gan fógraí",
"Delete board" : "Scrios an bord",
"Board {0} deleted" : "Scriosadh an bord {0}",
"Only assigned cards" : "Cártaí sannta amháin",
"No reminder" : "Gan meabhrúchán",
"An error occurred" : "Tharla earráid",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "An bhfuil tú cinnte gur mhaith leat an clár {title} a scriosadh? Scriosfaidh sé seo sonraí uile an bhoird seo lena n-áirítear cártaí cartlainne.",
"Delete the board?" : "An bhfuil fonn ort an clár a scriosadh?",
"Loading filtered view" : "Amharc scagtha á lódáil",
"Today" : "Inniu",
"Tomorrow" : "Amárach",
"No due" : "Níl dlite",
"Search for {searchQuery} in all boards" : "Cuardaigh {searchQuery} i ngach clár",
"No results found" : "Níor aimsíodh aon torthaí",
"Deck board {name}\n* Last modified on {lastMod}" : "Bord deic {name}\n* Athraithe go deireanach ar {lastMod}",
"{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Cliceáil chun cur síos a leathnú",
"* Created on {created}\n* Last modified on {lastMod}\n* {nbAttachments} attachments\n* {nbComments} comments" : "* Cruthaithe ar {created}\n* Athraithe go deireanach ar {lastMod}\n* {nbAttachments} ceangaltán\n* {nbComments} nóta tráchta",
"{nbCards} cards" : "cártaí {nbCards}",
"Click to expand comment" : "Cliceáil chun trácht a leathnú",
"Create a new card" : "Cruthaigh cárta nua",
"Card title" : "Teideal an chárta",
"Create card" : "Cruthaigh cárta",
"Creating the new card …" : "Cárta nua á chruthú…",
"Card \"{card}\" was added to \"{board}\"" : "Cuireadh cárta \"{card}\" le \"{board}\"",
"Open card" : "Cárta oscailte",
"Close" : "Dún",
"No upcoming cards" : "Uimh cártaí le teacht",
"upcoming cards today" : "cártaí atá le teacht inniu",
"upcoming cards tomorrow" : "cártaí atá le teacht amárach",
"upcoming cards" : "cártaí atá le teacht",
"New card" : "Cárta nua",
"Due on {date}" : "Dlite ar {date}",
"This weekend {timeLocale}" : "An deireadh seachtaine seo - {timeLocale}",
"Tomorrow {timeLocale}" : "Amárach - {timeLocale}",
"Later today {timeLocale}" : "Níos déanaí inniu - {timeLocale}",
"Link to a board" : "Nasc le bord",
"Link to a card" : "Nasc le cárta",
"Create a card" : "Cruthaigh cárta",
"Message from {author} in {conversationName}" : "Teachtaireacht ó {author} in {conversationName}",
"Something went wrong" : "Chuaigh rud eigin mícheart",
"Failed to upload {name}" : "Theip ar uaslódáil {name}",
"Maximum file size of {size} exceeded" : "Sáraíodh uasmhéid comhaid de {size}",
"Error creating the share" : "Earráid agus an sciar á cruthú",
"Share with a Deck card" : "Comhroinn le cárta Deic",
"Share {file} with a Deck card" : "Roinn {file} le cárta Deic",
"Share" : "Comhroinn",
"Searching for users, groups and circles …" : "Ag cuardach úsáideoirí, grúpaí agus ciorcail…",
"(Circle)" : "(Ciorcal)",
"Assign to users/groups/circles" : "Sann d'úsáideoirí/grúpaí/ciorcail",
"Filter by completed" : "Scag de réir críochnaithe"
},
"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);");

View File

@@ -1,382 +0,0 @@
{ "translations": {
"You have created a new board {board}" : "Tá bord {board} nua cruthaithe agat",
"{user} has created a new board {board}" : "Tá bord {board} nua cruthaithe ag {user}",
"You have deleted the board {board}" : "Tá an bord {board} scriosta agat",
"{user} has deleted the board {board}" : "Tá an bord {board} scriosta ag {user}",
"You have restored the board {board}" : "Tá an bord {board} aischurtha agat",
"{user} has restored the board {board}" : "Tá an bord {board} athchóirithe ag {user}",
"You have shared the board {board} with {acl}" : "Tá an bord {board} roinnte agat le {acl}",
"{user} has shared the board {board} with {acl}" : "Roinn {user} an bord {board} le {acl}",
"You have removed {acl} from the board {board}" : "Bhain tú {acl} den chlár {board}",
"{user} has removed {acl} from the board {board}" : "Bhain {user} {acl} den chlár {board}",
"You have renamed the board {before} to {board}" : "D'athainmnigh tú an bord {before} go {board}",
"{user} has renamed the board {before} to {board}" : "D'athainmnigh {user} an bord {before} go {board}",
"You have archived the board {board}" : "Tá an bord {board} curtha i gcartlann agat",
"{user} has archived the board {before}" : "Chuir {user} an clár i gcartlann {roimh}",
"You have unarchived the board {board}" : "Tá an bord {board} díchartlannaithe agat",
"{user} has unarchived the board {before}" : "Rinne {user} an clár a dhíchartlannú {before}",
"You have created a new list {stack} on board {board}" : "Tá liosta {stack} nua cruthaithe agat ar bord {board}",
"{user} has created a new list {stack} on board {board}" : "Chruthaigh {user} liosta {stack} nua ar bord {board}",
"You have renamed list {before} to {stack} on board {board}" : "D'athainmnigh tú an liosta {before} mar {stack} ar bord {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "D'athainmnigh {user} an liosta {before} go {stack} ar bord {board}",
"You have deleted list {stack} on board {board}" : "Tá an liosta {stack} scriosta agat ar bord {board}",
"{user} has deleted list {stack} on board {board}" : "Scrios {user} an liosta {stack} ar bord {board}",
"You have created card {card} in list {stack} on board {board}" : "Chruthaigh tú cárta {card} sa liosta {stack} ar bord {board}",
"{user} has created card {card} in list {stack} on board {board}" : "Chruthaigh {user} cárta {card} sa liosta {stack} ar bord {board}",
"You have deleted card {card} in list {stack} on board {board}" : "Tá cárta {card} scriosta agat sa liosta {stack} ar bord {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "scrios {user} cárta {card} sa liosta {stack} ar bord {board}",
"You have renamed the card {before} to {card}" : "D'athainmnigh tú an cárta {before} go {card}",
"{user} has renamed the card {before} to {card}" : "D'athainmnigh {user} an cárta {before} go {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Chuir tú cur síos le cárta {card} sa liosta {stack} ar bord {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "Chuir {user} cur síos le cárta {card} sa liosta {stack} ar bord {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "Tá an cur síos ar chárta {card} sa liosta {stack} ar bord {board} nuashonraithe agat",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "Tá an cur síos ar an gcárta {card} sa liosta {stack} ar bord {board} nuashonraithe ag {user}",
"You have archived card {card} in list {stack} on board {board}" : "Tá cárta {card} sa chartlann agat sa liosta {stack} ar bord {board}",
"{user} has archived card {card} in list {stack} on board {board}" : "Chuir {user} cárta {card} sa liosta {stack} ar bord {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "Tá cárta {card} dí-cartlannaithe agat sa liosta {stack} ar bord {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "Tá {card} neamhchartlannaithe ag {user} sa liosta {stack} ar bord {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Tá an cárta {card} marcáilte agat mar a rinneadh sa liosta {stack} ar bord {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "Mharcáil {user} cárta {card} mar a rinneadh sa liosta {stack} ar bord {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Tá tú tar éis an cárta {card} a mharcáil mar rud cealaithe sa liosta {stack} ar bord {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "Mharcáil {user} an cárta {card} mar rud cealaithe sa liosta {stack} ar bord {board}",
"You have removed the due date of card {card}" : "Bhain tú dáta dlite an chárta {card}",
"{user} has removed the due date of card {card}" : "Bhain {user} dáta dlite an chárta {card}",
"You have set the due date of card {card} to {after}" : "Tá dáta dlite an chárta {card} socraithe agat go dtí {after}",
"{user} has set the due date of card {card} to {after}" : "Tá dáta dlite an chárta {card} socraithe ag {user} go dtí {after}",
"You have updated the due date of card {card} to {after}" : "Tá dáta dlite cárta {card} nuashonraithe agat go dtí {after}",
"{user} has updated the due date of card {card} to {after}" : "Tá dáta dlite an chárta {card} nuashonraithe ag {user} go dtí {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Chuir tú an chlib {label} le cárta {card} sa liosta {stack} ar bord {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "Chuir {user} an chlib {label} le cárta {card} sa liosta {stack} ar bord {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Bhain tú an chlib {label} de chárta {card} sa liosta {stack} ar bord {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "Bhain {user} an chlib {label} de chárta {card} sa liosta {stack} ar bord {board}",
"You have assigned {assigneduser} to card {card} on board {board}" : "Shann tú {assigneduser} do chárta {card} ar bord {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "Tá {user} sannta {assigneduser} do chárta {card} ar bord {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Tá {assigneduser} díshannta agat ó chárta {card} ar bord {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "Tá {user} díshannaithe {user} ó chárta {card} ar bord {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Bhog tú an cárta {card} ón liosta {stackBefore} go {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "Bhog {user} an cárta {card} ón liosta {stackBefore} go {stack}",
"You have added the attachment {attachment} to card {card}" : "Chuir tú an ceangaltán {attachment} le cárta {card}",
"{user} has added the attachment {attachment} to card {card}" : "Chuir {user} an ceangaltán {attachment} le cárta {card}",
"You have updated the attachment {attachment} on card {card}" : "Tá an ceangaltán {attachment} ar chárta {card} nuashonraithe agat",
"{user} has updated the attachment {attachment} on card {card}" : "Tá an ceangaltán {attachment} ar chárta {card} nuashonraithe ag {user}",
"You have deleted the attachment {attachment} from card {card}" : "Scrios tú an ceangaltán {attachment} de chárta {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "Scrios {user} an ceangaltán {attachment} ó chárta {card}",
"You have restored the attachment {attachment} to card {card}" : "Tá an ceangaltán {attachment} aischurtha go cárta {card}",
"{user} has restored the attachment {attachment} to card {card}" : "Tá {user} tar éis an ceangaltán {attachment} a aischur chuig cárta {card}",
"You have commented on card {card}" : "Rinne tú nóta tráchta ar chárta {card}",
"{user} has commented on card {card}" : "Rinne {user} nóta tráchta ar chárta {card}",
"Deck" : "Deic",
"Changes in the <strong>Deck app</strong>" : "Athruithe san aip 1Deck1",
"A <strong>board, list or card</strong> was changed" : "Athraíodh <strong>chlár, liosta nó cárta</strong> ",
"A <strong>comment</strong> was created on a card" : "Cruthaíodh <strong>trácht</strong> ar chárta",
"A <strong>card description</strong> has been changed" : "Athraíodh <strong>cur síos chárta</strong> ",
"Cards due today" : "Cártaí dlite inniu",
"Cards due tomorrow" : "Cártaí dlite amárach",
"Upcoming cards" : "Cártaí atá le teacht",
"Load more" : "Luchtaigh níos mó",
"Personal" : "Pearsanta",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Tá an cárta \"%s\" ar \"%s\" tugtha duit ag %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "Shann {user} an cárta {deck-card} ar {deck-board} duit.",
"The card \"%s\" on \"%s\" has reached its due date." : "Tá an dáta dlite sroichte ag an gcárta \"%s\" ar \"%s\".",
"The card {deck-card} on {deck-board} has reached its due date." : "Tá an dáta dlite sroichte ag an gcárta {deck-card} ar {deck-board}.",
"%s has mentioned you in a comment on \"%s\"." : "Luaigh %s tú i nóta tráchta ar \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "Luaigh {user} thú i nóta tráchta ar {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Tá an clár \"%s\" roinnte leat ag %s.",
"{user} has shared {deck-board} with you." : "Roinn {user} {deck-board} leat.",
"Deck board" : "Bord deic",
"Owned by %1$s" : "Is le %1$s í",
"Deck boards, cards and comments" : "Cláir deic, cártaí agus tuairimí",
"From %1$s, in %2$s/%3$s, owned by %4$s" : "Ó %1$s, i %2$s/%3$s, ar le %4$s é",
"Create a new deck card" : "Cruthaigh cárta deic nua",
"Card comments" : "Tuairimí cártaí",
"%s on %s" : "%s ar %s",
"Deck boards and cards" : "Cláir deic agus cártaí",
"No data was provided to create an attachment." : "Níor soláthraíodh aon sonraí chun ceangaltán a chruthú.",
"Finished" : "Críochnaithe",
"To review" : "Chun athbhreithniú a dhéanamh",
"Action needed" : "Gníomh de dhíth",
"Later" : "Níos déanaí",
"copy" : "cóip",
"To do" : "A dhéanamh",
"Doing" : "Ag déanamh",
"Done" : "Déanta",
"Example Task 3" : "Tasc Sampla 3",
"Example Task 2" : "Tasc Sampla 2",
"Example Task 1" : "Tasc Sampla 1",
"The file was uploaded" : "Uaslódáladh an comhad",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Sáraíonn an comhad uaslódáilte an treoir upload_max_filesize i php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Sáraíonn an comhad uaslódáilte an treoir MAX_FILE_SIZE a sonraíodh san fhoirm HTML",
"The file was only partially uploaded" : "Níor uaslódáladh an comhad ach go páirteach",
"No file was uploaded" : "Níor uaslódáladh aon chomhad",
"Missing a temporary folder" : "Fillteán sealadach ar iarraidh",
"Could not write file to disk" : "Níorbh fhéidir an comhad a scríobh ar an diosca",
"A PHP extension stopped the file upload" : "Chuir síneadh PHP stop le huaslódáil an chomhaid",
"No file uploaded or file size exceeds maximum of %s" : "Níl aon chomhad uaslódáilte nó méid comhaid níos mó ná uasmhéid%s",
"This comment has more than %s characters.\nAdded as an attachment to the card with name %s.\nAccessible on URL: %s." : "Tá níos mó ná %s carachtar sa nóta tráchta seo.\nCurtha leis mar cheangaltán leis an gcárta ar a bhfuil an t-ainm %s.\nInrochtana ar URL: %s.",
"Card not found" : "Cárta gan aimsiú",
"Path is already shared with this card" : "Tá an chonair roinnte leis an gcárta seo cheana féin",
"Invalid date, date format must be YYYY-MM-DD" : "Dáta neamhbhailí, caithfidh formáid an dáta a bheith BBBB-MM-DD",
"Personal planning and team project organization" : "Pleanáil phearsanta agus eagrú tionscadail foirne",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Is uirlis eagraíochta stíl kanban é Deck atá dírithe ar phleanáil phearsanta agus eagrú tionscadail d'fhoirne atá comhtháite le Nextcloud.\n\n\n- 📥 Cuir do thascanna le cártaí agus cuir in ord iad\n- 📄 Scríobh síos nótaí breise i Markdown\n- 🔖 Sann lipéid le haghaidh eagrú níos fearr fós\n- 👥 Roinn le d'fhoireann, do chairde nó do theaghlach\n- 📎 Ceangail comhaid agus leabaigh iad i do chur síos Markdown\n- 💬 Déan plé le dfhoireann ag úsáid tuairimí\n- ⚡ Coinnigh súil ar athruithe sa sruth gníomhaíochta\n- 🚀 Eagraigh do thionscadal",
"Card details" : "Sonraí cártaí",
"Add board" : "Cuir bord leis",
"Select the board to link to a project" : "Roghnaigh an clár chun nasc a dhéanamh le tionscadal",
"Search by board title" : "Cuardaigh de réir teideal an bhoird",
"Select board" : "Roghnaigh bord",
"Move card to another board" : "Bog cárta go bord eile",
"Select a board" : "Roghnaigh bord",
"No lists available" : "Níl aon liostaí ar fáil",
"Select a list" : "Roghnaigh liosta",
"Move card" : "Bog cárta",
"Cancel" : "Cealaigh",
"Select a card" : "Roghnaigh cárta",
"Select the card to link to a project" : "Roghnaigh an cárta chun nascadh le tionscadal",
"Link to card" : "Nasc le cárta",
"File already exists" : "Tá an comhad ann cheana féin",
"A file with the name {filename} already exists." : "Tá comhad leis an ainm {filename} ann cheana féin.",
"Do you want to overwrite it?" : "Ar mhaith leat é a fhorscríobh?",
"Overwrite file" : "Forscríobh comhad",
"Keep existing file" : "Coinnigh an comhad atá ann cheana féin",
"This board is read only" : "Tá an bord seo léite amháin",
"Drop your files to upload" : "Scaoil do chuid comhad le huaslódáil",
"Add card" : "Cuir cárta leis",
"Archived cards" : "Cártaí cartlainne",
"Add list" : "Cuir liosta leis",
"List name" : "Ainm an liosta",
"Active filters" : "Scagairí gníomhacha",
"Apply filter" : "Cuir scagaire i bhfeidhm",
"Filter by tag" : "Scag le clib",
"Filter by assigned user" : "Scag de réir úsáideora sannta",
"Unassigned" : "Neamhshannta",
"Filter by status" : "Scag de réir stádais",
"Open and completed" : "Oscailte agus críochnaithe",
"Open" : "Oscail",
"Completed" : "Críochnaithe",
"Filter by due date" : "Scag faoin dáta dlite",
"Overdue" : "Thar téarma",
"Next 24 hours" : "24 uair an chloig eile",
"Next 7 days" : "7 lá ina dhiaidh sin",
"Next 30 days" : "30 lá eile",
"No due date" : "Gan dáta dlite",
"Clear filter" : "Glan an scagaire",
"View Modes" : "Modhanna Amharc",
"Toggle View Modes" : "Scoránaigh Modhanna Amharc",
"Hide archived cards" : "Folaigh cártaí cartlainne",
"Show archived cards" : "Taispeáin cártaí cartlainne",
"Toggle compact mode" : "Scoránaigh mód dlúth",
"Hide card cover images" : "Folaigh íomhánna clúdaigh cártaí",
"Show card cover images" : "Taispeáin íomhánna clúdaigh cártaí",
"Open details" : "Sonraí oscailte",
"Details" : "Sonraí",
"Currently present people" : "Daoine i láthair faoi láthair",
"Loading board" : "Bord á lódáil",
"Board not found" : "Bord gan aimsiú",
"Create a new list to add cards to this board" : "Cruthaigh liosta nua chun cártaí a chur leis an gclár seo",
"Sharing" : "Roinnt",
"Tags" : "Clibeanna",
"Deleted items" : "Míreanna scriosta",
"Activity" : "Gníomhaíocht",
"Deleted lists" : "Liostaí scriosta",
"Undo" : "Cealaigh",
"Deleted cards" : "Cártaí scriosta",
"Share board with a user, group or team …" : "Roinn an clár le húsáideoir, grúpa nó foireann…",
"Searching for users, groups and teams …" : "Ag cuardach úsáideoirí, grúpaí agus foirne…",
"No participants found" : "Níor aimsíodh rannpháirtithe ar bith",
"Board owner" : "Úinéir boird",
"(Group)" : "(Grúpa)",
"(Team)" : "(Foireann)",
"Can edit" : "Is féidir eagarthóireacht a dhéanamh",
"Can share" : "Is féidir a roinnt",
"Can manage" : "Is féidir a bhainistiú",
"Owner" : "Úinéir",
"Delete" : "Scrios",
"Failed to create share with {displayName}" : "Theip ar chomhroinnt le {displayName} a chruthú",
"Are you sure you want to transfer the board {title} to {user}?" : "An bhfuil tú cinnte gur mhaith leat an clár {title} a aistriú go {user}?",
"Transfer the board." : "Aistrigh an bord.",
"Transfer" : "Aistriú",
"The board has been transferred to {user}" : "Aistríodh an clár go {user}",
"Failed to transfer the board to {user}" : "Theip ar an gclár a aistriú go {user}",
"Edit list title" : "Cuir teideal an liosta in eagar",
"Archive all cards" : "Cartlann na cártaí go léir",
"Unarchive all cards" : "Díchairtigh na cártaí go léir",
"Delete list" : "Scrios an liosta",
"Archive all cards in this list" : "Cuir gach cárta sa liosta seo i gcartlann",
"Unarchive all cards in this list" : "Déan na cártaí go léir sa liosta seo a dhíchartlannú",
"Add a new card" : "Cuir cárta nua leis",
"Card name" : "Ainm cárta",
"List deleted" : "Scriosadh an liosta",
"Edit" : "Cuir in eagar",
"Add a new tag" : "Cuir clib nua leis",
"title and color value must be provided" : "ní mór teideal agus luach datha a sholáthar",
"Board name" : "Ainm an bhoird",
"Members" : "Baill",
"Assign to users/groups/team" : "Sann d'úsáideoirí/grúpaí/foireann",
"Assign a user to this card…" : "Sann úsáideoir don chárta seo…",
"Select a user to assign to this card…" : "Roghnaigh úsáideoir le sannadh don chárta seo…",
"Upload new files" : "Uaslódáil comhaid nua",
"Share from Files" : "Comhroinn ó Chomhaid",
"Pending share" : "Ar feitheamh sciar",
"Add this attachment" : "Cuir an ceangaltán seo leis",
"Show in Files" : "Taispeáin i gComhaid",
"Download" : "Íoslódáil",
"Remove attachment" : "Bain ceangaltán",
"Delete Attachment" : "Scrios Ceangaltán",
"Restore Attachment" : "Athchóirigh Ceangaltán",
"File to share" : "Comhad le roinnt",
"Invalid path selected" : "Conair neamhbhailí roghnaithe",
"Open in sidebar view" : "Oscail san amharc barra taoibh",
"Open in bigger view" : "Oscail i radharc níos mó",
"Attachments" : "Ceangaltáin",
"Comments" : "Tuairimí",
"Modified" : "Athraithe",
"Created" : "Cruthaithe",
"The title cannot be empty." : "Ní féidir leis an teideal a bheith folamh.",
"No comments yet. Begin the discussion!" : "Níl trácht ar bith fós. Cuir tús leis an bplé!",
"Failed to load comments" : "Theip ar lódáil nótaí",
"Save" : "Sábháil",
"The comment cannot be empty." : "Ní féidir leis an nóta tráchta a bheith folamh.",
"The comment cannot be longer than 1000 characters." : "Ní féidir leis an nóta tráchta a bheith níos faide ná 1000 carachtar.",
"In reply to" : "Mar fhreagra ar",
"Cancel reply" : "Cealaigh freagra",
"Reply" : "Freagra",
"Update" : "Nuashonrú",
"Created:" : "Cruthaithe:",
"Description" : "Cur síos",
"(Unsaved)" : "(Gan sábháil)",
"(Saving…)" : "(Shábháil…)",
"Formatting help" : "Ionsáigh ó Chomhaid",
"Edit description" : "Cuir cur síos in eagar",
"View description" : "Féach ar an gcur síos",
"Add Attachment" : "Cuir Ceangaltán leis",
"Write a description …" : "Scríobh cur síos…",
"Choose attachment" : "Roghnaigh ceangaltán",
"Assign a due date to this card…" : "Sann dáta dlite don chárta seo…",
"Set a due date" : "Socraigh dáta dlite",
"Add due date" : "Cuir dáta dlite leis",
"Choose a date" : "Roghnaigh dáta",
"Remove due date" : "Bain an dáta dlite",
"Mark as done" : "Marcáil mar a rinneadh",
"Due at:" : "Dlite ag:",
"Not done" : "Ní dhearna",
"Unarchive card" : "Cárta unarchive",
"Archive card" : "Cárta cartlainne",
"Select Date" : "Roghnaigh Dáta",
"Set due date for later today" : "Socraigh dáta dlite níos déanaí inniu",
"Set due date for tomorrow" : "Socraigh dáta dlite don lá amárach",
"Set due date for this weekend" : "Socraigh dáta dlite don deireadh seachtaine seo",
"Set due date for next week" : "Socraigh dáta dlite don tseachtain seo chugainn",
"Assign a tag to this card…" : "Sann clib don chárta seo…",
"Select or create a tag…" : "Roghnaigh nó cruthaigh clib…",
"Create a new tag:" : "Cruthaigh clib nua:",
"(group)" : "(grúpa)",
"Next week {timeLocale}" : "An tseachtain seo chugainn {timeLocale}",
"Todo items" : "Míreanna le déanamh",
"{count} comments, {unread} unread" : "{count} nóta tráchta, {unread} neamhléite",
"Edit card title" : "Cuir teideal an chárta in eagar",
"Assign to me" : "Sann dom",
"Unassign myself" : "Díshannadh mé féin",
"Mark as not done" : "Marcáil mar nach bhfuil déanta",
"Delete card" : "Scrios cárta",
"Card deleted" : "Cárta scriosta",
"seconds ago" : "soicind ó shin",
"Keyboard shortcuts" : "Aicearraí méarchláir",
"Boost your productivity using Deck with keyboard shortcuts." : "Cuir le do tháirgiúlacht ag baint úsáide as Deic le aicearraí méarchláir.",
"Board actions" : "Gníomhartha an Bhoird",
"Keyboard shortcut" : "Aicearra méarchláir",
"Action" : "Gníomh",
"Shift" : "Shift",
"Scroll" : "Scrollaigh",
"Scroll sideways" : "Scrollaigh taobh",
"Navigate between cards" : "Déan nascleanúint idir cártaí",
"Esc" : "Esc",
"Close card details" : "Dún sonraí an chárta",
"Ctrl" : "Ctrl",
"Search" : "Cuardach",
"Show card filters" : "Taispeáin scagairí cártaí",
"Clear card filters" : "Glan na scagairí cárta",
"Show help dialog" : "Taispeáin dialóg cabhrach",
"Card actions" : "Gníomhartha cártaí",
"The following actions can be triggered on the currently highlighted card" : "Is féidir na gníomhartha seo a leanas a chur i ngníomh ar an gcárta aibhsithe faoi láthair",
"Enter" : "Cuir isteach",
"Space" : "Spás",
"Open card details" : "Oscail sonraí cárta",
"Edit the card title" : "Cuir teideal an chárta in eagar",
"Assign yourself to the current card" : "Sann tú féin don chárta reatha",
"Archive/unarchive the current card" : "Cuir an cárta reatha i gcartlann/dí-cartlann",
"Mark card as completed/not completed" : "Marcáil an cárta mar chríochnaithe/gan chríochnú",
"Open card menu" : "Oscail roghchlár cártaí",
"All boards" : "Gach boird",
"Archived boards" : "Boird chartlainne",
"Shared with you" : "Roinnte leat",
"Deck settings" : "Socruithe deic",
"Use bigger card view" : "Úsáid radharc cárta níos mó",
"Show card ID badge" : "Taispeáin suaitheantas aitheantais an chárta",
"Show boards in calendar/tasks" : "Taispeáin cláir san fhéilire/tascanna",
"Limit board creation to some groups" : "Teorainn a chur le cruthú cláir do roinnt grúpaí",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Ní bheidh úsáideoirí taobh amuigh de na grúpaí sin in ann a gcuid boird féin a chruthú, ach beidh siad fós in ann oibriú ar bhoird atá roinnte leo.",
"Cancel edit" : "Cealaigh eagarthóireacht",
"Save board" : "Sábháil bord",
"Board details" : "Sonraí an Bhoird",
"Edit board" : "Cuir bord in eagar",
"Clone board" : "Clár clón",
"Unarchive board" : "Bord gan chartlann",
"Archive board" : "Bord cartlainne",
"Export board" : "Bord easpórtála",
"Turn on due date reminders" : "Cuir meabhrúcháin dáta dlite ar siúl",
"Turn off due date reminders" : "Múch meabhrúcháin dáta dlite",
"Due date reminders" : "Meabhrúcháin dáta dlite",
"All cards" : "Gach cártaí",
"Assigned cards" : "Cártaí sannta",
"No notifications" : "Gan fógraí",
"Delete board" : "Scrios an bord",
"Board {0} deleted" : "Scriosadh an bord {0}",
"Only assigned cards" : "Cártaí sannta amháin",
"No reminder" : "Gan meabhrúchán",
"An error occurred" : "Tharla earráid",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "An bhfuil tú cinnte gur mhaith leat an clár {title} a scriosadh? Scriosfaidh sé seo sonraí uile an bhoird seo lena n-áirítear cártaí cartlainne.",
"Delete the board?" : "An bhfuil fonn ort an clár a scriosadh?",
"Loading filtered view" : "Amharc scagtha á lódáil",
"Today" : "Inniu",
"Tomorrow" : "Amárach",
"No due" : "Níl dlite",
"Search for {searchQuery} in all boards" : "Cuardaigh {searchQuery} i ngach clár",
"No results found" : "Níor aimsíodh aon torthaí",
"Deck board {name}\n* Last modified on {lastMod}" : "Bord deic {name}\n* Athraithe go deireanach ar {lastMod}",
"{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Cliceáil chun cur síos a leathnú",
"* Created on {created}\n* Last modified on {lastMod}\n* {nbAttachments} attachments\n* {nbComments} comments" : "* Cruthaithe ar {created}\n* Athraithe go deireanach ar {lastMod}\n* {nbAttachments} ceangaltán\n* {nbComments} nóta tráchta",
"{nbCards} cards" : "cártaí {nbCards}",
"Click to expand comment" : "Cliceáil chun trácht a leathnú",
"Create a new card" : "Cruthaigh cárta nua",
"Card title" : "Teideal an chárta",
"Create card" : "Cruthaigh cárta",
"Creating the new card …" : "Cárta nua á chruthú…",
"Card \"{card}\" was added to \"{board}\"" : "Cuireadh cárta \"{card}\" le \"{board}\"",
"Open card" : "Cárta oscailte",
"Close" : "Dún",
"No upcoming cards" : "Uimh cártaí le teacht",
"upcoming cards today" : "cártaí atá le teacht inniu",
"upcoming cards tomorrow" : "cártaí atá le teacht amárach",
"upcoming cards" : "cártaí atá le teacht",
"New card" : "Cárta nua",
"Due on {date}" : "Dlite ar {date}",
"This weekend {timeLocale}" : "An deireadh seachtaine seo - {timeLocale}",
"Tomorrow {timeLocale}" : "Amárach - {timeLocale}",
"Later today {timeLocale}" : "Níos déanaí inniu - {timeLocale}",
"Link to a board" : "Nasc le bord",
"Link to a card" : "Nasc le cárta",
"Create a card" : "Cruthaigh cárta",
"Message from {author} in {conversationName}" : "Teachtaireacht ó {author} in {conversationName}",
"Something went wrong" : "Chuaigh rud eigin mícheart",
"Failed to upload {name}" : "Theip ar uaslódáil {name}",
"Maximum file size of {size} exceeded" : "Sáraíodh uasmhéid comhaid de {size}",
"Error creating the share" : "Earráid agus an sciar á cruthú",
"Share with a Deck card" : "Comhroinn le cárta Deic",
"Share {file} with a Deck card" : "Roinn {file} le cárta Deic",
"Share" : "Comhroinn",
"Searching for users, groups and circles …" : "Ag cuardach úsáideoirí, grúpaí agus ciorcail…",
"(Circle)" : "(Ciorcal)",
"Assign to users/groups/circles" : "Sann d'úsáideoirí/grúpaí/ciorcail",
"Filter by completed" : "Scag de réir críochnaithe"
},"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"
}

View File

@@ -43,8 +43,8 @@ OC.L10N.register(
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} marcou a tarxeta {card} como sen facer na lista {stack} no taboleiro {board}", "{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} marcou a tarxeta {card} como sen facer na lista {stack} no taboleiro {board}",
"You have removed the due date of card {card}" : "Vde. retirou a caducidade da tarxeta {card}", "You have removed the due date of card {card}" : "Vde. retirou a caducidade da tarxeta {card}",
"{user} has removed the due date of card {card}" : "{user} retirou a caducidade da tarxeta {card}", "{user} has removed the due date of card {card}" : "{user} retirou a caducidade da tarxeta {card}",
"You have set the due date of card {card} to {after}" : "Vde. definiu a caducidade da tarxeta {card} a {after}", "You have set the due date of card {card} to {after}" : "Vde. estabeleceu a caducidade da tarxeta {card} a {after}",
"{user} has set the due date of card {card} to {after}" : "{user} definiu a caducidade da tarxeta {card} a {after}", "{user} has set the due date of card {card} to {after}" : "{user} estabeleceu a caducidade da tarxeta {card} a {after}",
"You have updated the due date of card {card} to {after}" : "Vde. actualizou a caducidade da tarxeta {card} a {after}", "You have updated the due date of card {card} to {after}" : "Vde. actualizou a caducidade da tarxeta {card} a {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} actualizou a caducidade da tarxeta {card} a {after}", "{user} has updated the due date of card {card} to {after}" : "{user} actualizou a caducidade da tarxeta {card} a {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Vde. engadiu a etiqueta {label} á tarxeta {card} na lista {stack} no taboleiro {board}", "You have added the tag {label} to card {card} in list {stack} on board {board}" : "Vde. engadiu a etiqueta {label} á tarxeta {card} na lista {stack} no taboleiro {board}",
@@ -55,8 +55,8 @@ OC.L10N.register(
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asignou a {assigneduser} á tarxeta {card} no taboleiro {board}", "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asignou a {assigneduser} á tarxeta {card} no taboleiro {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Vde. desasignou a {assigneduser} da tarxeta {card} no taboleiro {board}", "You have unassigned {assigneduser} from card {card} on board {board}" : "Vde. desasignou a {assigneduser} da tarxeta {card} no taboleiro {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} desasignou a {assigneduser} da tarxeta {card} no taboleiro {board}", "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} desasignou a {assigneduser} da tarxeta {card} no taboleiro {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Vde. moveu a tarxeta {card} desde a lista {stackBefore} cara a lista {stack}", "You have moved the card {card} from list {stackBefore} to {stack}" : "Vde. moveu a tarxeta {card} dende a lista {stackBefore} cara a lista {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} moveu a tarxeta {card} desde a lista {stackBefore} cara a lista {stack}", "{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} moveu a tarxeta {card} dende a lista {stackBefore} cara a lista {stack}",
"You have added the attachment {attachment} to card {card}" : "Vde. engadiu o anexo {attachment} na tarxeta {card}", "You have added the attachment {attachment} to card {card}" : "Vde. engadiu o anexo {attachment} na tarxeta {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}",
"You have updated the attachment {attachment} on card {card}" : "Vde. actualizou o anexo {attachment} na tarxeta {card}", "You have updated the attachment {attachment} on card {card}" : "Vde. actualizou o anexo {attachment} na tarxeta {card}",
@@ -117,10 +117,9 @@ OC.L10N.register(
"This comment has more than %s characters.\nAdded as an attachment to the card with name %s.\nAccessible on URL: %s." : "Este comentario ten máis de %s caracteres.\nEngadido como anexo á tarxeta co nome %s.\nAccesíbel no URL: %s.", "This comment has more than %s characters.\nAdded as an attachment to the card with name %s.\nAccessible on URL: %s." : "Este comentario ten máis de %s caracteres.\nEngadido como anexo á tarxeta co nome %s.\nAccesíbel no URL: %s.",
"Card not found" : "Non se atopou a tarxeta", "Card not found" : "Non se atopou a tarxeta",
"Path is already shared with this card" : "A ruta xa está compartida con esta tarxeta", "Path is already shared with this card" : "A ruta xa está compartida con esta tarxeta",
"Invalid date, date format must be YYYY-MM-DD" : "Data incorrecta, o formato da data debe ser AAAA-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Data incorrecta, o formato da date debe ser AAAA-MM-DD",
"Personal planning and team project organization" : "Planificación persoal e organización de proxectos de equipo", "Personal planning and team project organization" : "Planificación persoal e organización de proxectos de equipo",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Gabeta é unha ferramenta de organización de estilo kanban dirixida a planificación persoal e organización de proxectos para equipos integrados con Nextcloud. \n\n\n 📥 Engada as súas tarefas ás tarxetas e fagas ordenadas\n 📄 Escriba notas adicionais en Markdown\n 🔖 Asigne etiquetas para unha mellor organización\n 👥 Comparta co seu equipo, amigos ou a súa familia\n 📎 Anexe ficheiros e integreos na súa descrición de Markdown\n 💬 Debata co seu equipo usando os comentarios\n ⚡ Faga un seguimento dos cambios no fluxo de actividade\n 🚀 Teña o seu proxecto organizado", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Gabeta é unha ferramenta de organización de estilo kanban dirixida a planificación persoal e organización de proxectos para equipos integrados con Nextcloud. \n\n\n 📥 Engada as súas tarefas ás tarxetas e fagas ordenadas\n 📄 Escriba notas adicionais en Markdown\n 🔖 Asigne etiquetas para unha mellor organización\n 👥 Comparta co seu equipo, amigos ou a súa familia\n 📎 Anexe ficheiros e integreos na súa descrición de Markdown\n 💬 Debata co seu equipo usando os comentarios\n ⚡ Faga un seguimento dos cambios no fluxo de actividade\n 🚀 Teña o seu proxecto organizado",
"Card details" : "Detalles da tarxeta",
"Add board" : "Engadir taboleiro", "Add board" : "Engadir taboleiro",
"Select the board to link to a project" : "Seleccione o taboleiro para ligar a un proxecto", "Select the board to link to a project" : "Seleccione o taboleiro para ligar a un proxecto",
"Search by board title" : "Buscar polo título do taboleiro", "Search by board title" : "Buscar polo título do taboleiro",
@@ -150,9 +149,7 @@ OC.L10N.register(
"Filter by tag" : "Filtrar pola etiqueta", "Filter by tag" : "Filtrar pola etiqueta",
"Filter by assigned user" : "Filtrar polo usuario asignado", "Filter by assigned user" : "Filtrar polo usuario asignado",
"Unassigned" : "Sen asignar", "Unassigned" : "Sen asignar",
"Filter by status" : "Filtrar polo estado", "Open" : "Abrir",
"Open and completed" : "Aberto ou rematado",
"Open" : "Aberto",
"Completed" : "Completado", "Completed" : "Completado",
"Filter by due date" : "Filtrar pola data de caducidade", "Filter by due date" : "Filtrar pola data de caducidade",
"Overdue" : "Caducado", "Overdue" : "Caducado",
@@ -181,12 +178,9 @@ OC.L10N.register(
"Deleted lists" : "Listas eliminadas", "Deleted lists" : "Listas eliminadas",
"Undo" : "Desfacer", "Undo" : "Desfacer",
"Deleted cards" : "Eliminar tarxetas", "Deleted cards" : "Eliminar tarxetas",
"Share board with a user, group or team …" : "Compartir taboleiro cun usuario, grupo ou equipo…",
"Searching for users, groups and teams …" : "Buscando por usuarios, grupos e equipos…",
"No participants found" : "Non se atoparon participantes", "No participants found" : "Non se atoparon participantes",
"Board owner" : "Propietariio do taboleiro", "Board owner" : "Propietariio do taboleiro",
"(Group)" : "(Grupo)", "(Group)" : "(grupo)",
"(Team)" : "(Equipo)",
"Can edit" : "Pode editar", "Can edit" : "Pode editar",
"Can share" : "Pode compartir", "Can share" : "Pode compartir",
"Can manage" : "Pode xestionar", "Can manage" : "Pode xestionar",
@@ -212,11 +206,9 @@ OC.L10N.register(
"title and color value must be provided" : "debe indicar o título e o valor da cor", "title and color value must be provided" : "debe indicar o título e o valor da cor",
"Board name" : "Nome do taboleiro", "Board name" : "Nome do taboleiro",
"Members" : "Membros", "Members" : "Membros",
"Assign to users/groups/team" : "Asignar a usuarios/grupos/equipos",
"Assign a user to this card…" : "Asignar un usuario a esta tarxeta…", "Assign a user to this card…" : "Asignar un usuario a esta tarxeta…",
"Select a user to assign to this card…" : "Seleccionar un usuario para asignarlle a esta tarxeta…",
"Upload new files" : "Enviar novos ficheiros", "Upload new files" : "Enviar novos ficheiros",
"Share from Files" : "Compartir desde «Ficheiros»", "Share from Files" : "Compartir dende «Ficheiros»",
"Pending share" : "Compartición pendente", "Pending share" : "Compartición pendente",
"Add this attachment" : "Engadir este anexo", "Add this attachment" : "Engadir este anexo",
"Show in Files" : "Amosar en Ficheiros", "Show in Files" : "Amosar en Ficheiros",
@@ -253,13 +245,12 @@ OC.L10N.register(
"Write a description …" : "Escriba unha descrición…", "Write a description …" : "Escriba unha descrición…",
"Choose attachment" : "Escoller o anexo", "Choose attachment" : "Escoller o anexo",
"Assign a due date to this card…" : "Asignar unha data de caducidade a esta tarxeta…", "Assign a due date to this card…" : "Asignar unha data de caducidade a esta tarxeta…",
"Set a due date" : "Definir a data de caducidade", "Set a due date" : "Estabelecer a data de caducidade",
"Add due date" : "Engadir a data de remate", "Add due date" : "Engadir a data de remate",
"Choose a date" : "Escoller a data", "Choose a date" : "Escoller a data",
"Remove due date" : "Retirar a data de caducidade", "Remove due date" : "Retirar a data de caducidade",
"Mark as done" : "Marcar como feito",
"Due at:" : "Rematar o:", "Due at:" : "Rematar o:",
"Not done" : "Sen facer", "Not completed" : "Sen completar",
"Unarchive card" : "Desarquivar a tarxeta", "Unarchive card" : "Desarquivar a tarxeta",
"Archive card" : "Arquivar a tarxeta", "Archive card" : "Arquivar a tarxeta",
"Select Date" : "Seleccione a data", "Select Date" : "Seleccione a data",
@@ -268,21 +259,21 @@ OC.L10N.register(
"Set due date for this weekend" : "Definir a data de remate para esta fin de semana", "Set due date for this weekend" : "Definir a data de remate para esta fin de semana",
"Set due date for next week" : "Definir a data de remate para a semana seguinte", "Set due date for next week" : "Definir a data de remate para a semana seguinte",
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…", "Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Select or create a tag…" : "Seleccionar ou crear unha etiqueta…",
"Create a new tag:" : "Crear unha nova etiqueta:", "Create a new tag:" : "Crear unha nova etiqueta:",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"Next week {timeLocale}" : "Semana seguinte {timeLocale}", "Next week {timeLocale}" : "Semana seguinte {timeLocale}",
"Todo items" : "Elementos pendentes", "Todo items" : "Elementos pendentes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sen ler", "{count} comments, {unread} unread" : "{count} comentarios, {unread} sen ler",
"Edit card title" : "Editar o título da tarxeta", "Edit card title" : "Editar o título da tarxeta",
"Card details" : "Detalles da tarxeta",
"Assign to me" : "Asignarme", "Assign to me" : "Asignarme",
"Unassign myself" : "Desasignarme", "Unassign myself" : "Desasignarme",
"Mark as not done" : "Marcar como sen facer", "Mark as not done" : "Marcar como sen facer",
"Mark as done" : "Marcar como feito",
"Delete card" : "Eliminar tarxeta", "Delete card" : "Eliminar tarxeta",
"Card deleted" : "Tarxeta eliminada", "Card deleted" : "Tarxeta eliminada",
"seconds ago" : "segundos atrás", "seconds ago" : "segundos atrás",
"Keyboard shortcuts" : "Atallos de teclado", "Keyboard shortcuts" : "Atallos de teclado",
"Boost your productivity using Deck with keyboard shortcuts." : "Aumente a súa produtividade empregando Gabeta con atallos de teclado.",
"Board actions" : "Accións de taboleiro", "Board actions" : "Accións de taboleiro",
"Keyboard shortcut" : "Atallo de teclado", "Keyboard shortcut" : "Atallo de teclado",
"Action" : "Acción", "Action" : "Acción",
@@ -316,8 +307,6 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Amosar taboleiros no calendario/tarefas", "Show boards in calendar/tasks" : "Amosar taboleiros no calendario/tarefas",
"Limit board creation to some groups" : "Limitar a creación do taboleiro a algúns grupos", "Limit board creation to some groups" : "Limitar a creación do taboleiro a algúns grupos",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Os usuarios alleos a eses grupos non poderán crear os seus propios taboleiros, mais aínda poderán traballar en taboleiros que se compartiron con eles.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Os usuarios alleos a eses grupos non poderán crear os seus propios taboleiros, mais aínda poderán traballar en taboleiros que se compartiron con eles.",
"Cancel edit" : "Cancelar a edición",
"Save board" : "Gardar o taboleiro",
"Board details" : "Detalles do taboleiro", "Board details" : "Detalles do taboleiro",
"Edit board" : "Editar taboleiro", "Edit board" : "Editar taboleiro",
"Clone board" : "Clonar taboleiro", "Clone board" : "Clonar taboleiro",
@@ -343,6 +332,7 @@ OC.L10N.register(
"No due" : "Sen caducidade", "No due" : "Sen caducidade",
"Search for {searchQuery} in all boards" : "Resultados de busca para {searchQuery} en todos os taboleiros", "Search for {searchQuery} in all boards" : "Resultados de busca para {searchQuery} en todos os taboleiros",
"No results found" : "Non se atoparon resultados", "No results found" : "Non se atoparon resultados",
"This weekend {timeLocale}" : "Esta semana {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Taboleiro da Gabeta {name}\n* Última modificación en {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Taboleiro da Gabeta {name}\n* Última modificación en {lastMod}",
"{stack} in {board}" : "{stack} en {board}", "{stack} in {board}" : "{stack} en {board}",
"Click to expand description" : "Prema para despregar a descrición", "Click to expand description" : "Prema para despregar a descrición",
@@ -362,7 +352,6 @@ OC.L10N.register(
"upcoming cards" : "tarxetas próximas", "upcoming cards" : "tarxetas próximas",
"New card" : "Nova tarxeta", "New card" : "Nova tarxeta",
"Due on {date}" : "Caduca o {date}", "Due on {date}" : "Caduca o {date}",
"This weekend {timeLocale}" : "Esta semana {timeLocale}",
"Tomorrow {timeLocale}" : "Mañá {timeLocale}", "Tomorrow {timeLocale}" : "Mañá {timeLocale}",
"Later today {timeLocale}" : "Hoxe máis tarde {timeLocale}", "Later today {timeLocale}" : "Hoxe máis tarde {timeLocale}",
"Link to a board" : "Ligazón a un taboleiro", "Link to a board" : "Ligazón a un taboleiro",
@@ -376,9 +365,16 @@ OC.L10N.register(
"Share with a Deck card" : "Compartir cunha tarxeta da Gabeta", "Share with a Deck card" : "Compartir cunha tarxeta da Gabeta",
"Share {file} with a Deck card" : "Compartir {file} cunha tarxeta da Gabeta", "Share {file} with a Deck card" : "Compartir {file} cunha tarxeta da Gabeta",
"Share" : "Compartir", "Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Cambiouse a <strong>descripción da tarxeta</strong> dentro da aplicación Gabeta",
"Timeline" : "Cronoloxía",
"Share board with a user, group or circle …" : "Compartir taboleiro cun usuario, grupo ou círculo…",
"Searching for users, groups and circles …" : "Buscando por usuarios, grupos e círculos…", "Searching for users, groups and circles …" : "Buscando por usuarios, grupos e círculos…",
"(Circle)" : "(Círculo)", "(Circle)" : "(Círculo)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos", "Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Filter by completed" : "Filtrar por completado" "Next week" : "Semana seguinte",
"Next month" : "Mes seguinte",
"List is empty" : "A lista está baleira",
"Limit deck usage of groups" : "Limitar o uso da plataforma a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitando a Gabeta bloqueará os usuarios que non formen parte destes grupos, para crear os seus propios taboleiros. Os usuarios aínda así poderán traballar en taboleiros compartidos con eles."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -41,8 +41,8 @@
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} marcou a tarxeta {card} como sen facer na lista {stack} no taboleiro {board}", "{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} marcou a tarxeta {card} como sen facer na lista {stack} no taboleiro {board}",
"You have removed the due date of card {card}" : "Vde. retirou a caducidade da tarxeta {card}", "You have removed the due date of card {card}" : "Vde. retirou a caducidade da tarxeta {card}",
"{user} has removed the due date of card {card}" : "{user} retirou a caducidade da tarxeta {card}", "{user} has removed the due date of card {card}" : "{user} retirou a caducidade da tarxeta {card}",
"You have set the due date of card {card} to {after}" : "Vde. definiu a caducidade da tarxeta {card} a {after}", "You have set the due date of card {card} to {after}" : "Vde. estabeleceu a caducidade da tarxeta {card} a {after}",
"{user} has set the due date of card {card} to {after}" : "{user} definiu a caducidade da tarxeta {card} a {after}", "{user} has set the due date of card {card} to {after}" : "{user} estabeleceu a caducidade da tarxeta {card} a {after}",
"You have updated the due date of card {card} to {after}" : "Vde. actualizou a caducidade da tarxeta {card} a {after}", "You have updated the due date of card {card} to {after}" : "Vde. actualizou a caducidade da tarxeta {card} a {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} actualizou a caducidade da tarxeta {card} a {after}", "{user} has updated the due date of card {card} to {after}" : "{user} actualizou a caducidade da tarxeta {card} a {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Vde. engadiu a etiqueta {label} á tarxeta {card} na lista {stack} no taboleiro {board}", "You have added the tag {label} to card {card} in list {stack} on board {board}" : "Vde. engadiu a etiqueta {label} á tarxeta {card} na lista {stack} no taboleiro {board}",
@@ -53,8 +53,8 @@
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asignou a {assigneduser} á tarxeta {card} no taboleiro {board}", "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asignou a {assigneduser} á tarxeta {card} no taboleiro {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Vde. desasignou a {assigneduser} da tarxeta {card} no taboleiro {board}", "You have unassigned {assigneduser} from card {card} on board {board}" : "Vde. desasignou a {assigneduser} da tarxeta {card} no taboleiro {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} desasignou a {assigneduser} da tarxeta {card} no taboleiro {board}", "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} desasignou a {assigneduser} da tarxeta {card} no taboleiro {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Vde. moveu a tarxeta {card} desde a lista {stackBefore} cara a lista {stack}", "You have moved the card {card} from list {stackBefore} to {stack}" : "Vde. moveu a tarxeta {card} dende a lista {stackBefore} cara a lista {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} moveu a tarxeta {card} desde a lista {stackBefore} cara a lista {stack}", "{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} moveu a tarxeta {card} dende a lista {stackBefore} cara a lista {stack}",
"You have added the attachment {attachment} to card {card}" : "Vde. engadiu o anexo {attachment} na tarxeta {card}", "You have added the attachment {attachment} to card {card}" : "Vde. engadiu o anexo {attachment} na tarxeta {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}", "{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}",
"You have updated the attachment {attachment} on card {card}" : "Vde. actualizou o anexo {attachment} na tarxeta {card}", "You have updated the attachment {attachment} on card {card}" : "Vde. actualizou o anexo {attachment} na tarxeta {card}",
@@ -115,10 +115,9 @@
"This comment has more than %s characters.\nAdded as an attachment to the card with name %s.\nAccessible on URL: %s." : "Este comentario ten máis de %s caracteres.\nEngadido como anexo á tarxeta co nome %s.\nAccesíbel no URL: %s.", "This comment has more than %s characters.\nAdded as an attachment to the card with name %s.\nAccessible on URL: %s." : "Este comentario ten máis de %s caracteres.\nEngadido como anexo á tarxeta co nome %s.\nAccesíbel no URL: %s.",
"Card not found" : "Non se atopou a tarxeta", "Card not found" : "Non se atopou a tarxeta",
"Path is already shared with this card" : "A ruta xa está compartida con esta tarxeta", "Path is already shared with this card" : "A ruta xa está compartida con esta tarxeta",
"Invalid date, date format must be YYYY-MM-DD" : "Data incorrecta, o formato da data debe ser AAAA-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Data incorrecta, o formato da date debe ser AAAA-MM-DD",
"Personal planning and team project organization" : "Planificación persoal e organización de proxectos de equipo", "Personal planning and team project organization" : "Planificación persoal e organización de proxectos de equipo",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Gabeta é unha ferramenta de organización de estilo kanban dirixida a planificación persoal e organización de proxectos para equipos integrados con Nextcloud. \n\n\n 📥 Engada as súas tarefas ás tarxetas e fagas ordenadas\n 📄 Escriba notas adicionais en Markdown\n 🔖 Asigne etiquetas para unha mellor organización\n 👥 Comparta co seu equipo, amigos ou a súa familia\n 📎 Anexe ficheiros e integreos na súa descrición de Markdown\n 💬 Debata co seu equipo usando os comentarios\n ⚡ Faga un seguimento dos cambios no fluxo de actividade\n 🚀 Teña o seu proxecto organizado", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Gabeta é unha ferramenta de organización de estilo kanban dirixida a planificación persoal e organización de proxectos para equipos integrados con Nextcloud. \n\n\n 📥 Engada as súas tarefas ás tarxetas e fagas ordenadas\n 📄 Escriba notas adicionais en Markdown\n 🔖 Asigne etiquetas para unha mellor organización\n 👥 Comparta co seu equipo, amigos ou a súa familia\n 📎 Anexe ficheiros e integreos na súa descrición de Markdown\n 💬 Debata co seu equipo usando os comentarios\n ⚡ Faga un seguimento dos cambios no fluxo de actividade\n 🚀 Teña o seu proxecto organizado",
"Card details" : "Detalles da tarxeta",
"Add board" : "Engadir taboleiro", "Add board" : "Engadir taboleiro",
"Select the board to link to a project" : "Seleccione o taboleiro para ligar a un proxecto", "Select the board to link to a project" : "Seleccione o taboleiro para ligar a un proxecto",
"Search by board title" : "Buscar polo título do taboleiro", "Search by board title" : "Buscar polo título do taboleiro",
@@ -148,9 +147,7 @@
"Filter by tag" : "Filtrar pola etiqueta", "Filter by tag" : "Filtrar pola etiqueta",
"Filter by assigned user" : "Filtrar polo usuario asignado", "Filter by assigned user" : "Filtrar polo usuario asignado",
"Unassigned" : "Sen asignar", "Unassigned" : "Sen asignar",
"Filter by status" : "Filtrar polo estado", "Open" : "Abrir",
"Open and completed" : "Aberto ou rematado",
"Open" : "Aberto",
"Completed" : "Completado", "Completed" : "Completado",
"Filter by due date" : "Filtrar pola data de caducidade", "Filter by due date" : "Filtrar pola data de caducidade",
"Overdue" : "Caducado", "Overdue" : "Caducado",
@@ -179,12 +176,9 @@
"Deleted lists" : "Listas eliminadas", "Deleted lists" : "Listas eliminadas",
"Undo" : "Desfacer", "Undo" : "Desfacer",
"Deleted cards" : "Eliminar tarxetas", "Deleted cards" : "Eliminar tarxetas",
"Share board with a user, group or team …" : "Compartir taboleiro cun usuario, grupo ou equipo…",
"Searching for users, groups and teams …" : "Buscando por usuarios, grupos e equipos…",
"No participants found" : "Non se atoparon participantes", "No participants found" : "Non se atoparon participantes",
"Board owner" : "Propietariio do taboleiro", "Board owner" : "Propietariio do taboleiro",
"(Group)" : "(Grupo)", "(Group)" : "(grupo)",
"(Team)" : "(Equipo)",
"Can edit" : "Pode editar", "Can edit" : "Pode editar",
"Can share" : "Pode compartir", "Can share" : "Pode compartir",
"Can manage" : "Pode xestionar", "Can manage" : "Pode xestionar",
@@ -210,11 +204,9 @@
"title and color value must be provided" : "debe indicar o título e o valor da cor", "title and color value must be provided" : "debe indicar o título e o valor da cor",
"Board name" : "Nome do taboleiro", "Board name" : "Nome do taboleiro",
"Members" : "Membros", "Members" : "Membros",
"Assign to users/groups/team" : "Asignar a usuarios/grupos/equipos",
"Assign a user to this card…" : "Asignar un usuario a esta tarxeta…", "Assign a user to this card…" : "Asignar un usuario a esta tarxeta…",
"Select a user to assign to this card…" : "Seleccionar un usuario para asignarlle a esta tarxeta…",
"Upload new files" : "Enviar novos ficheiros", "Upload new files" : "Enviar novos ficheiros",
"Share from Files" : "Compartir desde «Ficheiros»", "Share from Files" : "Compartir dende «Ficheiros»",
"Pending share" : "Compartición pendente", "Pending share" : "Compartición pendente",
"Add this attachment" : "Engadir este anexo", "Add this attachment" : "Engadir este anexo",
"Show in Files" : "Amosar en Ficheiros", "Show in Files" : "Amosar en Ficheiros",
@@ -251,13 +243,12 @@
"Write a description …" : "Escriba unha descrición…", "Write a description …" : "Escriba unha descrición…",
"Choose attachment" : "Escoller o anexo", "Choose attachment" : "Escoller o anexo",
"Assign a due date to this card…" : "Asignar unha data de caducidade a esta tarxeta…", "Assign a due date to this card…" : "Asignar unha data de caducidade a esta tarxeta…",
"Set a due date" : "Definir a data de caducidade", "Set a due date" : "Estabelecer a data de caducidade",
"Add due date" : "Engadir a data de remate", "Add due date" : "Engadir a data de remate",
"Choose a date" : "Escoller a data", "Choose a date" : "Escoller a data",
"Remove due date" : "Retirar a data de caducidade", "Remove due date" : "Retirar a data de caducidade",
"Mark as done" : "Marcar como feito",
"Due at:" : "Rematar o:", "Due at:" : "Rematar o:",
"Not done" : "Sen facer", "Not completed" : "Sen completar",
"Unarchive card" : "Desarquivar a tarxeta", "Unarchive card" : "Desarquivar a tarxeta",
"Archive card" : "Arquivar a tarxeta", "Archive card" : "Arquivar a tarxeta",
"Select Date" : "Seleccione a data", "Select Date" : "Seleccione a data",
@@ -266,21 +257,21 @@
"Set due date for this weekend" : "Definir a data de remate para esta fin de semana", "Set due date for this weekend" : "Definir a data de remate para esta fin de semana",
"Set due date for next week" : "Definir a data de remate para a semana seguinte", "Set due date for next week" : "Definir a data de remate para a semana seguinte",
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…", "Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Select or create a tag…" : "Seleccionar ou crear unha etiqueta…",
"Create a new tag:" : "Crear unha nova etiqueta:", "Create a new tag:" : "Crear unha nova etiqueta:",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"Next week {timeLocale}" : "Semana seguinte {timeLocale}", "Next week {timeLocale}" : "Semana seguinte {timeLocale}",
"Todo items" : "Elementos pendentes", "Todo items" : "Elementos pendentes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sen ler", "{count} comments, {unread} unread" : "{count} comentarios, {unread} sen ler",
"Edit card title" : "Editar o título da tarxeta", "Edit card title" : "Editar o título da tarxeta",
"Card details" : "Detalles da tarxeta",
"Assign to me" : "Asignarme", "Assign to me" : "Asignarme",
"Unassign myself" : "Desasignarme", "Unassign myself" : "Desasignarme",
"Mark as not done" : "Marcar como sen facer", "Mark as not done" : "Marcar como sen facer",
"Mark as done" : "Marcar como feito",
"Delete card" : "Eliminar tarxeta", "Delete card" : "Eliminar tarxeta",
"Card deleted" : "Tarxeta eliminada", "Card deleted" : "Tarxeta eliminada",
"seconds ago" : "segundos atrás", "seconds ago" : "segundos atrás",
"Keyboard shortcuts" : "Atallos de teclado", "Keyboard shortcuts" : "Atallos de teclado",
"Boost your productivity using Deck with keyboard shortcuts." : "Aumente a súa produtividade empregando Gabeta con atallos de teclado.",
"Board actions" : "Accións de taboleiro", "Board actions" : "Accións de taboleiro",
"Keyboard shortcut" : "Atallo de teclado", "Keyboard shortcut" : "Atallo de teclado",
"Action" : "Acción", "Action" : "Acción",
@@ -314,8 +305,6 @@
"Show boards in calendar/tasks" : "Amosar taboleiros no calendario/tarefas", "Show boards in calendar/tasks" : "Amosar taboleiros no calendario/tarefas",
"Limit board creation to some groups" : "Limitar a creación do taboleiro a algúns grupos", "Limit board creation to some groups" : "Limitar a creación do taboleiro a algúns grupos",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Os usuarios alleos a eses grupos non poderán crear os seus propios taboleiros, mais aínda poderán traballar en taboleiros que se compartiron con eles.", "Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Os usuarios alleos a eses grupos non poderán crear os seus propios taboleiros, mais aínda poderán traballar en taboleiros que se compartiron con eles.",
"Cancel edit" : "Cancelar a edición",
"Save board" : "Gardar o taboleiro",
"Board details" : "Detalles do taboleiro", "Board details" : "Detalles do taboleiro",
"Edit board" : "Editar taboleiro", "Edit board" : "Editar taboleiro",
"Clone board" : "Clonar taboleiro", "Clone board" : "Clonar taboleiro",
@@ -341,6 +330,7 @@
"No due" : "Sen caducidade", "No due" : "Sen caducidade",
"Search for {searchQuery} in all boards" : "Resultados de busca para {searchQuery} en todos os taboleiros", "Search for {searchQuery} in all boards" : "Resultados de busca para {searchQuery} en todos os taboleiros",
"No results found" : "Non se atoparon resultados", "No results found" : "Non se atoparon resultados",
"This weekend {timeLocale}" : "Esta semana {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Taboleiro da Gabeta {name}\n* Última modificación en {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "Taboleiro da Gabeta {name}\n* Última modificación en {lastMod}",
"{stack} in {board}" : "{stack} en {board}", "{stack} in {board}" : "{stack} en {board}",
"Click to expand description" : "Prema para despregar a descrición", "Click to expand description" : "Prema para despregar a descrición",
@@ -360,7 +350,6 @@
"upcoming cards" : "tarxetas próximas", "upcoming cards" : "tarxetas próximas",
"New card" : "Nova tarxeta", "New card" : "Nova tarxeta",
"Due on {date}" : "Caduca o {date}", "Due on {date}" : "Caduca o {date}",
"This weekend {timeLocale}" : "Esta semana {timeLocale}",
"Tomorrow {timeLocale}" : "Mañá {timeLocale}", "Tomorrow {timeLocale}" : "Mañá {timeLocale}",
"Later today {timeLocale}" : "Hoxe máis tarde {timeLocale}", "Later today {timeLocale}" : "Hoxe máis tarde {timeLocale}",
"Link to a board" : "Ligazón a un taboleiro", "Link to a board" : "Ligazón a un taboleiro",
@@ -374,9 +363,16 @@
"Share with a Deck card" : "Compartir cunha tarxeta da Gabeta", "Share with a Deck card" : "Compartir cunha tarxeta da Gabeta",
"Share {file} with a Deck card" : "Compartir {file} cunha tarxeta da Gabeta", "Share {file} with a Deck card" : "Compartir {file} cunha tarxeta da Gabeta",
"Share" : "Compartir", "Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Cambiouse a <strong>descripción da tarxeta</strong> dentro da aplicación Gabeta",
"Timeline" : "Cronoloxía",
"Share board with a user, group or circle …" : "Compartir taboleiro cun usuario, grupo ou círculo…",
"Searching for users, groups and circles …" : "Buscando por usuarios, grupos e círculos…", "Searching for users, groups and circles …" : "Buscando por usuarios, grupos e círculos…",
"(Circle)" : "(Círculo)", "(Circle)" : "(Círculo)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos", "Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Filter by completed" : "Filtrar por completado" "Next week" : "Semana seguinte",
"Next month" : "Mes seguinte",
"List is empty" : "A lista está baleira",
"Limit deck usage of groups" : "Limitar o uso da plataforma a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitando a Gabeta bloqueará os usuarios que non formen parte destes grupos, para crear os seus propios taboleiros. Os usuarios aínda así poderán traballar en taboleiros compartidos con eles."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -102,7 +102,6 @@ OC.L10N.register(
"Path is already shared with this card" : "הנתיב כבר משותף עם הכרטיס הזה", "Path is already shared with this card" : "הנתיב כבר משותף עם הכרטיס הזה",
"Invalid date, date format must be YYYY-MM-DD" : "תאריך שגוי, תבנית התאריך חייבת להיות YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "תאריך שגוי, תבנית התאריך חייבת להיות YYYY-MM-DD",
"Personal planning and team project organization" : "ארגון אישי וקבוצתי של מיזמים", "Personal planning and team project organization" : "ארגון אישי וקבוצתי של מיזמים",
"Card details" : "פרטי הכרטיס",
"Add board" : "הוספת לוח", "Add board" : "הוספת לוח",
"Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם", "Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם",
"Search by board title" : "חיפוש לפי כותרת לו", "Search by board title" : "חיפוש לפי כותרת לו",
@@ -217,6 +216,7 @@ OC.L10N.register(
"Select Date" : "בחירת תאריך", "Select Date" : "בחירת תאריך",
"Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…", "Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…",
"(group)" : "(קבוצה)", "(group)" : "(קבוצה)",
"Card details" : "פרטי הכרטיס",
"Assign to me" : "הקצאה אלי", "Assign to me" : "הקצאה אלי",
"Unassign myself" : "לבטל את הקצאת עצמי", "Unassign myself" : "לבטל את הקצאת עצמי",
"Delete card" : "מחיקת כרטיס לארכיון", "Delete card" : "מחיקת כרטיס לארכיון",
@@ -232,7 +232,6 @@ OC.L10N.register(
"Shared with you" : "משותף אתך", "Shared with you" : "משותף אתך",
"Use bigger card view" : "להשתמש בתצוגת כרטיסים גדולה יותר", "Use bigger card view" : "להשתמש בתצוגת כרטיסים גדולה יותר",
"Show boards in calendar/tasks" : "הצג הלוחות בלוח השנה/המשימות", "Show boards in calendar/tasks" : "הצג הלוחות בלוח השנה/המשימות",
"Cancel edit" : "בטל עריכה",
"Board details" : "פרטי לוח", "Board details" : "פרטי לוח",
"Edit board" : "עריכת לוח", "Edit board" : "עריכת לוח",
"Clone board" : "שכפל את הלוח", "Clone board" : "שכפל את הלוח",
@@ -268,8 +267,16 @@ OC.L10N.register(
"Share with a Deck card" : "שיתוף עם כרטיס חפיסה", "Share with a Deck card" : "שיתוף עם כרטיס חפיסה",
"Share {file} with a Deck card" : "שיתוף {file} עם כרטיס חפיסה", "Share {file} with a Deck card" : "שיתוף {file} עם כרטיס חפיסה",
"Share" : "שיתוף", "Share" : "שיתוף",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>תיאור של כרטיס</strong> בתוך יישומון החבילה נערך",
"Timeline" : "ציר זמן",
"Share board with a user, group or circle …" : "שיתוף לוח עם משתמש, קבוצה או מעגל…",
"Searching for users, groups and circles …" : "מחפש משתמשים, קבוצות, ומעגלים ...", "Searching for users, groups and circles …" : "מחפש משתמשים, קבוצות, ומעגלים ...",
"(Circle)" : "(מעגל)", "(Circle)" : "(מעגל)",
"Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים" "Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים",
"Next week" : "השבוע הבא",
"Next month" : "החודש הבא",
"List is empty" : "הרשימה ריקה",
"Limit deck usage of groups" : "הגבלת השימוש בחבילה לקבוצות",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם."
}, },
"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"); "nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;");

View File

@@ -100,7 +100,6 @@
"Path is already shared with this card" : "הנתיב כבר משותף עם הכרטיס הזה", "Path is already shared with this card" : "הנתיב כבר משותף עם הכרטיס הזה",
"Invalid date, date format must be YYYY-MM-DD" : "תאריך שגוי, תבנית התאריך חייבת להיות YYYY-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "תאריך שגוי, תבנית התאריך חייבת להיות YYYY-MM-DD",
"Personal planning and team project organization" : "ארגון אישי וקבוצתי של מיזמים", "Personal planning and team project organization" : "ארגון אישי וקבוצתי של מיזמים",
"Card details" : "פרטי הכרטיס",
"Add board" : "הוספת לוח", "Add board" : "הוספת לוח",
"Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם", "Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם",
"Search by board title" : "חיפוש לפי כותרת לו", "Search by board title" : "חיפוש לפי כותרת לו",
@@ -215,6 +214,7 @@
"Select Date" : "בחירת תאריך", "Select Date" : "בחירת תאריך",
"Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…", "Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…",
"(group)" : "(קבוצה)", "(group)" : "(קבוצה)",
"Card details" : "פרטי הכרטיס",
"Assign to me" : "הקצאה אלי", "Assign to me" : "הקצאה אלי",
"Unassign myself" : "לבטל את הקצאת עצמי", "Unassign myself" : "לבטל את הקצאת עצמי",
"Delete card" : "מחיקת כרטיס לארכיון", "Delete card" : "מחיקת כרטיס לארכיון",
@@ -230,7 +230,6 @@
"Shared with you" : "משותף אתך", "Shared with you" : "משותף אתך",
"Use bigger card view" : "להשתמש בתצוגת כרטיסים גדולה יותר", "Use bigger card view" : "להשתמש בתצוגת כרטיסים גדולה יותר",
"Show boards in calendar/tasks" : "הצג הלוחות בלוח השנה/המשימות", "Show boards in calendar/tasks" : "הצג הלוחות בלוח השנה/המשימות",
"Cancel edit" : "בטל עריכה",
"Board details" : "פרטי לוח", "Board details" : "פרטי לוח",
"Edit board" : "עריכת לוח", "Edit board" : "עריכת לוח",
"Clone board" : "שכפל את הלוח", "Clone board" : "שכפל את הלוח",
@@ -266,8 +265,16 @@
"Share with a Deck card" : "שיתוף עם כרטיס חפיסה", "Share with a Deck card" : "שיתוף עם כרטיס חפיסה",
"Share {file} with a Deck card" : "שיתוף {file} עם כרטיס חפיסה", "Share {file} with a Deck card" : "שיתוף {file} עם כרטיס חפיסה",
"Share" : "שיתוף", "Share" : "שיתוף",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>תיאור של כרטיס</strong> בתוך יישומון החבילה נערך",
"Timeline" : "ציר זמן",
"Share board with a user, group or circle …" : "שיתוף לוח עם משתמש, קבוצה או מעגל…",
"Searching for users, groups and circles …" : "מחפש משתמשים, קבוצות, ומעגלים ...", "Searching for users, groups and circles …" : "מחפש משתמשים, קבוצות, ומעגלים ...",
"(Circle)" : "(מעגל)", "(Circle)" : "(מעגל)",
"Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים" "Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים",
"Next week" : "השבוע הבא",
"Next month" : "החודש הבא",
"List is empty" : "הרשימה ריקה",
"Limit deck usage of groups" : "הגבלת השימוש בחבילה לקבוצות",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם."
},"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;" },"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"
} }

View File

@@ -105,7 +105,6 @@ OC.L10N.register(
"Path is already shared with this card" : "Put je već podijeljen s ovom karticom", "Path is already shared with this card" : "Put je već podijeljen s ovom karticom",
"Invalid date, date format must be YYYY-MM-DD" : "Nevažeći datum, oblik datuma mora biti GGGG-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Nevažeći datum, oblik datuma mora biti GGGG-MM-DD",
"Personal planning and team project organization" : "Osobno planiranje i organizacija timskih projekata", "Personal planning and team project organization" : "Osobno planiranje i organizacija timskih projekata",
"Card details" : "Pojedinosti o kartici",
"Add board" : "Dodaj ploču", "Add board" : "Dodaj ploču",
"Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom", "Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom",
"Search by board title" : "Traži po naslovu ploče", "Search by board title" : "Traži po naslovu ploče",
@@ -217,15 +216,16 @@ OC.L10N.register(
"Choose attachment" : "Odaberi privitak", "Choose attachment" : "Odaberi privitak",
"Set a due date" : "Postavi datum dospijeća", "Set a due date" : "Postavi datum dospijeća",
"Remove due date" : "Ukloni datum dospijeća", "Remove due date" : "Ukloni datum dospijeća",
"Mark as done" : "Označi kao završeno",
"Unarchive card" : "Dearhiviraj karticu", "Unarchive card" : "Dearhiviraj karticu",
"Archive card" : "Arhiviraj karticu", "Archive card" : "Arhiviraj karticu",
"Select Date" : "Odaberi datum", "Select Date" : "Odaberi datum",
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...", "Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
"(group)" : "(grupa)", "(group)" : "(grupa)",
"{count} comments, {unread} unread" : "{count} komentara, {unread} nepročitanih", "{count} comments, {unread} unread" : "{count} komentara, {unread} nepročitanih",
"Card details" : "Pojedinosti o kartici",
"Assign to me" : "Dodijeli meni", "Assign to me" : "Dodijeli meni",
"Unassign myself" : "Ukloni sebe", "Unassign myself" : "Ukloni sebe",
"Mark as done" : "Označi kao završeno",
"Delete card" : "Izbriši karticu", "Delete card" : "Izbriši karticu",
"Card deleted" : "Kartica je izbrisana", "Card deleted" : "Kartica je izbrisana",
"seconds ago" : "prije nekoliko sekundi", "seconds ago" : "prije nekoliko sekundi",
@@ -239,7 +239,6 @@ OC.L10N.register(
"Shared with you" : "Podijeljeno s vama", "Shared with you" : "Podijeljeno s vama",
"Use bigger card view" : "Prikaži veće kartice", "Use bigger card view" : "Prikaži veće kartice",
"Show boards in calendar/tasks" : "Prikaži ploče u kalendaru/zadacima", "Show boards in calendar/tasks" : "Prikaži ploče u kalendaru/zadacima",
"Cancel edit" : "Otkaži uređivanje",
"Board details" : "Pojedinosti o ploči", "Board details" : "Pojedinosti o ploči",
"Edit board" : "Uredi ploču", "Edit board" : "Uredi ploču",
"Clone board" : "Kloniraj ploču", "Clone board" : "Kloniraj ploču",
@@ -284,8 +283,16 @@ OC.L10N.register(
"Share with a Deck card" : "Dijeli s Deck karticom", "Share with a Deck card" : "Dijeli s Deck karticom",
"Share {file} with a Deck card" : "Dijeli {file} s Deck karticom", "Share {file} with a Deck card" : "Dijeli {file} s Deck karticom",
"Share" : "Dijeli", "Share" : "Dijeli",
"A <strong>card description</strong> inside the Deck app has been changed" : "Promijenjen je <strong>opis kartice</strong> u aplikaciji Deck",
"Timeline" : "Vremenska crta",
"Share board with a user, group or circle …" : "Dijelite ploču s korisnikom, grupom ili krugom...",
"Searching for users, groups and circles …" : "Traženje korisnika, grupa i krugova...", "Searching for users, groups and circles …" : "Traženje korisnika, grupa i krugova...",
"(Circle)" : "(Krug)", "(Circle)" : "(Krug)",
"Assign to users/groups/circles" : "Dodijeli korisnicima/grupama/krugovima" "Assign to users/groups/circles" : "Dodijeli korisnicima/grupama/krugovima",
"Next week" : "Sljedeći tjedan",
"Next month" : "Sljedeći mjesec",
"List is empty" : "Popis je prazan",
"Limit deck usage of groups" : "Ograniči uporabu decka grupama",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima."
}, },
"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"); "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;");

View File

@@ -103,7 +103,6 @@
"Path is already shared with this card" : "Put je već podijeljen s ovom karticom", "Path is already shared with this card" : "Put je već podijeljen s ovom karticom",
"Invalid date, date format must be YYYY-MM-DD" : "Nevažeći datum, oblik datuma mora biti GGGG-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Nevažeći datum, oblik datuma mora biti GGGG-MM-DD",
"Personal planning and team project organization" : "Osobno planiranje i organizacija timskih projekata", "Personal planning and team project organization" : "Osobno planiranje i organizacija timskih projekata",
"Card details" : "Pojedinosti o kartici",
"Add board" : "Dodaj ploču", "Add board" : "Dodaj ploču",
"Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom", "Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom",
"Search by board title" : "Traži po naslovu ploče", "Search by board title" : "Traži po naslovu ploče",
@@ -215,15 +214,16 @@
"Choose attachment" : "Odaberi privitak", "Choose attachment" : "Odaberi privitak",
"Set a due date" : "Postavi datum dospijeća", "Set a due date" : "Postavi datum dospijeća",
"Remove due date" : "Ukloni datum dospijeća", "Remove due date" : "Ukloni datum dospijeća",
"Mark as done" : "Označi kao završeno",
"Unarchive card" : "Dearhiviraj karticu", "Unarchive card" : "Dearhiviraj karticu",
"Archive card" : "Arhiviraj karticu", "Archive card" : "Arhiviraj karticu",
"Select Date" : "Odaberi datum", "Select Date" : "Odaberi datum",
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...", "Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
"(group)" : "(grupa)", "(group)" : "(grupa)",
"{count} comments, {unread} unread" : "{count} komentara, {unread} nepročitanih", "{count} comments, {unread} unread" : "{count} komentara, {unread} nepročitanih",
"Card details" : "Pojedinosti o kartici",
"Assign to me" : "Dodijeli meni", "Assign to me" : "Dodijeli meni",
"Unassign myself" : "Ukloni sebe", "Unassign myself" : "Ukloni sebe",
"Mark as done" : "Označi kao završeno",
"Delete card" : "Izbriši karticu", "Delete card" : "Izbriši karticu",
"Card deleted" : "Kartica je izbrisana", "Card deleted" : "Kartica je izbrisana",
"seconds ago" : "prije nekoliko sekundi", "seconds ago" : "prije nekoliko sekundi",
@@ -237,7 +237,6 @@
"Shared with you" : "Podijeljeno s vama", "Shared with you" : "Podijeljeno s vama",
"Use bigger card view" : "Prikaži veće kartice", "Use bigger card view" : "Prikaži veće kartice",
"Show boards in calendar/tasks" : "Prikaži ploče u kalendaru/zadacima", "Show boards in calendar/tasks" : "Prikaži ploče u kalendaru/zadacima",
"Cancel edit" : "Otkaži uređivanje",
"Board details" : "Pojedinosti o ploči", "Board details" : "Pojedinosti o ploči",
"Edit board" : "Uredi ploču", "Edit board" : "Uredi ploču",
"Clone board" : "Kloniraj ploču", "Clone board" : "Kloniraj ploču",
@@ -282,8 +281,16 @@
"Share with a Deck card" : "Dijeli s Deck karticom", "Share with a Deck card" : "Dijeli s Deck karticom",
"Share {file} with a Deck card" : "Dijeli {file} s Deck karticom", "Share {file} with a Deck card" : "Dijeli {file} s Deck karticom",
"Share" : "Dijeli", "Share" : "Dijeli",
"A <strong>card description</strong> inside the Deck app has been changed" : "Promijenjen je <strong>opis kartice</strong> u aplikaciji Deck",
"Timeline" : "Vremenska crta",
"Share board with a user, group or circle …" : "Dijelite ploču s korisnikom, grupom ili krugom...",
"Searching for users, groups and circles …" : "Traženje korisnika, grupa i krugova...", "Searching for users, groups and circles …" : "Traženje korisnika, grupa i krugova...",
"(Circle)" : "(Krug)", "(Circle)" : "(Krug)",
"Assign to users/groups/circles" : "Dodijeli korisnicima/grupama/krugovima" "Assign to users/groups/circles" : "Dodijeli korisnicima/grupama/krugovima",
"Next week" : "Sljedeći tjedan",
"Next month" : "Sljedeći mjesec",
"List is empty" : "Popis je prazan",
"Limit deck usage of groups" : "Ograniči uporabu decka grupama",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima."
},"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;" },"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"
} }

View File

@@ -116,7 +116,6 @@ OC.L10N.register(
"Invalid date, date format must be YYYY-MM-DD" : "Érvénytelen dátum, a dátumnak YYYY-MM-DD formátumúnak kell lennie", "Invalid date, date format must be YYYY-MM-DD" : "Érvénytelen dátum, a dátumnak YYYY-MM-DD formátumúnak kell lennie",
"Personal planning and team project organization" : "Személyes tervezés és csapatos projektszervezés", "Personal planning and team project organization" : "Személyes tervezés és csapatos projektszervezés",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "A Kártyák egy kanban-stílusú szervezőeszköz, amely a személyes tervezést és a csapatok projektszervezését célozza, a Nextcloudba integrálva.\n\n\n- 📥 Saját feladatok kártyákhoz adása, és azok sorrendezése\n- 📄 További jegyzetek leírása Markdownban\n- 🔖 Címkék hozzárendelése a még jobb rendszerezés miatt\n- 👥 Megosztás a csapattal, barátokkal vagy családdal\n- 📎 Fájlok hozzáadása mellékletként, vagy beágyazás a Markdown leírásba\n- 💬 Megbeszélés a csapattal hozzászólások használatával\n- ⚡ A változások követése a tevékenységnaplóban\n- 🚀 Rendszerezze a projektjét", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "A Kártyák egy kanban-stílusú szervezőeszköz, amely a személyes tervezést és a csapatok projektszervezését célozza, a Nextcloudba integrálva.\n\n\n- 📥 Saját feladatok kártyákhoz adása, és azok sorrendezése\n- 📄 További jegyzetek leírása Markdownban\n- 🔖 Címkék hozzárendelése a még jobb rendszerezés miatt\n- 👥 Megosztás a csapattal, barátokkal vagy családdal\n- 📎 Fájlok hozzáadása mellékletként, vagy beágyazás a Markdown leírásba\n- 💬 Megbeszélés a csapattal hozzászólások használatával\n- ⚡ A változások követése a tevékenységnaplóban\n- 🚀 Rendszerezze a projektjét",
"Card details" : "Kártya részletei",
"Add board" : "Tábla hozzáadása", "Add board" : "Tábla hozzáadása",
"Select the board to link to a project" : "Válasszon ki egy táblát, amely egy projektre fog hivatkozni", "Select the board to link to a project" : "Válasszon ki egy táblát, amely egy projektre fog hivatkozni",
"Search by board title" : "Keresés táblacím szerint", "Search by board title" : "Keresés táblacím szerint",
@@ -175,7 +174,6 @@ OC.L10N.register(
"Deleted lists" : "Törölt listák", "Deleted lists" : "Törölt listák",
"Undo" : "Visszavonás", "Undo" : "Visszavonás",
"Deleted cards" : "Törölt kártyák", "Deleted cards" : "Törölt kártyák",
"Searching for users, groups and teams …" : "Felhasználók, csoportok és csapatok keresése…",
"No participants found" : "Nem találhatók résztvevők", "No participants found" : "Nem találhatók résztvevők",
"Board owner" : "Tábla tulajdonosa", "Board owner" : "Tábla tulajdonosa",
"(Group)" : "(Csoport)", "(Group)" : "(Csoport)",
@@ -247,8 +245,7 @@ OC.L10N.register(
"Add due date" : "Határidő hozzáadása", "Add due date" : "Határidő hozzáadása",
"Choose a date" : "Válasszon dátumot", "Choose a date" : "Válasszon dátumot",
"Remove due date" : "Határidő eltávolítása", "Remove due date" : "Határidő eltávolítása",
"Mark as done" : "Megjelölés készként", "Not completed" : "Nincs kész",
"Not done" : "Nincs kész",
"Unarchive card" : "Kártya archiválásának visszavonása", "Unarchive card" : "Kártya archiválásának visszavonása",
"Archive card" : "Kártya archiválása", "Archive card" : "Kártya archiválása",
"Select Date" : "Dátum kiválasztása", "Select Date" : "Dátum kiválasztása",
@@ -262,8 +259,10 @@ OC.L10N.register(
"Todo items" : "Teendő elemek", "Todo items" : "Teendő elemek",
"{count} comments, {unread} unread" : "{count} hozzászólás, {unread} olvasatlan", "{count} comments, {unread} unread" : "{count} hozzászólás, {unread} olvasatlan",
"Edit card title" : "Kártyacím szerkesztése", "Edit card title" : "Kártyacím szerkesztése",
"Card details" : "Kártya részletei",
"Assign to me" : "Hozzám rendelés", "Assign to me" : "Hozzám rendelés",
"Unassign myself" : "Saját magam hozzárendelésének eltávolítása", "Unassign myself" : "Saját magam hozzárendelésének eltávolítása",
"Mark as done" : "Megjelölés készként",
"Delete card" : "Kártya törlése", "Delete card" : "Kártya törlése",
"Card deleted" : "Kártya törölve", "Card deleted" : "Kártya törölve",
"seconds ago" : "másodperce", "seconds ago" : "másodperce",
@@ -283,7 +282,6 @@ OC.L10N.register(
"Show card ID badge" : "Kártyaazonosító jelvény megjelenítése", "Show card ID badge" : "Kártyaazonosító jelvény megjelenítése",
"Show boards in calendar/tasks" : "Táblák megjelenítése a naptárak/teendők között", "Show boards in calendar/tasks" : "Táblák megjelenítése a naptárak/teendők között",
"Limit board creation to some groups" : "A tábla létrehozás bizonyos csoportokra korlátozása", "Limit board creation to some groups" : "A tábla létrehozás bizonyos csoportokra korlátozása",
"Cancel edit" : "Változások elvetése",
"Board details" : "Tábla részletei", "Board details" : "Tábla részletei",
"Edit board" : "Tábla szerkesztése", "Edit board" : "Tábla szerkesztése",
"Clone board" : "Tábla klónozása", "Clone board" : "Tábla klónozása",
@@ -309,6 +307,7 @@ OC.L10N.register(
"No due" : "Nincs határidő", "No due" : "Nincs határidő",
"Search for {searchQuery} in all boards" : "Keresés a(z) {searchQuery} kifejezésre az összes táblában", "Search for {searchQuery} in all boards" : "Keresés a(z) {searchQuery} kifejezésre az összes táblában",
"No results found" : "Nincs találat", "No results found" : "Nincs találat",
"This weekend {timeLocale}" : "Ez a hétvége {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "{name} kártyatábla\n* Legutóbb módosítva: {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "{name} kártyatábla\n* Legutóbb módosítva: {lastMod}",
"{stack} in {board}" : "{stack} itt: {board}", "{stack} in {board}" : "{stack} itt: {board}",
"Click to expand description" : "Kattintson a leírás kibontásához", "Click to expand description" : "Kattintson a leírás kibontásához",
@@ -328,7 +327,6 @@ OC.L10N.register(
"upcoming cards" : "közelgő kártyák", "upcoming cards" : "közelgő kártyák",
"New card" : "Új kártya", "New card" : "Új kártya",
"Due on {date}" : "Határidő: {date}", "Due on {date}" : "Határidő: {date}",
"This weekend {timeLocale}" : "Ez a hétvége {timeLocale}",
"Tomorrow {timeLocale}" : "Holnap {timeLocale}", "Tomorrow {timeLocale}" : "Holnap {timeLocale}",
"Later today {timeLocale}" : "Később a mai nap {timeLocale}", "Later today {timeLocale}" : "Később a mai nap {timeLocale}",
"Link to a board" : "Hivatkozás egy táblához", "Link to a board" : "Hivatkozás egy táblához",
@@ -342,8 +340,16 @@ OC.L10N.register(
"Share with a Deck card" : "Megosztás kártyával", "Share with a Deck card" : "Megosztás kártyával",
"Share {file} with a Deck card" : "A(z) {file} megosztása egy kártyával", "Share {file} with a Deck card" : "A(z) {file} megosztása egy kártyával",
"Share" : "Megosztás", "Share" : "Megosztás",
"A <strong>card description</strong> inside the Deck app has been changed" : "A <strong>kártyaleírás</strong> megváltozott a Kártyák alkalmazásban",
"Timeline" : "Idővonal",
"Share board with a user, group or circle …" : "Tábla megosztása felhasználóval, csoporttal vagy körrel…",
"Searching for users, groups and circles …" : "Felhasználók, csoportok és körök keresése…", "Searching for users, groups and circles …" : "Felhasználók, csoportok és körök keresése…",
"(Circle)" : "(Kör)", "(Circle)" : "(Kör)",
"Assign to users/groups/circles" : "Felhasználókhoz/csoportokhoz/körökhöz rendelés" "Assign to users/groups/circles" : "Felhasználókhoz/csoportokhoz/körökhöz rendelés",
"Next week" : "Következő hét",
"Next month" : "Következő hónap",
"List is empty" : "A lista üres",
"Limit deck usage of groups" : "A kártyák használatának csoportokra korlátozása",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "A Kártyák korlátozása blokkolja a saját táblák létrehozását azoknál a felhasználóknál, akik nem tagjai a megadott csoportoknak. A felhasználók továbbra is tudnak dolgozni a velük megosztott táblákon."
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -114,7 +114,6 @@
"Invalid date, date format must be YYYY-MM-DD" : "Érvénytelen dátum, a dátumnak YYYY-MM-DD formátumúnak kell lennie", "Invalid date, date format must be YYYY-MM-DD" : "Érvénytelen dátum, a dátumnak YYYY-MM-DD formátumúnak kell lennie",
"Personal planning and team project organization" : "Személyes tervezés és csapatos projektszervezés", "Personal planning and team project organization" : "Személyes tervezés és csapatos projektszervezés",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "A Kártyák egy kanban-stílusú szervezőeszköz, amely a személyes tervezést és a csapatok projektszervezését célozza, a Nextcloudba integrálva.\n\n\n- 📥 Saját feladatok kártyákhoz adása, és azok sorrendezése\n- 📄 További jegyzetek leírása Markdownban\n- 🔖 Címkék hozzárendelése a még jobb rendszerezés miatt\n- 👥 Megosztás a csapattal, barátokkal vagy családdal\n- 📎 Fájlok hozzáadása mellékletként, vagy beágyazás a Markdown leírásba\n- 💬 Megbeszélés a csapattal hozzászólások használatával\n- ⚡ A változások követése a tevékenységnaplóban\n- 🚀 Rendszerezze a projektjét", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "A Kártyák egy kanban-stílusú szervezőeszköz, amely a személyes tervezést és a csapatok projektszervezését célozza, a Nextcloudba integrálva.\n\n\n- 📥 Saját feladatok kártyákhoz adása, és azok sorrendezése\n- 📄 További jegyzetek leírása Markdownban\n- 🔖 Címkék hozzárendelése a még jobb rendszerezés miatt\n- 👥 Megosztás a csapattal, barátokkal vagy családdal\n- 📎 Fájlok hozzáadása mellékletként, vagy beágyazás a Markdown leírásba\n- 💬 Megbeszélés a csapattal hozzászólások használatával\n- ⚡ A változások követése a tevékenységnaplóban\n- 🚀 Rendszerezze a projektjét",
"Card details" : "Kártya részletei",
"Add board" : "Tábla hozzáadása", "Add board" : "Tábla hozzáadása",
"Select the board to link to a project" : "Válasszon ki egy táblát, amely egy projektre fog hivatkozni", "Select the board to link to a project" : "Válasszon ki egy táblát, amely egy projektre fog hivatkozni",
"Search by board title" : "Keresés táblacím szerint", "Search by board title" : "Keresés táblacím szerint",
@@ -173,7 +172,6 @@
"Deleted lists" : "Törölt listák", "Deleted lists" : "Törölt listák",
"Undo" : "Visszavonás", "Undo" : "Visszavonás",
"Deleted cards" : "Törölt kártyák", "Deleted cards" : "Törölt kártyák",
"Searching for users, groups and teams …" : "Felhasználók, csoportok és csapatok keresése…",
"No participants found" : "Nem találhatók résztvevők", "No participants found" : "Nem találhatók résztvevők",
"Board owner" : "Tábla tulajdonosa", "Board owner" : "Tábla tulajdonosa",
"(Group)" : "(Csoport)", "(Group)" : "(Csoport)",
@@ -245,8 +243,7 @@
"Add due date" : "Határidő hozzáadása", "Add due date" : "Határidő hozzáadása",
"Choose a date" : "Válasszon dátumot", "Choose a date" : "Válasszon dátumot",
"Remove due date" : "Határidő eltávolítása", "Remove due date" : "Határidő eltávolítása",
"Mark as done" : "Megjelölés készként", "Not completed" : "Nincs kész",
"Not done" : "Nincs kész",
"Unarchive card" : "Kártya archiválásának visszavonása", "Unarchive card" : "Kártya archiválásának visszavonása",
"Archive card" : "Kártya archiválása", "Archive card" : "Kártya archiválása",
"Select Date" : "Dátum kiválasztása", "Select Date" : "Dátum kiválasztása",
@@ -260,8 +257,10 @@
"Todo items" : "Teendő elemek", "Todo items" : "Teendő elemek",
"{count} comments, {unread} unread" : "{count} hozzászólás, {unread} olvasatlan", "{count} comments, {unread} unread" : "{count} hozzászólás, {unread} olvasatlan",
"Edit card title" : "Kártyacím szerkesztése", "Edit card title" : "Kártyacím szerkesztése",
"Card details" : "Kártya részletei",
"Assign to me" : "Hozzám rendelés", "Assign to me" : "Hozzám rendelés",
"Unassign myself" : "Saját magam hozzárendelésének eltávolítása", "Unassign myself" : "Saját magam hozzárendelésének eltávolítása",
"Mark as done" : "Megjelölés készként",
"Delete card" : "Kártya törlése", "Delete card" : "Kártya törlése",
"Card deleted" : "Kártya törölve", "Card deleted" : "Kártya törölve",
"seconds ago" : "másodperce", "seconds ago" : "másodperce",
@@ -281,7 +280,6 @@
"Show card ID badge" : "Kártyaazonosító jelvény megjelenítése", "Show card ID badge" : "Kártyaazonosító jelvény megjelenítése",
"Show boards in calendar/tasks" : "Táblák megjelenítése a naptárak/teendők között", "Show boards in calendar/tasks" : "Táblák megjelenítése a naptárak/teendők között",
"Limit board creation to some groups" : "A tábla létrehozás bizonyos csoportokra korlátozása", "Limit board creation to some groups" : "A tábla létrehozás bizonyos csoportokra korlátozása",
"Cancel edit" : "Változások elvetése",
"Board details" : "Tábla részletei", "Board details" : "Tábla részletei",
"Edit board" : "Tábla szerkesztése", "Edit board" : "Tábla szerkesztése",
"Clone board" : "Tábla klónozása", "Clone board" : "Tábla klónozása",
@@ -307,6 +305,7 @@
"No due" : "Nincs határidő", "No due" : "Nincs határidő",
"Search for {searchQuery} in all boards" : "Keresés a(z) {searchQuery} kifejezésre az összes táblában", "Search for {searchQuery} in all boards" : "Keresés a(z) {searchQuery} kifejezésre az összes táblában",
"No results found" : "Nincs találat", "No results found" : "Nincs találat",
"This weekend {timeLocale}" : "Ez a hétvége {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "{name} kártyatábla\n* Legutóbb módosítva: {lastMod}", "Deck board {name}\n* Last modified on {lastMod}" : "{name} kártyatábla\n* Legutóbb módosítva: {lastMod}",
"{stack} in {board}" : "{stack} itt: {board}", "{stack} in {board}" : "{stack} itt: {board}",
"Click to expand description" : "Kattintson a leírás kibontásához", "Click to expand description" : "Kattintson a leírás kibontásához",
@@ -326,7 +325,6 @@
"upcoming cards" : "közelgő kártyák", "upcoming cards" : "közelgő kártyák",
"New card" : "Új kártya", "New card" : "Új kártya",
"Due on {date}" : "Határidő: {date}", "Due on {date}" : "Határidő: {date}",
"This weekend {timeLocale}" : "Ez a hétvége {timeLocale}",
"Tomorrow {timeLocale}" : "Holnap {timeLocale}", "Tomorrow {timeLocale}" : "Holnap {timeLocale}",
"Later today {timeLocale}" : "Később a mai nap {timeLocale}", "Later today {timeLocale}" : "Később a mai nap {timeLocale}",
"Link to a board" : "Hivatkozás egy táblához", "Link to a board" : "Hivatkozás egy táblához",
@@ -340,8 +338,16 @@
"Share with a Deck card" : "Megosztás kártyával", "Share with a Deck card" : "Megosztás kártyával",
"Share {file} with a Deck card" : "A(z) {file} megosztása egy kártyával", "Share {file} with a Deck card" : "A(z) {file} megosztása egy kártyával",
"Share" : "Megosztás", "Share" : "Megosztás",
"A <strong>card description</strong> inside the Deck app has been changed" : "A <strong>kártyaleírás</strong> megváltozott a Kártyák alkalmazásban",
"Timeline" : "Idővonal",
"Share board with a user, group or circle …" : "Tábla megosztása felhasználóval, csoporttal vagy körrel…",
"Searching for users, groups and circles …" : "Felhasználók, csoportok és körök keresése…", "Searching for users, groups and circles …" : "Felhasználók, csoportok és körök keresése…",
"(Circle)" : "(Kör)", "(Circle)" : "(Kör)",
"Assign to users/groups/circles" : "Felhasználókhoz/csoportokhoz/körökhöz rendelés" "Assign to users/groups/circles" : "Felhasználókhoz/csoportokhoz/körökhöz rendelés",
"Next week" : "Következő hét",
"Next month" : "Következő hónap",
"List is empty" : "A lista üres",
"Limit deck usage of groups" : "A kártyák használatának csoportokra korlátozása",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "A Kártyák korlátozása blokkolja a saját táblák létrehozását azoknál a felhasználóknál, akik nem tagjai a megadott csoportoknak. A felhasználók továbbra is tudnak dolgozni a velük megosztott táblákon."
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -97,7 +97,6 @@ OC.L10N.register(
"Card not found" : "Kartu tidak ditemukan", "Card not found" : "Kartu tidak ditemukan",
"Invalid date, date format must be YYYY-MM-DD" : "Tanggal salah, format tanggal harus TTTT-BB-HH", "Invalid date, date format must be YYYY-MM-DD" : "Tanggal salah, format tanggal harus TTTT-BB-HH",
"Personal planning and team project organization" : "Perencanaan pribadi dan pengelolaan proyek tim", "Personal planning and team project organization" : "Perencanaan pribadi dan pengelolaan proyek tim",
"Card details" : "Detail kartu",
"Add board" : "Tambah papan", "Add board" : "Tambah papan",
"Select the board to link to a project" : "Pilih papan untuk ditautkan ke proyek", "Select the board to link to a project" : "Pilih papan untuk ditautkan ke proyek",
"Search by board title" : "Cari berdasarkan judul papan", "Search by board title" : "Cari berdasarkan judul papan",
@@ -188,12 +187,13 @@ OC.L10N.register(
"Choose attachment" : "Pilih lampiran", "Choose attachment" : "Pilih lampiran",
"Set a due date" : "Tentukan tenggat", "Set a due date" : "Tentukan tenggat",
"Remove due date" : "Hapus tenggat", "Remove due date" : "Hapus tenggat",
"Mark as done" : "Tandai sebagai selesai",
"Unarchive card" : "Memulihkan kartu", "Unarchive card" : "Memulihkan kartu",
"Archive card" : "Mengarsipkan kartu", "Archive card" : "Mengarsipkan kartu",
"Assign a tag to this card…" : "Berikan tag pada kartu ini...", "Assign a tag to this card…" : "Berikan tag pada kartu ini...",
"(group)" : "(grup)", "(group)" : "(grup)",
"Card details" : "Detail kartu",
"Assign to me" : "Tugaskan saya", "Assign to me" : "Tugaskan saya",
"Mark as done" : "Tandai sebagai selesai",
"Delete card" : "Hapus kartu", "Delete card" : "Hapus kartu",
"seconds ago" : "beberapa detik yang lalu", "seconds ago" : "beberapa detik yang lalu",
"Keyboard shortcuts" : "Pintasan keyboard", "Keyboard shortcuts" : "Pintasan keyboard",
@@ -202,7 +202,6 @@ OC.L10N.register(
"All boards" : "Semua papan", "All boards" : "Semua papan",
"Archived boards" : "Papan terarsip", "Archived boards" : "Papan terarsip",
"Shared with you" : "Shared with you", "Shared with you" : "Shared with you",
"Cancel edit" : "Batal sunting",
"Board details" : "Detail papan", "Board details" : "Detail papan",
"Edit board" : "Edit papan", "Edit board" : "Edit papan",
"Clone board" : "Pengklonaan papan", "Clone board" : "Pengklonaan papan",
@@ -224,7 +223,14 @@ OC.L10N.register(
"Something went wrong" : "Ada yang salah", "Something went wrong" : "Ada yang salah",
"Maximum file size of {size} exceeded" : "Melampaui batas ukuran maksimal {size}", "Maximum file size of {size} exceeded" : "Melampaui batas ukuran maksimal {size}",
"Share" : "Bagikan", "Share" : "Bagikan",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Deskripsi kartu</strong> didalam aplikasi Longgok telah diubah",
"Timeline" : "Linimasa",
"Share board with a user, group or circle …" : "Bagikan papan kepada pengguna, grup, atau kelompok",
"(Circle)" : "(Kelompok)", "(Circle)" : "(Kelompok)",
"Assign to users/groups/circles" : "Penugasan kepada pengguna/grup/lingkaran" "Assign to users/groups/circles" : "Penugasan kepada pengguna/grup/lingkaran",
"Next week" : "Minggu setelah",
"Next month" : "Bulan setelah",
"Limit deck usage of groups" : "Batasi grup pengguna longgok ",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Membatasi Longgok akan mencegah pengguna bukan bagian dari grup, untuk membuat papan mereka sendiri. Pengguna tetap menggunakan papan yang telah dibagikan kepadanya."
}, },
"nplurals=1; plural=0;"); "nplurals=1; plural=0;");

Some files were not shown because too many files have changed in this diff Show More