Compare commits

..

5 Commits

Author SHA1 Message Date
Julius Härtl
44e2e50469 Properly install
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-11-11 16:51:02 +01:00
Julius Härtl
d50b63f1ab Proper index for type
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-11-11 16:48:58 +01:00
Julius Härtl
b7a34ba9f7 Add oci to supported databases
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-11-11 16:48:58 +01:00
Julius Härtl
6dc1823a10 TMP build on push
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-11-11 16:48:57 +01:00
Julius Härtl
d0cfa3a7ba OCI tests
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-11-11 16:48:57 +01:00
308 changed files with 6159 additions and 17977 deletions

View File

@@ -1,4 +1,4 @@
name: Nextcloud app code check
name: PHP AppCode Check
on:
pull_request:

View File

@@ -1,11 +1,12 @@
name: Package build
name: Build app package
on:
pull_request:
jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:

View File

@@ -1,91 +0,0 @@
name: Integration tests
on:
pull_request:
push:
branches:
- master
- stable*
env:
APP_NAME: deck
jobs:
integration:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: ['7.4']
databases: ['sqlite', 'mysql', 'pgsql']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
services:
postgres:
image: postgres
ports:
- 4445:5432/tcp
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: rootpassword
POSTGRES_DB: nextcloud
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5
mysql:
image: mariadb
ports:
- 4444:3306/tcp
env:
MYSQL_ROOT_PASSWORD: rootpassword
options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 5
steps:
- name: Checkout server
uses: actions/checkout@v2
with:
repository: nextcloud/server
ref: ${{ matrix.server-versions }}
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Checkout app
uses: actions/checkout@v2
with:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, mysql, pdo_mysql, pgsql, pdo_pgsql,
coverage: none
- name: Set up PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: composer i
- name: Set up Nextcloud
run: |
if [ "${{ matrix.databases }}" = "mysql" ]; then
export DB_PORT=4444
elif [ "${{ matrix.databases }}" = "pgsql" ]; then
export DB_PORT=4445
fi
mkdir data
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin
cat config/config.php
./occ user:list
./occ app:enable --force ${{ env.APP_NAME }}
php -S localhost:8080 &
- name: Run behat
working-directory: apps/${{ env.APP_NAME }}/tests/integration
run: ./run.sh

View File

@@ -1,4 +1,4 @@
name: Package nightly
name: Nightly build
on:
push:

View File

@@ -21,12 +21,6 @@ jobs:
run: |
npm ci
- name: build
env:
RELATIVE_CI_KEY: ${{ secrets.RELATIVE_CI_KEY }}
RELATIVE_CI_SLUG: nextcloud/deck
run: |
mkdir -p js
npm run build --if-present -- --profile --json | tail -n +6 > js/webpack-stats.json
npx relative-ci-agent
npm run build --if-present

View File

@@ -3,37 +3,86 @@ name: PHPUnit
on:
pull_request:
push:
branches:
- master
- stable*
env:
APP_NAME: deck
jobs:
integration:
runs-on: ubuntu-18.04
php:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.4']
databases: ['sqlite']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
steps:
- name: Checkout server
uses: actions/checkout@v2
with:
repository: nextcloud/server
ref: ${{ matrix.server-versions }}
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Checkout app
uses: actions/checkout@v2
with:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite
coverage: none
- name: Set up PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: composer i
- name: Set up Nextcloud
env:
DB_PORT: 4444
run: |
mkdir data
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
./occ app:enable --force ${{ env.APP_NAME }}
php -S localhost:8080 &
- name: PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
- name: PHPUnit integration
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
mysql:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.3', '7.4']
databases: ['sqlite', 'mysql', 'pgsql']
databases: ['mysql']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
services:
postgres:
image: postgres
ports:
- 4445:5432/tcp
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: rootpassword
POSTGRES_DB: nextcloud
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5
mysql:
image: mariadb
ports:
@@ -62,11 +111,11 @@ jobs:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit
extensions: zip, gd, mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, mysql, pdo_mysql, pgsql, pdo_pgsql
extensions: mbstring, iconv, fileinfo, intl, mysql, pdo_mysql
coverage: none
- name: Set up PHPUnit
@@ -74,14 +123,150 @@ jobs:
run: composer i
- name: Set up Nextcloud
env:
DB_PORT: 4444
run: |
if [ "${{ matrix.databases }}" = "mysql" ]; then
export DB_PORT=4444
elif [ "${{ matrix.databases }}" = "pgsql" ]; then
export DB_PORT=4445
fi
mkdir data
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
./occ app:enable --force ${{ env.APP_NAME }}
php -S localhost:8080 &
- name: PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
- name: PHPUnit integration
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
pgsql:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.4']
databases: ['pgsql']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
services:
postgres:
image: postgres
ports:
- 4444:5432/tcp
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: rootpassword
POSTGRES_DB: nextcloud
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5
steps:
- name: Checkout server
uses: actions/checkout@v2
with:
repository: nextcloud/server
ref: ${{ matrix.server-versions }}
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Checkout app
uses: actions/checkout@v2
with:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit
extensions: mbstring, iconv, fileinfo, intl, pgsql, pdo_pgsql
coverage: none
- name: Set up PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: composer i
- name: Set up Nextcloud
env:
DB_PORT: 4444
run: |
mkdir data
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
./occ app:enable --force ${{ env.APP_NAME }}
php -S localhost:8080 &
- name: PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
- name: PHPUnit integration
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
oci:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.4']
databases: ['oci']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
services:
oracle:
image: deepdiver/docker-oracle-xe-11g # "wnameless/oracle-xe-11g-r2"
ports:
- "1521:1521"
steps:
- name: Checkout server
uses: actions/checkout@v2
with:
repository: nextcloud/server
ref: ${{ matrix.server-versions }}
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Checkout app
uses: actions/checkout@v2
with:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-versions }}"
extensions: mbstring, iconv, fileinfo, intl, oci8
tools: phpunit:8.5.2
coverage: none
- name: Set up PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: composer i
- name: Set up Nextcloud
run: |
mkdir data
./occ maintenance:install --verbose --database=oci --database-name=XE --database-host=127.0.0.1 --database-port=1521 --database-user=autotest --database-pass=owncloud --admin-user admin --admin-pass admin
php -f index.php
./occ app:enable --force ${{ env.APP_NAME }}
php -S localhost:8080 &

View File

@@ -1,31 +0,0 @@
name: Static analysis
on:
pull_request:
push:
branches:
- master
- stable*
jobs:
static-psalm-analysis:
runs-on: ubuntu-latest
strategy:
matrix:
ocp-version: [ 'dev-master' ]
name: Nextcloud ${{ matrix.ocp-version }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up php
uses: shivammathur/setup-php@master
with:
php-version: 7.4
tools: composer:v1
coverage: none
- name: Install dependencies
run: composer i
- name: Install dependencies
run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
- name: Run coding standards check
run: composer run psalm

1
.gitignore vendored
View File

@@ -7,5 +7,6 @@ tests/integration/vendor/
tests/integration/composer.lock
tests/.phpunit.result.cache
vendor/
*.lock
.php_cs.cache
\.idea/

View File

@@ -13,7 +13,6 @@ $config
->notPath('build')
->notPath('l10n')
->notPath('src')
->notPath('node_modules')
->notPath('vendor')
->in(__DIR__);
return $config;

View File

@@ -1,96 +1,34 @@
# Changelog
All notable changes to this project will be documented in this file.
## 1.3.0 - unreleased
### Added
* [#2638](https://github.com/nextcloud/deck/pull/2638) Sharing files to cards
* [#2683](https://github.com/nextcloud/deck/pull/2683) Handle clicks on calendar entries
* Nextcloud 21 compatiblity
### Fixed
* [#2622](https://github.com/nextcloud/deck/pull/2622) Fix gradient and stack header spacing for safari
* [#2626](https://github.com/nextcloud/deck/pull/2626) Adding a description icon to cards when they contain a description without any checkmarks @MonkeySon
* [#2659](https://github.com/nextcloud/deck/pull/2659) Matching color of description cursor with text color @JonFStr
* [#2676](https://github.com/nextcloud/deck/pull/2676) Only load filter view when shown
* [#2680](https://github.com/nextcloud/deck/pull/2680) Do not try to add change data if it doesn't exist
* [#2681](https://github.com/nextcloud/deck/pull/2681) Filter out deleted stacks from results
* [#2685](https://github.com/nextcloud/deck/pull/2685) Show all boards in move card dialog @jakobroehrl
* [#2687](https://github.com/nextcloud/deck/pull/2687) 3dots no opacity @jakobroehrl
* [#2688](https://github.com/nextcloud/deck/pull/2688) Title > boardname @jakobroehrl
* [#2689](https://github.com/nextcloud/deck/pull/2689) Modal > bigger view wording @jakobroehrl
## 1.3.0-beta2
### Fixed
* [#2700](https://github.com/nextcloud/deck/pull/2700) Attempt to copy file on dropping it to deck @juliushaertl
* [#2701](https://github.com/nextcloud/deck/pull/2701) Fix uploading files by drag and drop @juliushaertl
* [#2707](https://github.com/nextcloud/deck/pull/2707) L10n: Change to a capital letter @Valdnet
* [#2712](https://github.com/nextcloud/deck/pull/2712) Docs: Fix table in section "GET /api/v1.0/config" @das-g
* [#2716](https://github.com/nextcloud/deck/pull/2716) Remove repair step which is no longer needed as we cleanup properly @juliushaertl
* [#2723](https://github.com/nextcloud/deck/pull/2723) Pad random color with leading zeroes @PVince81
* [#2729](https://github.com/nextcloud/deck/pull/2729) Remove invalid activity parameters @nickvergessen
* [#2750](https://github.com/nextcloud/deck/pull/2750) Fix deck activity emails not being translated @nickvergessen
* [#2751](https://github.com/nextcloud/deck/pull/2751) Properly set author for activity events that are triggered by cron @juliushaertl
## 1.2.2 - 2020-11-24
### Fixed
* [#2584](https://github.com/nextcloud/deck/pull/2584) Fix updating checkbox state and avoid issues due to duplicate sidebar element
* [#2586](https://github.com/nextcloud/deck/pull/2586) Fix card details button
* [#2587](https://github.com/nextcloud/deck/pull/2587) Move modal top spacing to the header to avoid side-effect when scrolling
* [#2588](https://github.com/nextcloud/deck/pull/2588) Do not render images in editor
* [#2609](https://github.com/nextcloud/deck/pull/2609) Fix issue with depenendency causing newline comments to not show
* [#2611](https://github.com/nextcloud/deck/pull/2611) Fix paragraph styling in comments
## 1.2.1 - 2020-11-18
### Fixed
* [#2570](https://github.com/nextcloud/deck/pull/2570) [#2571](https://github.com/nextcloud/deck/pull/2571) Fix error when deleting users @ksteinb
* [#2573](https://github.com/nextcloud/deck/pull/2573) Fix issue where card description was changed on the wrong card when switching cards
## 1.2.0 - 2020-11-16
## 1.2.0 - unreleased
### Added
* [#2430](https://github.com/nextcloud/deck/pull/2430) Due date notification setting per board
* [#2230](https://github.com/nextcloud/deck/pull/2230) Implement scrolling per stack
* [#1396](https://github.com/nextcloud/deck/pull/1396) API: Expose canCreateBoards through capabilities
* [#2245](https://github.com/nextcloud/deck/pull/2245) API: ETag support for API endpoints
* [#2430](https://github.com/nextcloud/deck/pull/2430) Due date notification setting per board @juliushaertl
* [#2230](https://github.com/nextcloud/deck/pull/2230) Implement scrolling per stack @juliushaertl
* [#1396](https://github.com/nextcloud/deck/pull/1396) API: Expose canCreateBoards through capabilities @juliushaertl
* [#2245](https://github.com/nextcloud/deck/pull/2245) API: ETag support for API endpoints @juliushaertl
### Fixed
* [#2330](https://github.com/nextcloud/deck/pull/2330) Enhanced undo handling for deletions @jakobroehrl
* [#2336](https://github.com/nextcloud/deck/pull/2336) Run unit tests on github actions
* [#2358](https://github.com/nextcloud/deck/pull/2358) Properly check if FTSEvent has an argument set
* [#2359](https://github.com/nextcloud/deck/pull/2359) Also exclude deleted items from calendar boards
* [#2336](https://github.com/nextcloud/deck/pull/2336) Run unit tests on github actions @juliushaertl
* [#2358](https://github.com/nextcloud/deck/pull/2358) Properly check if FTSEvent has an argument set @juliushaertl
* [#2359](https://github.com/nextcloud/deck/pull/2359) Also exclude deleted items from calendar boards @juliushaertl
* [#2361](https://github.com/nextcloud/deck/pull/2361) Comments do not depend on the comments app @jakobroehrl
* [#2363](https://github.com/nextcloud/deck/pull/2363) Use uid instead of displayname for sharee results
* [#2367](https://github.com/nextcloud/deck/pull/2367) Properly handle multiple shares in a row and refactor sharee loading
* [#2363](https://github.com/nextcloud/deck/pull/2363) Use uid instead of displayname for sharee results @juliushaertl
* [#2367](https://github.com/nextcloud/deck/pull/2367) Properly handle multiple shares in a row and refactor sharee loading @juliushaertl
* [#2404](https://github.com/nextcloud/deck/pull/2404) Update Controls.vue @Flamenco
* [#2433](https://github.com/nextcloud/deck/pull/2433) Fix scrollable titles with Dyslexia font
* [#2433](https://github.com/nextcloud/deck/pull/2433) Fix scrollable titles with Dyslexia font @juliushaertl
* [#2434](https://github.com/nextcloud/deck/pull/2434) Move most destructive actions in drop down menus to the bottom @Nienzu
* [#2435](https://github.com/nextcloud/deck/pull/2435) Do not open the dialog automatically upon card creation, only upon click
* [#2437](https://github.com/nextcloud/deck/pull/2437) Only remove card padding for editable cards
* [#2440](https://github.com/nextcloud/deck/pull/2440) Move navigation toggle handling to @nextcloud/vue native one
* [#2435](https://github.com/nextcloud/deck/pull/2435) Do not open the dialog automatically upon card creation, only upon click @juliushaertl
* [#2437](https://github.com/nextcloud/deck/pull/2437) Only remove card padding for editable cards @juliushaertl
* [#2440](https://github.com/nextcloud/deck/pull/2440) Move navigation toggle handling to @nextcloud/vue native one @juliushaertl
* [#2463](https://github.com/nextcloud/deck/pull/2463) Changed triple dots to ellipsis @rakekniven
* [#2500](https://github.com/nextcloud/deck/pull/2500) Move details and description to dedicated component
* [#2517](https://github.com/nextcloud/deck/pull/2517) Filter out duplicate cards in overview
* [#2502](https://github.com/nextcloud/deck/pull/2502) Assignment code refactoring
* [#2519](https://github.com/nextcloud/deck/pull/2519) Fix invisibility bug on modal component @wrox
* [#2520](https://github.com/nextcloud/deck/pull/2520) Add placeholder for the description input
* [#2521](https://github.com/nextcloud/deck/pull/2521) Add migration step to make table layout consistent
* [#2524](https://github.com/nextcloud/deck/pull/2524) Only try to extract first part of the explode result
* [#2531](https://github.com/nextcloud/deck/pull/2531) Add proper type to boolean parameter
* [#2532](https://github.com/nextcloud/deck/pull/2532) Fix handling of notifications if a board does no longer exist
* [#2536](https://github.com/nextcloud/deck/pull/2536) Only set flex layout on the active tab
* [#2538](https://github.com/nextcloud/deck/pull/2538) Do not reset filter when staying on the same board
* [#2539](https://github.com/nextcloud/deck/pull/2539) Apply proper checks for menu items
* [#2540](https://github.com/nextcloud/deck/pull/2540) Only build one main bundle
* [#2562](https://github.com/nextcloud/deck/pull/2562) Only try to extract first part of the explode result (Part 2)
* [#2500](https://github.com/nextcloud/deck/pull/2500) Move details and description to dedicated component @juliushaertl
* [#2517](https://github.com/nextcloud/deck/pull/2517) Filter out duplicate cards in overview @juliushaertl
* [#2502](https://github.com/nextcloud/deck/pull/2502) Assignment code refactoring @juliushaertl
## 1.1.0 - 2020-10-03

View File

@@ -17,7 +17,7 @@
- 🚀 Get your project organized
</description>
<version>1.4.0-beta1</version>
<version>1.2.0-beta1</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<namespace>Deck</namespace>
@@ -32,17 +32,23 @@
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/1.0/Deck-1.png</screenshot>
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/1.0/Deck-2.png</screenshot>
<dependencies>
<php min-version="7.3"/>
<php min-version="5.6"/>
<database min-version="9.4">pgsql</database>
<database>sqlite</database>
<database min-version="5.5">mysql</database>
<nextcloud min-version="21" max-version="22" />
<database>oci</database>
<nextcloud min-version="18" max-version="21" />
</dependencies>
<background-jobs>
<job>OCA\Deck\Cron\DeleteCron</job>
<job>OCA\Deck\Cron\ScheduledNotifications</job>
<job>OCA\Deck\Cron\CardDescriptionActivity</job>
</background-jobs>
<repair-steps>
<post-migration>
<step>OCA\Deck\Migration\UnknownUsers</step>
</post-migration>
</repair-steps>
<commands>
<command>OCA\Deck\Command\UserExport</command>
</commands>

View File

@@ -80,66 +80,59 @@ return [
['name' => 'label#delete', 'url' => '/labels/{labelId}', 'verb' => 'DELETE'],
// api
['name' => 'board_api#index', 'url' => '/api/v{apiVersion}/boards', 'verb' => 'GET'],
['name' => 'board_api#get', 'url' => '/api/v{apiVersion}/boards/{boardId}', 'verb' => 'GET'],
['name' => 'board_api#create', 'url' => '/api/v{apiVersion}/boards', 'verb' => 'POST'],
['name' => 'board_api#delete', 'url' => '/api/v{apiVersion}/boards/{boardId}', 'verb' => 'DELETE'],
['name' => 'board_api#update', 'url' => '/api/v{apiVersion}/boards/{boardId}', 'verb' => 'PUT'],
['name' => 'board_api#undo_delete', 'url' => '/api/v{apiVersion}/boards/{boardId}/undo_delete', 'verb' => 'POST'],
['name' => 'board_api#addAcl', 'url' => '/api/v{apiVersion}/boards/{boardId}/acl', 'verb' => 'POST'],
['name' => 'board_api#deleteAcl', 'url' => '/api/v{apiVersion}/boards/{boardId}/acl/{aclId}', 'verb' => 'DELETE'],
['name' => 'board_api#updateAcl', 'url' => '/api/v{apiVersion}/boards/{boardId}/acl/{aclId}', 'verb' => 'PUT'],
['name' => 'board_api#index', 'url' => '/api/v1.0/boards', 'verb' => 'GET'],
['name' => 'board_api#get', 'url' => '/api/v1.0/boards/{boardId}', 'verb' => 'GET'],
['name' => 'board_api#create', 'url' => '/api/v1.0/boards', 'verb' => 'POST'],
['name' => 'board_api#delete', 'url' => '/api/v1.0/boards/{boardId}', 'verb' => 'DELETE'],
['name' => 'board_api#update', 'url' => '/api/v1.0/boards/{boardId}', 'verb' => 'PUT'],
['name' => 'board_api#undo_delete', 'url' => '/api/v1.0/boards/{boardId}/undo_delete', 'verb' => 'POST'],
['name' => 'board_api#addAcl', 'url' => '/api/v1.0/boards/{boardId}/acl', 'verb' => 'POST'],
['name' => 'board_api#deleteAcl', 'url' => '/api/v1.0/boards/{boardId}/acl/{aclId}', 'verb' => 'DELETE'],
['name' => 'board_api#updateAcl', 'url' => '/api/v1.0/boards/{boardId}/acl/{aclId}', 'verb' => 'PUT'],
['name' => 'stack_api#index', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks', 'verb' => 'GET'],
['name' => 'stack_api#getArchived', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/archived', 'verb' => 'GET'],
['name' => 'stack_api#get', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}', 'verb' => 'GET'],
['name' => 'stack_api#create', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks', 'verb' => 'POST'],
['name' => 'stack_api#update', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}', 'verb' => 'PUT'],
['name' => 'stack_api#delete', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}', 'verb' => 'DELETE'],
['name' => 'stack_api#index', 'url' => '/api/v1.0/boards/{boardId}/stacks', 'verb' => 'GET'],
['name' => 'stack_api#getArchived', 'url' => '/api/v1.0/boards/{boardId}/stacks/archived', 'verb' => 'GET'],
['name' => 'stack_api#get', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}', 'verb' => 'GET'],
['name' => 'stack_api#create', 'url' => '/api/v1.0/boards/{boardId}/stacks', 'verb' => 'POST'],
['name' => 'stack_api#update', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}', 'verb' => 'PUT'],
['name' => 'stack_api#delete', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}', 'verb' => 'DELETE'],
['name' => 'card_api#get', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}', 'verb' => 'GET'],
['name' => 'card_api#create', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards', 'verb' => 'POST'],
['name' => 'card_api#update', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}', 'verb' => 'PUT'],
['name' => 'card_api#assignLabel', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/assignLabel', 'verb' => 'PUT'],
['name' => 'card_api#removeLabel', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/removeLabel', 'verb' => 'PUT'],
['name' => 'card_api#assignUser', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/assignUser', 'verb' => 'PUT'],
['name' => 'card_api#unassignUser', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/unassignUser', 'verb' => 'PUT'],
['name' => 'card_api#reorder', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/reorder', 'verb' => 'PUT'],
['name' => 'card_api#delete', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}', 'verb' => 'DELETE'],
['name' => 'card_api#get', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}', 'verb' => 'GET'],
['name' => 'card_api#create', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards', 'verb' => 'POST'],
['name' => 'card_api#update', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}', 'verb' => 'PUT'],
['name' => 'card_api#assignLabel', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/assignLabel', 'verb' => 'PUT'],
['name' => 'card_api#removeLabel', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/removeLabel', 'verb' => 'PUT'],
['name' => 'card_api#assignUser', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/assignUser', 'verb' => 'PUT'],
['name' => 'card_api#unassignUser', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/unassignUser', 'verb' => 'PUT'],
['name' => 'card_api#reorder', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/reorder', 'verb' => 'PUT'],
['name' => 'card_api#delete', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}', 'verb' => 'DELETE'],
['name' => 'card_api#findAllWithDue', 'url' => '/api/v{apiVersion}/dashboard/due', 'verb' => 'GET'],
['name' => 'card_api#findAllWithDue', 'url' => '/api/v1.0/dashboard/due', 'verb' => 'GET'],
['name' => 'label_api#get', 'url' => '/api/v{apiVersion}/boards/{boardId}/labels/{labelId}', 'verb' => 'GET'],
['name' => 'label_api#create', 'url' => '/api/v{apiVersion}/boards/{boardId}/labels', 'verb' => 'POST'],
['name' => 'label_api#update', 'url' => '/api/v{apiVersion}/boards/{boardId}/labels/{labelId}', 'verb' => 'PUT'],
['name' => 'label_api#delete', 'url' => '/api/v{apiVersion}/boards/{boardId}/labels/{labelId}', 'verb' => 'DELETE'],
['name' => 'label_api#get', 'url' => '/api/v1.0/boards/{boardId}/labels/{labelId}', 'verb' => 'GET'],
['name' => 'label_api#create', 'url' => '/api/v1.0/boards/{boardId}/labels', 'verb' => 'POST'],
['name' => 'label_api#update', 'url' => '/api/v1.0/boards/{boardId}/labels/{labelId}', 'verb' => 'PUT'],
['name' => 'label_api#delete', 'url' => '/api/v1.0/boards/{boardId}/labels/{labelId}', 'verb' => 'DELETE'],
['name' => 'attachment_api#getAll', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments', 'verb' => 'GET', 'requirements' => ['apiVersion' => '1.0']],
['name' => 'attachment_api#display', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}', 'verb' => 'GET', 'requirements' => ['apiVersion' => '1.0']],
['name' => 'attachment_api#create', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments', 'verb' => 'POST', 'requirements' => ['apiVersion' => '1.0']],
['name' => 'attachment_api#update', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}', 'verb' => 'PUT', 'requirements' => ['apiVersion' => '1.0']],
['name' => 'attachment_api#delete', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}', 'verb' => 'DELETE', 'requirements' => ['apiVersion' => '1.0']],
['name' => 'attachment_api#restore', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}/restore', 'verb' => 'PUT', 'requirements' => ['apiVersion' => '1.0']],
['name' => 'attachment_api#getAll', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments', 'verb' => 'GET'],
['name' => 'attachment_api#display', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}', 'verb' => 'GET'],
['name' => 'attachment_api#create', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments', 'verb' => 'POST'],
['name' => 'attachment_api#update', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}', 'verb' => 'PUT'],
['name' => 'attachment_api#delete', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}', 'verb' => 'DELETE'],
['name' => 'attachment_api#restore', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}/restore', 'verb' => 'PUT'],
['name' => 'attachment_api_v11#getAll', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments', 'verb' => 'GET', 'requirements' => ['apiVersion' => '1.1']],
['name' => 'attachment_api_v11#display', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{type}/{attachmentId}', 'verb' => 'GET', 'requirements' => ['apiVersion' => '1.1']],
['name' => 'attachment_api_v11#create', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments', 'verb' => 'POST', 'requirements' => ['apiVersion' => '1.1']],
['name' => 'attachment_api_v11#update', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{type}/{attachmentId}', 'verb' => 'PUT', 'requirements' => ['apiVersion' => '1.1']],
['name' => 'attachment_api_v11#delete', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{type}/{attachmentId}', 'verb' => 'DELETE', 'requirements' => ['apiVersion' => '1.1']],
['name' => 'attachment_api_v11#restore', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{type}/{attachmentId}/restore', 'verb' => 'PUT', 'requirements' => ['apiVersion' => '1.1']],
['name' => 'board_api#preflighted_cors', 'url' => '/api/v{apiVersion}/{path}','verb' => 'OPTIONS', 'requirements' => ['path' => '.+']],
['name' => 'board_api#preflighted_cors', 'url' => '/api/v1.0/{path}','verb' => 'OPTIONS', 'requirements' => ['path' => '.+']],
],
'ocs' => [
['name' => 'Config#get', 'url' => '/api/v{apiVersion}/config', 'verb' => 'GET'],
['name' => 'Config#setValue', 'url' => '/api/v{apiVersion}/config/{key}', 'verb' => 'POST'],
['name' => 'Config#get', 'url' => '/api/v1.0/config', 'verb' => 'GET'],
['name' => 'Config#setValue', 'url' => '/api/v1.0/config/{key}', 'verb' => 'POST'],
['name' => 'comments_api#list', 'url' => '/api/v{apiVersion}/cards/{cardId}/comments', 'verb' => 'GET'],
['name' => 'comments_api#create', 'url' => '/api/v{apiVersion}/cards/{cardId}/comments', 'verb' => 'POST'],
['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#list', 'url' => '/api/v1.0/cards/{cardId}/comments', 'verb' => 'GET'],
['name' => 'comments_api#create', 'url' => '/api/v1.0/cards/{cardId}/comments', 'verb' => 'POST'],
['name' => 'comments_api#update', 'url' => '/api/v1.0/cards/{cardId}/comments/{commentId}', 'verb' => 'PUT'],
['name' => 'comments_api#delete', 'url' => '/api/v1.0/cards/{cardId}/comments/{commentId}', 'verb' => 'DELETE'],
['name' => 'overview_api#upcomingCards', 'url' => '/api/v{apiVersion}/overview/upcoming', 'verb' => 'GET'],
['name' => 'overview_api#upcomingCards', 'url' => '/api/v1.0/overview/upcoming', 'verb' => 'GET'],
]
];

View File

@@ -13,12 +13,11 @@
},
"require-dev": {
"roave/security-advisories": "dev-master",
"christophwurst/nextcloud": "^21@dev",
"christophwurst/nextcloud": "^17",
"jakub-onderka/php-parallel-lint": "^1.0.0",
"phpunit/phpunit": "^8",
"nextcloud/coding-standard": "^0.5.0",
"symfony/event-dispatcher": "^4.0",
"vimeo/psalm": "^4.3",
"php-parallel-lint/php-parallel-lint": "^1.2"
"nextcloud/coding-standard": "^0.3.0",
"symfony/event-dispatcher": "^4.0"
},
"config": {
"optimize-autoloader": true,
@@ -27,8 +26,6 @@
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm",
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType"
"cs:fix": "php-cs-fixer fix"
}
}

4917
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -10,7 +10,6 @@
@include icon-black-white('attach', 'deck', 1);
@include icon-black-white('reply', 'deck', 1);
@include icon-black-white('notifications-dark', 'deck', 1);
@include icon-black-white('description', 'deck', 1);
.icon-toggle-compact-collapsed {
@include icon-color('toggle-view-expand', 'deck', $color-black);

View File

@@ -115,7 +115,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
| Parameter | Type | Description |
| --------- | ------- | ---------------------------- |
| details | Bool | **Optional** Enhance boards with details about labels, stacks and users |
| options | Bool | **Optional** Enhance boards with details about labels, stacks and users |
#### Response
@@ -1000,7 +1000,7 @@ Deck stores user and app configuration values globally and per board. The GET en
#### Response
| Config key | Description |
| Config key | Description | Value |
| --- | --- |
| calendar | Determines if the calendar/tasks integration through the CalDAV backend is enabled for the user (boolean) |
| groupLimit | Determines if creating new boards is limited to certain groups of the instance. The resulting output is an array of group objects with the id and the displayname (Admin only)|

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M14,17L4,17v2h10v-2zM20,9L4,9v2h16L20,9zM4,15h16v-2L4,13v2zM4,5v2h16L20,5L4,5z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" version="1.1" height="16"><path fill="#000" d="m2.5 1c-0.28 0-0.5 0.22-0.5 0.5v13c0 0.28 0.22 0.5 0.5 0.5h11c0.28 0 0.5-0.22 0.5-0.5v-10.5l-3-3h-8.5zm1.5 2h6v1h-6v-1zm0 3h5v1h-5v-1zm0 3h8v1h-8v-1zm0 3h4v1h-4v-1z"/></svg>

Before

Width:  |  Height:  |  Size: 180 B

After

Width:  |  Height:  |  Size: 292 B

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Can share" : "Kan deel",
"Delete" : "Skrap",
"Edit" : "Wysig",
"Title" : "Titel",
"Comments" : "Kommentare",
"Modified" : "Gewysig",
"Created" : "Geskep",
@@ -32,7 +33,6 @@ OC.L10N.register(
"Shared with you" : "Met u gedeel",
"An error occurred" : "'n Fout het voorgekom",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"This week" : "Vandeesweek"
"Tomorrow" : "Môre"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -17,6 +17,7 @@
"Can share" : "Kan deel",
"Delete" : "Skrap",
"Edit" : "Wysig",
"Title" : "Titel",
"Comments" : "Kommentare",
"Modified" : "Gewysig",
"Created" : "Geskep",
@@ -30,7 +31,6 @@
"Shared with you" : "Met u gedeel",
"An error occurred" : "'n Fout het voorgekom",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"This week" : "Vandeesweek"
"Tomorrow" : "Môre"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -43,11 +43,11 @@ OC.L10N.register(
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح",
"Select board" : "حدد لوح",
"Select a board" : "حدد لوح",
"Cancel" : "إلغاء",
"Select a card" : "حدد بطاقة",
"Select the card to link to a project" : "حدد البطاقة لربطها بمشروع",
"Select a board" : "حدد لوح",
"Select a card" : "حدد بطاقة",
"Link to card" : "اربط بطاقة",
"Cancel" : "إلغاء",
"File already exists" : "الملف موجود مسبقاً",
"Do you want to overwrite it?" : "هل تريد تجاوزه؟",
"Overwrite file" : "تجاوز ملف",
@@ -92,7 +92,9 @@ OC.L10N.register(
"Edit" : "تعديل",
"Add a new tag" : "إضافة وسم جديد",
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
"Title" : "العنوان",
"Members" : "الاعضاء",
"Upload attachment" : "رفع المرفقات",
"Add this attachment" : "إضافة هذا المرفق",
"Delete Attachment" : "مسح المرفق",
"Restore Attachment" : "استعادة المرفق",

View File

@@ -41,11 +41,11 @@
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح",
"Select board" : "حدد لوح",
"Select a board" : "حدد لوح",
"Cancel" : "إلغاء",
"Select a card" : "حدد بطاقة",
"Select the card to link to a project" : "حدد البطاقة لربطها بمشروع",
"Select a board" : "حدد لوح",
"Select a card" : "حدد بطاقة",
"Link to card" : "اربط بطاقة",
"Cancel" : "إلغاء",
"File already exists" : "الملف موجود مسبقاً",
"Do you want to overwrite it?" : "هل تريد تجاوزه؟",
"Overwrite file" : "تجاوز ملف",
@@ -90,7 +90,9 @@
"Edit" : "تعديل",
"Add a new tag" : "إضافة وسم جديد",
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
"Title" : "العنوان",
"Members" : "الاعضاء",
"Upload attachment" : "رفع المرفقات",
"Add this attachment" : "إضافة هذا المرفق",
"Delete Attachment" : "مسح المرفق",
"Restore Attachment" : "استعادة المرفق",

View File

@@ -25,6 +25,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Desaniciar",
"Edit" : "Editar",
"Title" : "Títulu",
"Members" : "Miembros",
"Attachments" : "Axuntos",
"Comments" : "Comentarios",

View File

@@ -23,6 +23,7 @@
"Can share" : "Can share",
"Delete" : "Desaniciar",
"Edit" : "Editar",
"Title" : "Títulu",
"Members" : "Miembros",
"Attachments" : "Axuntos",
"Comments" : "Comentarios",

View File

@@ -14,6 +14,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Sil",
"Edit" : "Dəyişiklik et",
"Title" : "Başlıq",
"Modified" : "Dəyişdirildi",
"Save" : "Saxla",
"Reply" : "Cavab",

View File

@@ -12,6 +12,7 @@
"Can share" : "Can share",
"Delete" : "Sil",
"Edit" : "Dəyişiklik et",
"Title" : "Başlıq",
"Modified" : "Dəyişdirildi",
"Save" : "Saxla",
"Reply" : "Cavab",

View File

@@ -1,269 +1,50 @@
OC.L10N.register(
"deck",
{
"You have created a new board {board}" : "Създадохте ново табло {board}",
"{user} has created a new board {board}" : "{user} създаде ново табло {board}",
"You have deleted the board {board}" : "Изтрихте таблото {board}",
"{user} has deleted the board {board}" : "{user} изтри таблото {board}",
"You have restored the board {board}" : "Възстановихте таблото {board}",
"{user} has restored the board {board}" : "{user} възстанови таблото {board}",
"You have shared the board {board} with {acl}" : "Споделихте таблото {board} с {acl}",
"{user} has shared the board {board} with {acl}" : "{user} сподели таблото {board} с {acl}",
"You have removed {acl} from the board {board}" : "Премахнахте {acl} от таблото {board}",
"{user} has removed {acl} from the board {board}" : "{user} премахна {acl} от таблото {board}",
"You have renamed the board {before} to {board}" : "Преименувахте таблото от {before} на {board}",
"{user} has renamed the board {before} to {board}" : "{user} преименува таблото от {before} на {board}",
"You have archived the board {board}" : "Архивирахте таблото {board}",
"{user} has archived the board {before}" : "{user} архивира таблото {board}",
"You have unarchived the board {board}" : "Разархивирали сте таблото {board}",
"{user} has unarchived the board {before}" : "{user} е разархивирал таблото {before}",
"You have created a new list {stack} on board {board}" : "Създадохте нов списък {stack} на таблото {board}",
"{user} has created a new list {stack} on board {board}" : "{user} създаде нов списък {stack} на таблото {board}",
"You have renamed list {before} to {stack} on board {board}" : "Преименувахте списъка {before} на {stack} на таблото {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} преименува списъка {before} на {stack} на таблото {board}",
"You have deleted list {stack} on board {board}" : "Изтрихте списък {stack} на таблото {board}",
"{user} has deleted list {stack} on board {board}" : "{user} изтри списък {stack} на таблото {board}",
"You have created card {card} in list {stack} on board {board}" : "Създали сте карта {card} в списък {stack} на таблото {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} създаде карта {card} в списък {stack} на таблото {board}",
"You have deleted card {card} in list {stack} on board {board}" : "Изтрили сте карта {card} в списък {stack} на таблото {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} изтри карта {card} в списък {stack} на таблото {board}",
"You have renamed the card {before} to {card}" : "Преименувахте картата {before} на {card}",
"{user} has renamed the card {before} to {card}" : "{user} преименува картата {before} на {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Добавили сте описание към карта {card} в списък {stack} на таблото {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} добави описание към карта {card} в списък {stack} на таблото {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : " Актуализирали сте описанието към карта {card} в списък {stack} на таблото {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : " {user} актуализира описанието към карта {card} в списък {stack} на таблото {board}",
"You have archived card {card} in list {stack} on board {board}" : "Архивирали сте карта {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}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} разархивира карта {card} в списък {stack} на борда {board}",
"You have removed the due date of card {card}" : "Премахнахте датата на падежа на картата {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}",
"{user} has set the due date of card {card} to {after}" : "{user} зададе дата на падежа на картата {card} на {after}",
"You have updated the due date of card {card} to {after}" : "Актуализирали сте датата на падежа на картата {card} на {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} актуализира датата на падежа на картата {card} на {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Добавихте етикет {label} към карта {card} в списък {stack} на таблото {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} добави етикет {label} към карта {card} в списък {stack} натаблото {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Премахнахте етикет {label} към карта {card} в списък {stack} на таблото {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} премахна етикет {label} към карта {card} в списък {stack} на таблото {board}",
"You have assigned {assigneduser} to card {card} on board {board}" : "Присвоили сте {assigneduser} на карта {card} на борда {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} присвои {assigneduser} на карта {card} на борда {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Имате неопределен {assigneduser} на карта {card} на борда {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} има неопределен {assigneduser} на карта {card} на борда {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Преместихте картата {card} от списък {stackBefore} в {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} премести картата {card} от списък {stackBefore} в {stack}",
"You have added the attachment {attachment} to card {card}" : "Добавихте прикачения файл {attachment} към карта {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} добави прикачения файл {attachment} към карта {card}",
"You have updated the attachment {attachment} on card {card}" : " Актуализирали сте прикачения файл {attachment} към карта {card}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} актуализира прикачения файл {attachment} към карта {card}",
"You have deleted the attachment {attachment} from card {card}" : "Изтрихте прикачения файл {attachment} от карта {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} изтри прикачения файл {attachment} към карта {card}",
"You have restored the attachment {attachment} to card {card}" : "Възстановили сте прикачения файл {attachment} към карта {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} възстанови прикачения файл {attachment} към карта {card}",
"You have commented on card {card}" : "Коментирали сте карта {card}",
"{user} has commented on card {card}" : "{user} коментира карта {card}",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Описанието на картата</strong> в приложението Deck/набор/ е променено",
"Deck" : "Набор",
"Changes in the <strong>Deck app</strong>" : "Промени в <strong>приложението Deck</strong>",
"A <strong>comment</strong> was created on a card" : "На картата е създаден <strong>коментар</strong>",
"Upcoming cards" : "Предстоящи карти",
"Personal" : "Лични",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Картата \"%s\" на \"%s\" Ви е била възложена от %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} е възложил картата \"%s\"\" on “%s“ на Вас.",
"The card \"%s\" on \"%s\" has reached its due date." : "Картата \"%s\" on \"%s\" е достигнала датата на падежа си.",
"%s has mentioned you in a comment on \"%s\"." : "%s те спомена в коментар за “%s”",
"{user} has mentioned you in a comment on \"%s\"." : "{user} те спомена в коментар за “%s”",
"The board \"%s\" has been shared with you by %s." : "Таблото \"%s\" е споделено с вас от%s.",
"{user} has shared the board %s with you." : "{user} сподели таблото %s с Вас",
"No data was provided to create an attachment." : "Не бяха предоставени данни за създаване на прикачен файл.",
"Finished" : "Готово",
"To review" : "За преглед",
"Action needed" : "Необходимо е действие",
"Later" : "По-късно",
"copy" : "Копиране",
"To do" : "Да направя",
"Doing" : "Правя",
"Done" : "Готово",
"Example Task 3" : "Примерна задача 3",
"Example Task 2" : "Примерна задача 2",
"Example Task 1" : "Примерна задача 1",
"The file was uploaded" : "Файлът е качен",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Каченият файл надвишава директивата upload_max_filesize в php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размерът на файла надвишава максималния размер определен от MAX_FILE_SIZE в HTML формата.",
"The file was only partially uploaded" : "Файлът е качен частично",
"No file was uploaded" : "Нито един файл не е качен",
"Missing a temporary folder" : "Липсва временна папка",
"Could not write file to disk" : " Файлът не можа да бъде записан на диск",
"A PHP extension stopped the file upload" : "PHP разширение спря качването на файла",
"No file uploaded or file size exceeds maximum of %s" : "Няма качен файл или размерът на файла надвишава максимума от %s",
"Card not found" : "Катртата не е намерена",
"Path is already shared with this card" : "Пътят вече е споделен с тази карта",
"Invalid date, date format must be YYYY-MM-DD" : "Невалидна дата, форматът е различен от ГГГГ-ММ-ДД",
"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- 🚀 Организирайте проекта си",
"Card details" : "Подробности за картата",
"Add board" : "Добави табло",
"Select the board to link to a project" : "Изберете таблото, което да свържете към проект",
"Search by board title" : "Търсене по заглавие на таблото",
"Select board" : "Избор на табло",
"Select a board" : "Избор на табло",
"Select a list" : "Избор на списък",
"Cancel" : "Отказ",
"Select a card" : "Избор на карта",
"Select the card to link to a project" : "Изберете картата, която да свържете към проект",
"Link to card" : "Връзка към карта",
"File already exists" : "Файлът вече съществува",
"A file with the name {filename} already exists." : "Вече съществува файл с името {filename}.",
"Do you want to overwrite it?" : "Искате ли да го презапишете?",
"Overwrite file" : "Презапиши файла",
"Keep existing file" : "Запазване на съществуващ файл",
"This board is read only" : "Таблото е само за четене",
"Drop your files to upload" : "Пуснете вашите файлове, за да ги качите",
"Archived cards" : "Архивирани карти",
"Add list" : "Добави списък",
"List name" : "Име на списък",
"Apply filter" : "Приложи филтър",
"Filter by tag" : "Филтрирай по маркер",
"Filter by assigned user" : "Филтриране по назначен потребител",
"Unassigned" : "Неприсвоен",
"Filter by due date" : "Филтриране по крайна дата",
"Overdue" : "Просрочен",
"Next 24 hours" : "Следващите 24 часа",
"Next 7 days" : "Следващите 7 дни",
"Next 30 days" : "Следващите 30 дни",
"No due date" : "Няма крайна дата",
"Clear filter" : "Изчстиване на филтър",
"Hide archived cards" : "Скриване на архивирани карти",
"Show archived cards" : "Показване на архивирани карти",
"Toggle compact mode" : "Превключване на компактен режим",
"Details" : "Подробности",
"Loading board" : "Зареждане на табло",
"No lists available" : "Няма налична списъци.",
"Create a new list to add cards to this board" : "Създайте нов списък, за да добавите карти към това табло",
"Board not found" : "Таблото не е намерено",
"Sharing" : "Споделяне",
"Tags" : "Етикети",
"Deleted items" : "Изтрити елементи",
"Timeline" : "Времева линия",
"Deleted lists" : "Изтрити списъци",
"Undo" : "Отмяна",
"Deleted cards" : "Изтрити карти",
"Share board with a user, group or circle …" : "Споделяне на таблото с потребител, група или кръг ...",
"Searching for users, groups and circles …" : "Търсене за потребители, групи и кръгове ...",
"No participants found" : "Няма намерени участници",
"Board owner" : "Собственик на табло",
"(Group)" : "(Група)",
"(Circle)" : "(Кръг)",
"Can edit" : "Може да редактира",
"Can share" : "Може да споделя",
"Can manage" : "Може да управлява",
"Delete" : "Изтриване",
"Failed to create share with {displayName}" : "Създаването на споделяне с {displayName} не бе успешно",
"Add a new list" : "Добавяне на нов списък",
"Archive all cards" : "Архивира всички карти",
"Delete list" : "Изтрива списък",
"Add card" : "Добави карта",
"Archive all cards in this list" : "Архивира всички карти в този списък",
"Add a new card" : "Добави нова карта",
"Card name" : "Име на карта",
"List deleted" : "Списъкът е изтрит",
"Edit" : "Редакция",
"Add a new tag" : "Добавяне на нов етикет",
"title and color value must be provided" : "трябва да се предоставят заглавие и стойност на цвета",
"Board name" : "Име на табло",
"Title" : "Име",
"Members" : "Членове",
"Upload new files" : "Качи нови файлове",
"Share from Files" : "Споделяне от Файлове",
"Add this attachment" : "Добавете този прикачен файл",
"Show in Files" : "Показване във файлове",
"Unshare file" : "Прекратяване на споделянето на файла",
"Delete Attachment" : "Изтриване на прикачен файл",
"Restore Attachment" : "Възстановяване на прикачен файл",
"File to share" : "Файл за споделяне",
"Invalid path selected" : "Избран е невалиден път ",
"Open in sidebar view" : "Отваряне в изгледа на страничната лента",
"Open in bigger view" : "Отваря се в по-голям изглед",
"Upload attachment" : "Качване",
"Attachments" : "Прикачени файлове",
"Comments" : "Коментари",
"Modified" : "Промяна",
"Created" : "Създаден",
"The title cannot be empty." : "Заглавието не може да бъде празно.",
"No comments yet. Begin the discussion!" : "Все още няма коментари. Започнете дискусията!",
"Assign a tag to this card…" : "Присвояване на етикет на тази карта ...",
"Assign to users" : "Зачисляване към потребители",
"Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове",
"Assign a user to this card…" : "Зачисляване на потребител на тази карта ...",
"Due date" : "Крайна дата",
"Set a due date" : "Задаване на крайна дата",
"Remove due date" : "Премахни крайната дата",
"Select Date" : "Изберете дата",
"Save" : "Запазване",
"The comment cannot be empty." : "Коментарът не може да бъде празен.",
"The comment cannot be longer than 1000 characters." : "Коментарът не може да бъде по-дълъг от 1000 знака.",
"In reply to" : "В отговор на",
"Reply" : "Отговори",
"Update" : "Обновяване",
"Description" : "Описание",
"(Unsaved)" : " (Незаписан)",
"(Saving…)" : "(Записване...)",
"Formatting help" : "Помощ за форматиране",
"Edit description" : "Редактиране на описанието",
"View description" : "Преглед на описанието",
"Add Attachment" : "Добавяне на прикачен файл",
"Write a description …" : "Напишете описание ...",
"Choose attachment" : "Избор на прикачен файл",
"(group)" : "(група)",
"(circle)" : "(кръг)",
"Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен",
"Move card" : "Преместване на карта",
"Unarchive card" : "Разархивиране на карта",
"Archive card" : "Архивиране на карта",
"Delete card" : "Изтриване на карта",
"Move card to another board" : "Преместване на картата на друго табло",
"Card deleted" : "Картата е изтрита",
"seconds ago" : "преди секунди",
"All boards" : "Всички табла",
"Archived boards" : "Архивирани табла",
"Shared with you" : "Споделени с вас",
"Use bigger card view" : "Използва по-голям изглед на картата",
"Show boards in calendar/tasks" : "Показване на таблата в календар / задачи",
"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/набор/ ще блокира потребителите, които не са част от тези групи, да създават свои собствени табла. Потребителите все още ще могат да работят на таблата, които са споделени с тях.",
"Board details" : "Подробности за табло",
"Edit board" : "Редактиране на табло",
"Clone board" : " Клониране на табло",
"Unarchive board" : "Разархивиране натабло",
"Archive board" : "Архивиране на табло",
"Turn on due date reminders" : "Включва напомнянията за краен срок",
"Turn off due date reminders" : "Изключва напомнянията за краен срок",
"Due date reminders" : " Напомняния за краен срок",
"All cards" : "Всички карти",
"Assigned cards" : "Зачислени карти",
"No notifications" : "Няма известия",
"Delete board" : "Изтриване на табло",
"Board {0} deleted" : "Табло {0} изтрито",
"Only assigned cards" : "Само зачислените карти",
"No reminder" : "Няма напомняне",
"An error occurred" : "Възникна грешка",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло.",
"Delete the board?" : "Изтриване на таблото?",
"Loading filtered view" : "Зареждане на филтриран изглед",
"Today" : "Днес",
"Tomorrow" : "Утре",
"This week" : "Тази седмица",
"No due" : "Не се дължи",
"No upcoming cards" : "Няма предстоящи карти",
"upcoming cards" : "предстоящи карти",
"Link to a board" : "Линк към табло",
"Link to a card" : "Линк към карта",
"Something went wrong" : "Нещо се обърка",
"Failed to upload {name}" : " Неуспешно качване на {name}",
"Maximum file size of {size} exceeded" : "Максималният размер на файла от {size} е надвишен",
"Error creating the share" : "Грешка при създаване на споделяне",
"Share with a Deck card" : "Споделяне с Deck карта",
"Share {file} with a Deck card" : "Споделяне {file} с Deck карта",
"Share" : "Споделяне"
"This week" : "Тази седмица"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -1,267 +1,48 @@
{ "translations": {
"You have created a new board {board}" : "Създадохте ново табло {board}",
"{user} has created a new board {board}" : "{user} създаде ново табло {board}",
"You have deleted the board {board}" : "Изтрихте таблото {board}",
"{user} has deleted the board {board}" : "{user} изтри таблото {board}",
"You have restored the board {board}" : "Възстановихте таблото {board}",
"{user} has restored the board {board}" : "{user} възстанови таблото {board}",
"You have shared the board {board} with {acl}" : "Споделихте таблото {board} с {acl}",
"{user} has shared the board {board} with {acl}" : "{user} сподели таблото {board} с {acl}",
"You have removed {acl} from the board {board}" : "Премахнахте {acl} от таблото {board}",
"{user} has removed {acl} from the board {board}" : "{user} премахна {acl} от таблото {board}",
"You have renamed the board {before} to {board}" : "Преименувахте таблото от {before} на {board}",
"{user} has renamed the board {before} to {board}" : "{user} преименува таблото от {before} на {board}",
"You have archived the board {board}" : "Архивирахте таблото {board}",
"{user} has archived the board {before}" : "{user} архивира таблото {board}",
"You have unarchived the board {board}" : "Разархивирали сте таблото {board}",
"{user} has unarchived the board {before}" : "{user} е разархивирал таблото {before}",
"You have created a new list {stack} on board {board}" : "Създадохте нов списък {stack} на таблото {board}",
"{user} has created a new list {stack} on board {board}" : "{user} създаде нов списък {stack} на таблото {board}",
"You have renamed list {before} to {stack} on board {board}" : "Преименувахте списъка {before} на {stack} на таблото {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} преименува списъка {before} на {stack} на таблото {board}",
"You have deleted list {stack} on board {board}" : "Изтрихте списък {stack} на таблото {board}",
"{user} has deleted list {stack} on board {board}" : "{user} изтри списък {stack} на таблото {board}",
"You have created card {card} in list {stack} on board {board}" : "Създали сте карта {card} в списък {stack} на таблото {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} създаде карта {card} в списък {stack} на таблото {board}",
"You have deleted card {card} in list {stack} on board {board}" : "Изтрили сте карта {card} в списък {stack} на таблото {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} изтри карта {card} в списък {stack} на таблото {board}",
"You have renamed the card {before} to {card}" : "Преименувахте картата {before} на {card}",
"{user} has renamed the card {before} to {card}" : "{user} преименува картата {before} на {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Добавили сте описание към карта {card} в списък {stack} на таблото {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} добави описание към карта {card} в списък {stack} на таблото {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : " Актуализирали сте описанието към карта {card} в списък {stack} на таблото {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : " {user} актуализира описанието към карта {card} в списък {stack} на таблото {board}",
"You have archived card {card} in list {stack} on board {board}" : "Архивирали сте карта {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}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} разархивира карта {card} в списък {stack} на борда {board}",
"You have removed the due date of card {card}" : "Премахнахте датата на падежа на картата {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}",
"{user} has set the due date of card {card} to {after}" : "{user} зададе дата на падежа на картата {card} на {after}",
"You have updated the due date of card {card} to {after}" : "Актуализирали сте датата на падежа на картата {card} на {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} актуализира датата на падежа на картата {card} на {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Добавихте етикет {label} към карта {card} в списък {stack} на таблото {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} добави етикет {label} към карта {card} в списък {stack} натаблото {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Премахнахте етикет {label} към карта {card} в списък {stack} на таблото {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} премахна етикет {label} към карта {card} в списък {stack} на таблото {board}",
"You have assigned {assigneduser} to card {card} on board {board}" : "Присвоили сте {assigneduser} на карта {card} на борда {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} присвои {assigneduser} на карта {card} на борда {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Имате неопределен {assigneduser} на карта {card} на борда {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} има неопределен {assigneduser} на карта {card} на борда {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Преместихте картата {card} от списък {stackBefore} в {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} премести картата {card} от списък {stackBefore} в {stack}",
"You have added the attachment {attachment} to card {card}" : "Добавихте прикачения файл {attachment} към карта {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} добави прикачения файл {attachment} към карта {card}",
"You have updated the attachment {attachment} on card {card}" : " Актуализирали сте прикачения файл {attachment} към карта {card}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} актуализира прикачения файл {attachment} към карта {card}",
"You have deleted the attachment {attachment} from card {card}" : "Изтрихте прикачения файл {attachment} от карта {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} изтри прикачения файл {attachment} към карта {card}",
"You have restored the attachment {attachment} to card {card}" : "Възстановили сте прикачения файл {attachment} към карта {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} възстанови прикачения файл {attachment} към карта {card}",
"You have commented on card {card}" : "Коментирали сте карта {card}",
"{user} has commented on card {card}" : "{user} коментира карта {card}",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Описанието на картата</strong> в приложението Deck/набор/ е променено",
"Deck" : "Набор",
"Changes in the <strong>Deck app</strong>" : "Промени в <strong>приложението Deck</strong>",
"A <strong>comment</strong> was created on a card" : "На картата е създаден <strong>коментар</strong>",
"Upcoming cards" : "Предстоящи карти",
"Personal" : "Лични",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Картата \"%s\" на \"%s\" Ви е била възложена от %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} е възложил картата \"%s\"\" on “%s“ на Вас.",
"The card \"%s\" on \"%s\" has reached its due date." : "Картата \"%s\" on \"%s\" е достигнала датата на падежа си.",
"%s has mentioned you in a comment on \"%s\"." : "%s те спомена в коментар за “%s”",
"{user} has mentioned you in a comment on \"%s\"." : "{user} те спомена в коментар за “%s”",
"The board \"%s\" has been shared with you by %s." : "Таблото \"%s\" е споделено с вас от%s.",
"{user} has shared the board %s with you." : "{user} сподели таблото %s с Вас",
"No data was provided to create an attachment." : "Не бяха предоставени данни за създаване на прикачен файл.",
"Finished" : "Готово",
"To review" : "За преглед",
"Action needed" : "Необходимо е действие",
"Later" : "По-късно",
"copy" : "Копиране",
"To do" : "Да направя",
"Doing" : "Правя",
"Done" : "Готово",
"Example Task 3" : "Примерна задача 3",
"Example Task 2" : "Примерна задача 2",
"Example Task 1" : "Примерна задача 1",
"The file was uploaded" : "Файлът е качен",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Каченият файл надвишава директивата upload_max_filesize в php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размерът на файла надвишава максималния размер определен от MAX_FILE_SIZE в HTML формата.",
"The file was only partially uploaded" : "Файлът е качен частично",
"No file was uploaded" : "Нито един файл не е качен",
"Missing a temporary folder" : "Липсва временна папка",
"Could not write file to disk" : " Файлът не можа да бъде записан на диск",
"A PHP extension stopped the file upload" : "PHP разширение спря качването на файла",
"No file uploaded or file size exceeds maximum of %s" : "Няма качен файл или размерът на файла надвишава максимума от %s",
"Card not found" : "Катртата не е намерена",
"Path is already shared with this card" : "Пътят вече е споделен с тази карта",
"Invalid date, date format must be YYYY-MM-DD" : "Невалидна дата, форматът е различен от ГГГГ-ММ-ДД",
"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- 🚀 Организирайте проекта си",
"Card details" : "Подробности за картата",
"Add board" : "Добави табло",
"Select the board to link to a project" : "Изберете таблото, което да свържете към проект",
"Search by board title" : "Търсене по заглавие на таблото",
"Select board" : "Избор на табло",
"Select a board" : "Избор на табло",
"Select a list" : "Избор на списък",
"Cancel" : "Отказ",
"Select a card" : "Избор на карта",
"Select the card to link to a project" : "Изберете картата, която да свържете към проект",
"Link to card" : "Връзка към карта",
"File already exists" : "Файлът вече съществува",
"A file with the name {filename} already exists." : "Вече съществува файл с името {filename}.",
"Do you want to overwrite it?" : "Искате ли да го презапишете?",
"Overwrite file" : "Презапиши файла",
"Keep existing file" : "Запазване на съществуващ файл",
"This board is read only" : "Таблото е само за четене",
"Drop your files to upload" : "Пуснете вашите файлове, за да ги качите",
"Archived cards" : "Архивирани карти",
"Add list" : "Добави списък",
"List name" : "Име на списък",
"Apply filter" : "Приложи филтър",
"Filter by tag" : "Филтрирай по маркер",
"Filter by assigned user" : "Филтриране по назначен потребител",
"Unassigned" : "Неприсвоен",
"Filter by due date" : "Филтриране по крайна дата",
"Overdue" : "Просрочен",
"Next 24 hours" : "Следващите 24 часа",
"Next 7 days" : "Следващите 7 дни",
"Next 30 days" : "Следващите 30 дни",
"No due date" : "Няма крайна дата",
"Clear filter" : "Изчстиване на филтър",
"Hide archived cards" : "Скриване на архивирани карти",
"Show archived cards" : "Показване на архивирани карти",
"Toggle compact mode" : "Превключване на компактен режим",
"Details" : "Подробности",
"Loading board" : "Зареждане на табло",
"No lists available" : "Няма налична списъци.",
"Create a new list to add cards to this board" : "Създайте нов списък, за да добавите карти към това табло",
"Board not found" : "Таблото не е намерено",
"Sharing" : "Споделяне",
"Tags" : "Етикети",
"Deleted items" : "Изтрити елементи",
"Timeline" : "Времева линия",
"Deleted lists" : "Изтрити списъци",
"Undo" : "Отмяна",
"Deleted cards" : "Изтрити карти",
"Share board with a user, group or circle …" : "Споделяне на таблото с потребител, група или кръг ...",
"Searching for users, groups and circles …" : "Търсене за потребители, групи и кръгове ...",
"No participants found" : "Няма намерени участници",
"Board owner" : "Собственик на табло",
"(Group)" : "(Група)",
"(Circle)" : "(Кръг)",
"Can edit" : "Може да редактира",
"Can share" : "Може да споделя",
"Can manage" : "Може да управлява",
"Delete" : "Изтриване",
"Failed to create share with {displayName}" : "Създаването на споделяне с {displayName} не бе успешно",
"Add a new list" : "Добавяне на нов списък",
"Archive all cards" : "Архивира всички карти",
"Delete list" : "Изтрива списък",
"Add card" : "Добави карта",
"Archive all cards in this list" : "Архивира всички карти в този списък",
"Add a new card" : "Добави нова карта",
"Card name" : "Име на карта",
"List deleted" : "Списъкът е изтрит",
"Edit" : "Редакция",
"Add a new tag" : "Добавяне на нов етикет",
"title and color value must be provided" : "трябва да се предоставят заглавие и стойност на цвета",
"Board name" : "Име на табло",
"Title" : "Име",
"Members" : "Членове",
"Upload new files" : "Качи нови файлове",
"Share from Files" : "Споделяне от Файлове",
"Add this attachment" : "Добавете този прикачен файл",
"Show in Files" : "Показване във файлове",
"Unshare file" : "Прекратяване на споделянето на файла",
"Delete Attachment" : "Изтриване на прикачен файл",
"Restore Attachment" : "Възстановяване на прикачен файл",
"File to share" : "Файл за споделяне",
"Invalid path selected" : "Избран е невалиден път ",
"Open in sidebar view" : "Отваряне в изгледа на страничната лента",
"Open in bigger view" : "Отваря се в по-голям изглед",
"Upload attachment" : "Качване",
"Attachments" : "Прикачени файлове",
"Comments" : "Коментари",
"Modified" : "Промяна",
"Created" : "Създаден",
"The title cannot be empty." : "Заглавието не може да бъде празно.",
"No comments yet. Begin the discussion!" : "Все още няма коментари. Започнете дискусията!",
"Assign a tag to this card…" : "Присвояване на етикет на тази карта ...",
"Assign to users" : "Зачисляване към потребители",
"Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове",
"Assign a user to this card…" : "Зачисляване на потребител на тази карта ...",
"Due date" : "Крайна дата",
"Set a due date" : "Задаване на крайна дата",
"Remove due date" : "Премахни крайната дата",
"Select Date" : "Изберете дата",
"Save" : "Запазване",
"The comment cannot be empty." : "Коментарът не може да бъде празен.",
"The comment cannot be longer than 1000 characters." : "Коментарът не може да бъде по-дълъг от 1000 знака.",
"In reply to" : "В отговор на",
"Reply" : "Отговори",
"Update" : "Обновяване",
"Description" : "Описание",
"(Unsaved)" : " (Незаписан)",
"(Saving…)" : "(Записване...)",
"Formatting help" : "Помощ за форматиране",
"Edit description" : "Редактиране на описанието",
"View description" : "Преглед на описанието",
"Add Attachment" : "Добавяне на прикачен файл",
"Write a description …" : "Напишете описание ...",
"Choose attachment" : "Избор на прикачен файл",
"(group)" : "(група)",
"(circle)" : "(кръг)",
"Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен",
"Move card" : "Преместване на карта",
"Unarchive card" : "Разархивиране на карта",
"Archive card" : "Архивиране на карта",
"Delete card" : "Изтриване на карта",
"Move card to another board" : "Преместване на картата на друго табло",
"Card deleted" : "Картата е изтрита",
"seconds ago" : "преди секунди",
"All boards" : "Всички табла",
"Archived boards" : "Архивирани табла",
"Shared with you" : "Споделени с вас",
"Use bigger card view" : "Използва по-голям изглед на картата",
"Show boards in calendar/tasks" : "Показване на таблата в календар / задачи",
"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/набор/ ще блокира потребителите, които не са част от тези групи, да създават свои собствени табла. Потребителите все още ще могат да работят на таблата, които са споделени с тях.",
"Board details" : "Подробности за табло",
"Edit board" : "Редактиране на табло",
"Clone board" : " Клониране на табло",
"Unarchive board" : "Разархивиране натабло",
"Archive board" : "Архивиране на табло",
"Turn on due date reminders" : "Включва напомнянията за краен срок",
"Turn off due date reminders" : "Изключва напомнянията за краен срок",
"Due date reminders" : " Напомняния за краен срок",
"All cards" : "Всички карти",
"Assigned cards" : "Зачислени карти",
"No notifications" : "Няма известия",
"Delete board" : "Изтриване на табло",
"Board {0} deleted" : "Табло {0} изтрито",
"Only assigned cards" : "Само зачислените карти",
"No reminder" : "Няма напомняне",
"An error occurred" : "Възникна грешка",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло.",
"Delete the board?" : "Изтриване на таблото?",
"Loading filtered view" : "Зареждане на филтриран изглед",
"Today" : "Днес",
"Tomorrow" : "Утре",
"This week" : "Тази седмица",
"No due" : "Не се дължи",
"No upcoming cards" : "Няма предстоящи карти",
"upcoming cards" : "предстоящи карти",
"Link to a board" : "Линк към табло",
"Link to a card" : "Линк към карта",
"Something went wrong" : "Нещо се обърка",
"Failed to upload {name}" : " Неуспешно качване на {name}",
"Maximum file size of {size} exceeded" : "Максималният размер на файла от {size} е надвишен",
"Error creating the share" : "Грешка при създаване на споделяне",
"Share with a Deck card" : "Споделяне с Deck карта",
"Share {file} with a Deck card" : "Споделяне {file} с Deck карта",
"Share" : "Споделяне"
"This week" : "Тази седмица"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -14,6 +14,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "মুছে",
"Edit" : "সম্পাদনা",
"Title" : "শিরোনাম",
"Modified" : "পরিবর্তিত",
"Save" : "সংরক্ষণ",
"Reply" : "জবাব",

View File

@@ -12,6 +12,7 @@
"Can share" : "Can share",
"Delete" : "মুছে",
"Edit" : "সম্পাদনা",
"Title" : "শিরোনাম",
"Modified" : "পরিবর্তিত",
"Save" : "সংরক্ষণ",
"Reply" : "জবাব",

View File

@@ -12,6 +12,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Obriši",
"Edit" : "Izmjeni",
"Title" : "Naslov",
"Members" : "Članovi",
"Comments" : "Komentari",
"Modified" : "Izmijenjeno",

View File

@@ -10,6 +10,7 @@
"Can share" : "Can share",
"Delete" : "Obriši",
"Edit" : "Izmjeni",
"Title" : "Naslov",
"Members" : "Članovi",
"Comments" : "Komentari",
"Modified" : "Izmijenjeno",

View File

@@ -64,10 +64,10 @@ OC.L10N.register(
"You have commented on card {card}" : "Heu comentat la targeta {card}",
"{user} has commented on card {card}" : "{user} ha comentat la targeta {card}",
"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",
"Deck" : "Targetes",
"Changes in the <strong>Deck app</strong>" : "Canvis a l'<strong>aplicació Targetes</strong>",
"Deck" : "Tauler",
"Changes in the <strong>Deck app</strong>" : "Hi ha canvis a l'<strong>aplicació Tauler</strong>",
"A <strong>comment</strong> was created on a card" : "S'ha afegit un <strong>comentari</strong> a una targeta",
"Upcoming cards" : "Pròximes targetes",
"Upcoming cards" : "Properes targetes",
"Personal" : "Personal",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La targeta \"%s\" sobre \"%s\" se us ha assignat per %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} us ha assignat la targeta \"%s\" sobre \"%s\".",
@@ -81,35 +81,34 @@ OC.L10N.register(
"To review" : "Per revisar",
"Action needed" : "Acció necessària",
"Later" : "Més tard",
"copy" : "còpia",
"To do" : "Pendent",
"copy" : "copia",
"To do" : "Pendents",
"Doing" : "En procés",
"Done" : "Finalitzat",
"Done" : "Finalitzades",
"Example Task 3" : "Tasca d'exemple 3",
"Example Task 2" : "Tasca d'exemple 2",
"Example Task 1" : "Tasca d'exemple 1",
"The file was uploaded" : "S'ha pujat el fitxer",
"The file was uploaded" : "S'ha carregat el fitxer",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El fitxer carregat excedeix la directiva upload_max_filesize dins de php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El fitxer carregat excedeix la directiva MAX_FILE_SIZE que hi ha especificada al formulari d'HTML",
"The file was only partially uploaded" : "El fitxer s'ha carregat només parcialment",
"No file was uploaded" : "No s'ha pujat cap fitxer",
"No file was uploaded" : "No s'ha carregat cap fitxer",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No sha pogut escriure el fitxer al disc",
"A PHP extension stopped the file upload" : "Una extensió del PHP ha aturat la carregada del fitxer",
"No file uploaded or file size exceeds maximum of %s" : "No s'ha carregat cap fitxer o la mida del fitxer sobrepassa el màxim de %s",
"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 markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu 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",
"Card details" : "Dades de la targeta",
"Add board" : "Afegeix una taula",
"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",
"Select board" : "Selecciona un tauler",
"Select a board" : "Selecciona un tauler",
"Select a list" : "Seleccioneu una llista",
"Cancel" : "Cancel·la",
"Select a card" : "Selecciona una targeta",
"Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte",
"Select a board" : "Selecciona un tauler",
"Select a card" : "Selecciona una targeta",
"Link to card" : "Enllaç a la targeta",
"Cancel" : "Cancel·la",
"File already exists" : "El fitxer ja existeix",
"A file with the name {filename} already exists." : "Ja existeix un fitxer amb el nom {filename}.",
"Do you want to overwrite it?" : "Voleu sobre-escriure'l?",
@@ -119,7 +118,7 @@ OC.L10N.register(
"Drop your files to upload" : "Deixeu anar els fitxers per penjar-los",
"Archived cards" : "Targetes arxivades",
"Add list" : "Afegeix una llista",
"List name" : "Nom de la llista",
"List name" : "Nom de llista",
"Apply filter" : "Aplica el filtre",
"Filter by tag" : "Filtra per etiqueta",
"Filter by assigned user" : "Filtra per usuari assignat",
@@ -127,16 +126,16 @@ OC.L10N.register(
"Filter by due date" : "Filtra per data de venciment",
"Overdue" : "Endarrerit",
"Next 24 hours" : "Pròximes 24 hores",
"Next 7 days" : "Pròxims 7 dies",
"Next 30 days" : "Pròxims 30 dies",
"Next 7 days" : "Propers 7 dies",
"Next 30 days" : "Propers 30 dies",
"No due date" : "Sense venciment",
"Clear filter" : "Esborra el filtre",
"Clear filter" : "Neteja el filtre",
"Hide archived cards" : "Amaga les targetes arxivades",
"Show archived cards" : "Mostra les targetes arxivades",
"Toggle compact mode" : "Commuta el mode compacte",
"Details" : "Detalls",
"Loading board" : "S'està carregant el tauler",
"No lists available" : "No hi ha cap llista disponible",
"Loading board" : "Carregant tauler",
"No lists available" : "Cap llista disponible",
"Create a new list to add cards to this board" : "Crea una llista nova per afegir targetes a aquest tauler",
"Board not found" : "Tauler no trobat",
"Sharing" : "Compartició",
@@ -168,8 +167,9 @@ OC.L10N.register(
"Edit" : "Edita",
"Add a new tag" : "Afegir una etiqueta nova",
"title and color value must be provided" : "sha de proporcionar el valor del títol i del color",
"Board name" : "Nom del taulell",
"Title" : "Títol",
"Members" : "Membres",
"Upload attachment" : "Carrega l'adjunt",
"Add this attachment" : "Afegeix aquest adjunt",
"Delete Attachment" : "Suprimeix ladjunt",
"Restore Attachment" : "Restaura l'adjunt",
@@ -202,7 +202,6 @@ OC.L10N.register(
"Edit description" : "Edita descripció",
"View description" : "Veure descripció",
"Add Attachment" : "Afegeix un adjunt",
"Write a description …" : "Escriviu una descripció...",
"Choose attachment" : "Triar adjunt",
"(group)" : "(grup)",
"(circle)" : "(cercle)",
@@ -213,44 +212,45 @@ OC.L10N.register(
"Archive card" : "Arxiva la targeta",
"Delete card" : "Suprimeix targeta",
"Move card to another board" : "Mou la targeta a un altre tauler",
"Select a list" : "Seleccioneu una llista",
"Card deleted" : "Targeta suprimida",
"seconds ago" : "fa uns segons",
"All boards" : "Tots els taulers",
"Archived boards" : "Taulers arxivats",
"Shared with you" : "Us han compartit",
"Use bigger card view" : "Utilitza la visualització de targetes més gran",
"Use modal card view" : "Utilitza la visualització de targetes modals",
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
"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.",
"Board name" : "Nom del taulell",
"Board details" : "Detalls de la junta",
"Edit board" : "Edita el tauler",
"Clone board" : "Clonar tauler",
"Unarchive board" : "Desarxiva el tauler",
"Archive board" : "Arxiva el tauler",
"Turn on due date reminders" : "Activa els recordatoris de data de venciment",
"Turn off due date reminders" : "Desactiva els recordatoris de data de venciment",
"Due date reminders" : "Recordatoris de data de venciment",
"Turn on due date reminders" : "Activa el recordatori de data de caducitat",
"Turn off due date reminders" : "Desactiva el recordatori de data de caducitat",
"Due date reminders" : "Recordatori de data de caducitat",
"All cards" : "Totes les targetes",
"Assigned cards" : "Targetes assignades",
"No notifications" : "No hi ha notificacions",
"Delete board" : "Suprimeix el tauler",
"Board {0} deleted" : "Sha suprimit el tauler {0}",
"Only assigned cards" : "Només les targetes assignades",
"Only assigned cards" : "Només targetes assignades",
"No reminder" : "Sense recordatoris",
"An error occurred" : "S'ha produït un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
"Delete the board?" : "Voleu suprimir el tauler?",
"Delete the board?" : "Suprimir el tauler?",
"Loading filtered view" : "S'està carregant la visualització filtrada",
"Today" : "Avui",
"Tomorrow" : "Demà",
"This week" : "Aquesta setmana",
"No due" : "Sense venciment",
"No upcoming cards" : "No hi ha pròximes targetes",
"upcoming cards" : "pròximes targetes",
"No upcoming cards" : "No hi ha targetes futures",
"upcoming cards" : "properes targetes",
"Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta",
"Something went wrong" : "Alguna cosa ha anat malament",
"Failed to upload {name}" : "No s'ha pogut pujar {name}",
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -62,10 +62,10 @@
"You have commented on card {card}" : "Heu comentat la targeta {card}",
"{user} has commented on card {card}" : "{user} ha comentat la targeta {card}",
"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",
"Deck" : "Targetes",
"Changes in the <strong>Deck app</strong>" : "Canvis a l'<strong>aplicació Targetes</strong>",
"Deck" : "Tauler",
"Changes in the <strong>Deck app</strong>" : "Hi ha canvis a l'<strong>aplicació Tauler</strong>",
"A <strong>comment</strong> was created on a card" : "S'ha afegit un <strong>comentari</strong> a una targeta",
"Upcoming cards" : "Pròximes targetes",
"Upcoming cards" : "Properes targetes",
"Personal" : "Personal",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La targeta \"%s\" sobre \"%s\" se us ha assignat per %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} us ha assignat la targeta \"%s\" sobre \"%s\".",
@@ -79,35 +79,34 @@
"To review" : "Per revisar",
"Action needed" : "Acció necessària",
"Later" : "Més tard",
"copy" : "còpia",
"To do" : "Pendent",
"copy" : "copia",
"To do" : "Pendents",
"Doing" : "En procés",
"Done" : "Finalitzat",
"Done" : "Finalitzades",
"Example Task 3" : "Tasca d'exemple 3",
"Example Task 2" : "Tasca d'exemple 2",
"Example Task 1" : "Tasca d'exemple 1",
"The file was uploaded" : "S'ha pujat el fitxer",
"The file was uploaded" : "S'ha carregat el fitxer",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El fitxer carregat excedeix la directiva upload_max_filesize dins de php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El fitxer carregat excedeix la directiva MAX_FILE_SIZE que hi ha especificada al formulari d'HTML",
"The file was only partially uploaded" : "El fitxer s'ha carregat només parcialment",
"No file was uploaded" : "No s'ha pujat cap fitxer",
"No file was uploaded" : "No s'ha carregat cap fitxer",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No sha pogut escriure el fitxer al disc",
"A PHP extension stopped the file upload" : "Una extensió del PHP ha aturat la carregada del fitxer",
"No file uploaded or file size exceeds maximum of %s" : "No s'ha carregat cap fitxer o la mida del fitxer sobrepassa el màxim de %s",
"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 markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu 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",
"Card details" : "Dades de la targeta",
"Add board" : "Afegeix una taula",
"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",
"Select board" : "Selecciona un tauler",
"Select a board" : "Selecciona un tauler",
"Select a list" : "Seleccioneu una llista",
"Cancel" : "Cancel·la",
"Select a card" : "Selecciona una targeta",
"Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte",
"Select a board" : "Selecciona un tauler",
"Select a card" : "Selecciona una targeta",
"Link to card" : "Enllaç a la targeta",
"Cancel" : "Cancel·la",
"File already exists" : "El fitxer ja existeix",
"A file with the name {filename} already exists." : "Ja existeix un fitxer amb el nom {filename}.",
"Do you want to overwrite it?" : "Voleu sobre-escriure'l?",
@@ -117,7 +116,7 @@
"Drop your files to upload" : "Deixeu anar els fitxers per penjar-los",
"Archived cards" : "Targetes arxivades",
"Add list" : "Afegeix una llista",
"List name" : "Nom de la llista",
"List name" : "Nom de llista",
"Apply filter" : "Aplica el filtre",
"Filter by tag" : "Filtra per etiqueta",
"Filter by assigned user" : "Filtra per usuari assignat",
@@ -125,16 +124,16 @@
"Filter by due date" : "Filtra per data de venciment",
"Overdue" : "Endarrerit",
"Next 24 hours" : "Pròximes 24 hores",
"Next 7 days" : "Pròxims 7 dies",
"Next 30 days" : "Pròxims 30 dies",
"Next 7 days" : "Propers 7 dies",
"Next 30 days" : "Propers 30 dies",
"No due date" : "Sense venciment",
"Clear filter" : "Esborra el filtre",
"Clear filter" : "Neteja el filtre",
"Hide archived cards" : "Amaga les targetes arxivades",
"Show archived cards" : "Mostra les targetes arxivades",
"Toggle compact mode" : "Commuta el mode compacte",
"Details" : "Detalls",
"Loading board" : "S'està carregant el tauler",
"No lists available" : "No hi ha cap llista disponible",
"Loading board" : "Carregant tauler",
"No lists available" : "Cap llista disponible",
"Create a new list to add cards to this board" : "Crea una llista nova per afegir targetes a aquest tauler",
"Board not found" : "Tauler no trobat",
"Sharing" : "Compartició",
@@ -166,8 +165,9 @@
"Edit" : "Edita",
"Add a new tag" : "Afegir una etiqueta nova",
"title and color value must be provided" : "sha de proporcionar el valor del títol i del color",
"Board name" : "Nom del taulell",
"Title" : "Títol",
"Members" : "Membres",
"Upload attachment" : "Carrega l'adjunt",
"Add this attachment" : "Afegeix aquest adjunt",
"Delete Attachment" : "Suprimeix ladjunt",
"Restore Attachment" : "Restaura l'adjunt",
@@ -200,7 +200,6 @@
"Edit description" : "Edita descripció",
"View description" : "Veure descripció",
"Add Attachment" : "Afegeix un adjunt",
"Write a description …" : "Escriviu una descripció...",
"Choose attachment" : "Triar adjunt",
"(group)" : "(grup)",
"(circle)" : "(cercle)",
@@ -211,44 +210,45 @@
"Archive card" : "Arxiva la targeta",
"Delete card" : "Suprimeix targeta",
"Move card to another board" : "Mou la targeta a un altre tauler",
"Select a list" : "Seleccioneu una llista",
"Card deleted" : "Targeta suprimida",
"seconds ago" : "fa uns segons",
"All boards" : "Tots els taulers",
"Archived boards" : "Taulers arxivats",
"Shared with you" : "Us han compartit",
"Use bigger card view" : "Utilitza la visualització de targetes més gran",
"Use modal card view" : "Utilitza la visualització de targetes modals",
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
"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.",
"Board name" : "Nom del taulell",
"Board details" : "Detalls de la junta",
"Edit board" : "Edita el tauler",
"Clone board" : "Clonar tauler",
"Unarchive board" : "Desarxiva el tauler",
"Archive board" : "Arxiva el tauler",
"Turn on due date reminders" : "Activa els recordatoris de data de venciment",
"Turn off due date reminders" : "Desactiva els recordatoris de data de venciment",
"Due date reminders" : "Recordatoris de data de venciment",
"Turn on due date reminders" : "Activa el recordatori de data de caducitat",
"Turn off due date reminders" : "Desactiva el recordatori de data de caducitat",
"Due date reminders" : "Recordatori de data de caducitat",
"All cards" : "Totes les targetes",
"Assigned cards" : "Targetes assignades",
"No notifications" : "No hi ha notificacions",
"Delete board" : "Suprimeix el tauler",
"Board {0} deleted" : "Sha suprimit el tauler {0}",
"Only assigned cards" : "Només les targetes assignades",
"Only assigned cards" : "Només targetes assignades",
"No reminder" : "Sense recordatoris",
"An error occurred" : "S'ha produït un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
"Delete the board?" : "Voleu suprimir el tauler?",
"Delete the board?" : "Suprimir el tauler?",
"Loading filtered view" : "S'està carregant la visualització filtrada",
"Today" : "Avui",
"Tomorrow" : "Demà",
"This week" : "Aquesta setmana",
"No due" : "Sense venciment",
"No upcoming cards" : "No hi ha pròximes targetes",
"upcoming cards" : "pròximes targetes",
"No upcoming cards" : "No hi ha targetes futures",
"upcoming cards" : "properes targetes",
"Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta",
"Something went wrong" : "Alguna cosa ha anat malament",
"Failed to upload {name}" : "No s'ha pogut pujar {name}",
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -28,7 +28,7 @@ OC.L10N.register(
"You have deleted card {card} in list {stack} on board {board}" : "Smazali jste kartu {card} ve sloupci {stack} na tabuli {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} smazal(a) kartu {card} ve sloupci {board} na tabuli {board}",
"You have renamed the card {before} to {card}" : "Přejmenovali jste kartu {before} na {card}",
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) kartu {before} na {card}",
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) {before} na {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Přidali jste popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "Aktualizovali jste popis karty {card} ve sloupci {stack} na tabuli {board}",
@@ -73,7 +73,7 @@ OC.L10N.register(
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.",
"The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.",
"%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.",
"{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři k „%s“.",
"{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.",
"The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.",
"{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.",
"No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.",
@@ -97,9 +97,6 @@ OC.L10N.register(
"Could not write file to disk" : "Soubor se nedaří se zapsat na úložiště",
"A PHP extension stopped the file upload" : "PHP rozšíření zastavilo nahrávání souboru.",
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s",
"Card not found" : "Karta nebyla nalezena",
"Path is already shared with this card" : "Cesta je již s touto kartou sdílena",
"Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum, formát data musí být RRRR-MM-DD",
"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, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
"Card details" : "Podrobnosti o kartě",
@@ -107,19 +104,11 @@ OC.L10N.register(
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem",
"Search by board title" : "Hledat podle názvu tabule",
"Select board" : "Vybrat tabuli",
"Create a new card" : "Vytvořit novou kartu",
"Select a board" : "Vybrat tabuli",
"Select a list" : "Vyberte sloupec",
"Card title" : "Název karty",
"Cancel" : "Storno",
"Creating the new card…" : "Vytváření nové karty…",
"\"{card}\" was added to \"{board}\"" : "„{card}“ bylo přidáno do „{board}“",
"Open card" : "Otevřít kartu",
"Close" : "Zavřít",
"Create card" : "Vytvořit kartu",
"Select a card" : "Vybrat kartu",
"Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem",
"Select a board" : "Vybrat tabuli",
"Select a card" : "Vybrat tabuli",
"Link to card" : "Propojit s kartou",
"Cancel" : "Storno",
"File already exists" : "Soubor už existuje",
"A file with the name {filename} already exists." : "Soubor nazvaný {filename} už existuje.",
"Do you want to overwrite it?" : "Chcete položku přepsat?",
@@ -178,17 +167,12 @@ OC.L10N.register(
"Edit" : "Upravit",
"Add a new tag" : "Přidat nový štítek",
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
"Board name" : "Název tabule",
"Title" : "Nadpis",
"Members" : "Členové",
"Upload new files" : "Nahrát nové soubory",
"Share from Files" : "Sdílet ze Souborů",
"Upload attachment" : "Nahrát přílohu",
"Add this attachment" : "Přidat tuto přílohu",
"Show in Files" : "Zobrazit v Souborech",
"Unshare file" : "Přestat sdílet soubor",
"Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu",
"File to share" : "Soubor ke sdílení",
"Invalid path selected" : "Je vybrána neplatná cesta",
"Open in sidebar view" : "Otevřít v zobrazení v postranním panelu",
"Open in bigger view" : "Otevřít ve větším zobrazení",
"Attachments" : "Přílohy",
@@ -206,7 +190,7 @@ OC.L10N.register(
"Remove due date" : "Odstranit termín",
"Select Date" : "Vybrat datum",
"Save" : "Uložit",
"The comment cannot be empty." : "Komentář je třeba vyplnit.",
"The comment cannot be empty." : "Komentář je třeba vyplnit",
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
"In reply to" : "V odpověď na",
"Reply" : "Odpovědět",
@@ -218,7 +202,6 @@ OC.L10N.register(
"Edit description" : "Upravit popis",
"View description" : "Zobrazit popis",
"Add Attachment" : "Přidat přílohu",
"Write a description …" : "Zadejte popis…",
"Choose attachment" : "Zvolte přílohu",
"(group)" : "(skupina)",
"(circle)" : "(okruh)",
@@ -229,30 +212,20 @@ OC.L10N.register(
"Archive card" : "Archivovat kartu",
"Delete card" : "Smazat kartu",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Select a list" : "Vyberte sloupec",
"Card deleted" : "Karta smazána",
"seconds ago" : "před několika sekundami",
"All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule",
"Shared with you" : "Sdíleno s vámi",
"Use bigger card view" : "Použít větší zobrazení karet",
"Use modal card view" : "Použít modální zobrazení karty",
"Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech",
"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.",
"Board details" : "Podrobnosti o tabuli",
"Board name" : "Název tabule",
"Board details" : "Podrobnosti o desce",
"Edit board" : "Upravit tabuli",
"Clone board" : "Klonovat tabuli",
"Unarchive board" : "Vrátit tabuli zpět z archivu",
"Archive board" : "Archivovat tabuli",
"Turn on due date reminders" : "Zapnout upomínky termínů",
"Turn off due date reminders" : "Vypnout upomínky termínů",
"Due date reminders" : "Upomínky termínů",
"All cards" : "Všechny karty",
"Assigned cards" : "Přiřazené karty",
"No notifications" : "Žádná upozornění",
"Delete board" : "Smazat tabuli",
"Board {0} deleted" : "Tabule {0} smazána",
"Only assigned cards" : "Pouze přiřazené karty",
"No reminder" : "Bez připomínky",
"An error occurred" : "Došlo k chybě",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
"Delete the board?" : "Smazat tabuli?",
@@ -265,14 +238,7 @@ OC.L10N.register(
"upcoming cards" : "nadcházející karty",
"Link to a board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou",
"Create a card" : "Vytvořit kartu",
"Message from {author} in {conversationName}" : "Zpráva od {author} v {conversationName}",
"Something went wrong" : "Něco se pokazilo",
"Failed to upload {name}" : "Nepodařilo se nahrát {name}",
"Maximum file size of {size} exceeded" : "Překročena nejvyšší umožněná velikost souboru {size}",
"Error creating the share" : "Chyba při vytváření sdílení",
"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" : "Sdílet"
"Maximum file size of {size} exceeded" : "Překročena nejvyšší umožněná velikost souboru {size}"
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");

View File

@@ -26,7 +26,7 @@
"You have deleted card {card} in list {stack} on board {board}" : "Smazali jste kartu {card} ve sloupci {stack} na tabuli {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} smazal(a) kartu {card} ve sloupci {board} na tabuli {board}",
"You have renamed the card {before} to {card}" : "Přejmenovali jste kartu {before} na {card}",
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) kartu {before} na {card}",
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) {before} na {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Přidali jste popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "Aktualizovali jste popis karty {card} ve sloupci {stack} na tabuli {board}",
@@ -71,7 +71,7 @@
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.",
"The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.",
"%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.",
"{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři k „%s“.",
"{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.",
"The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.",
"{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.",
"No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.",
@@ -95,9 +95,6 @@
"Could not write file to disk" : "Soubor se nedaří se zapsat na úložiště",
"A PHP extension stopped the file upload" : "PHP rozšíření zastavilo nahrávání souboru.",
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s",
"Card not found" : "Karta nebyla nalezena",
"Path is already shared with this card" : "Cesta je již s touto kartou sdílena",
"Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum, formát data musí být RRRR-MM-DD",
"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, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
"Card details" : "Podrobnosti o kartě",
@@ -105,19 +102,11 @@
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem",
"Search by board title" : "Hledat podle názvu tabule",
"Select board" : "Vybrat tabuli",
"Create a new card" : "Vytvořit novou kartu",
"Select a board" : "Vybrat tabuli",
"Select a list" : "Vyberte sloupec",
"Card title" : "Název karty",
"Cancel" : "Storno",
"Creating the new card…" : "Vytváření nové karty…",
"\"{card}\" was added to \"{board}\"" : "„{card}“ bylo přidáno do „{board}“",
"Open card" : "Otevřít kartu",
"Close" : "Zavřít",
"Create card" : "Vytvořit kartu",
"Select a card" : "Vybrat kartu",
"Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem",
"Select a board" : "Vybrat tabuli",
"Select a card" : "Vybrat tabuli",
"Link to card" : "Propojit s kartou",
"Cancel" : "Storno",
"File already exists" : "Soubor už existuje",
"A file with the name {filename} already exists." : "Soubor nazvaný {filename} už existuje.",
"Do you want to overwrite it?" : "Chcete položku přepsat?",
@@ -176,17 +165,12 @@
"Edit" : "Upravit",
"Add a new tag" : "Přidat nový štítek",
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
"Board name" : "Název tabule",
"Title" : "Nadpis",
"Members" : "Členové",
"Upload new files" : "Nahrát nové soubory",
"Share from Files" : "Sdílet ze Souborů",
"Upload attachment" : "Nahrát přílohu",
"Add this attachment" : "Přidat tuto přílohu",
"Show in Files" : "Zobrazit v Souborech",
"Unshare file" : "Přestat sdílet soubor",
"Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu",
"File to share" : "Soubor ke sdílení",
"Invalid path selected" : "Je vybrána neplatná cesta",
"Open in sidebar view" : "Otevřít v zobrazení v postranním panelu",
"Open in bigger view" : "Otevřít ve větším zobrazení",
"Attachments" : "Přílohy",
@@ -204,7 +188,7 @@
"Remove due date" : "Odstranit termín",
"Select Date" : "Vybrat datum",
"Save" : "Uložit",
"The comment cannot be empty." : "Komentář je třeba vyplnit.",
"The comment cannot be empty." : "Komentář je třeba vyplnit",
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
"In reply to" : "V odpověď na",
"Reply" : "Odpovědět",
@@ -216,7 +200,6 @@
"Edit description" : "Upravit popis",
"View description" : "Zobrazit popis",
"Add Attachment" : "Přidat přílohu",
"Write a description …" : "Zadejte popis…",
"Choose attachment" : "Zvolte přílohu",
"(group)" : "(skupina)",
"(circle)" : "(okruh)",
@@ -227,30 +210,20 @@
"Archive card" : "Archivovat kartu",
"Delete card" : "Smazat kartu",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Select a list" : "Vyberte sloupec",
"Card deleted" : "Karta smazána",
"seconds ago" : "před několika sekundami",
"All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule",
"Shared with you" : "Sdíleno s vámi",
"Use bigger card view" : "Použít větší zobrazení karet",
"Use modal card view" : "Použít modální zobrazení karty",
"Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech",
"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.",
"Board details" : "Podrobnosti o tabuli",
"Board name" : "Název tabule",
"Board details" : "Podrobnosti o desce",
"Edit board" : "Upravit tabuli",
"Clone board" : "Klonovat tabuli",
"Unarchive board" : "Vrátit tabuli zpět z archivu",
"Archive board" : "Archivovat tabuli",
"Turn on due date reminders" : "Zapnout upomínky termínů",
"Turn off due date reminders" : "Vypnout upomínky termínů",
"Due date reminders" : "Upomínky termínů",
"All cards" : "Všechny karty",
"Assigned cards" : "Přiřazené karty",
"No notifications" : "Žádná upozornění",
"Delete board" : "Smazat tabuli",
"Board {0} deleted" : "Tabule {0} smazána",
"Only assigned cards" : "Pouze přiřazené karty",
"No reminder" : "Bez připomínky",
"An error occurred" : "Došlo k chybě",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
"Delete the board?" : "Smazat tabuli?",
@@ -263,14 +236,7 @@
"upcoming cards" : "nadcházející karty",
"Link to a board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou",
"Create a card" : "Vytvořit kartu",
"Message from {author} in {conversationName}" : "Zpráva od {author} v {conversationName}",
"Something went wrong" : "Něco se pokazilo",
"Failed to upload {name}" : "Nepodařilo se nahrát {name}",
"Maximum file size of {size} exceeded" : "Překročena nejvyšší umožněná velikost souboru {size}",
"Error creating the share" : "Chyba při vytváření sdílení",
"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" : "Sdílet"
"Maximum file size of {size} exceeded" : "Překročena nejvyšší umožněná velikost souboru {size}"
},"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

@@ -14,6 +14,8 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Dileu",
"Edit" : "Golygu",
"Title" : "Teitl",
"Upload attachment" : "Llwytho atodiad",
"Modified" : "Addaswyd",
"Select Date" : "Dewis Dyddiad",
"Save" : "Cadw",

View File

@@ -12,6 +12,8 @@
"Can share" : "Can share",
"Delete" : "Dileu",
"Edit" : "Golygu",
"Title" : "Teitl",
"Upload attachment" : "Llwytho atodiad",
"Modified" : "Addaswyd",
"Select Date" : "Dewis Dyddiad",
"Save" : "Cadw",

View File

@@ -1,232 +1,66 @@
OC.L10N.register(
"deck",
{
"You have created a new board {board}" : "Du har oprettet en ny tavle {board}",
"{user} has created a new board {board}" : "{user} har oprettet en ny tavle {board}",
"You have deleted the board {board}" : "Du har slettet tavlen {board}",
"{user} has deleted the board {board}" : "{user} har slettet tavlen {board}",
"You have restored the board {board}" : "Du har genskabt tavlen {board}",
"{user} has restored the board {board}" : "{user} har genskabt tablen {board}",
"You have shared the board {board} with {acl}" : "Du har delt tavlen {board} med {acl}",
"{user} has shared the board {board} with {acl}" : "{user} har delt tavlen {board} med {acl}",
"You have removed {acl} from the board {board}" : "Du har fjernet {acl} fra tavlen {board}",
"{user} has removed {acl} from the board {board}" : "{user} har fjernet {acl} fra tavlen {board}",
"You have renamed the board {before} to {board}" : "Du har omdøbt tavlen {before} til {board}",
"{user} has renamed the board {before} to {board}" : "{suer} har omdøbt tavlen {before} til {board}",
"You have archived the board {board}" : "Du har arkiveret tavlen {board}",
"{user} has archived the board {before}" : "{user} har arkiveret tavlen {before}",
"You have unarchived the board {board}" : "Du har genskabt tavlen {board}",
"{user} has unarchived the board {before}" : "{user} har genskabt tavlen {before}",
"You have created a new list {stack} on board {board}" : "Du har oprettet en ny liste {stack} på tavlen {board}",
"{user} has created a new list {stack} on board {board}" : "{user} har oprettet en ny kolonne {stack} på tavlen {board}",
"You have renamed list {before} to {stack} on board {board}" : "Du har omdøbt kolonnen {before} til {stack} på tavlen {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} har omdøbt kolonnen{before} til {stack} på tavlen {board}",
"You have deleted list {stack} on board {board}" : "Du har slettet kolonnen {stack} på tavlen {board}",
"{user} has deleted list {stack} on board {board}" : "{user} har slettet kolonnen {stack} på tavlen {board}",
"You have created card {card} in list {stack} on board {board}" : "Du har oprettet kortet {card} i kolonnen {stack} på tavlen {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} har oprettet kortet {card} i kolonnen {stack} på tavlen {board}",
"You have deleted card {card} in list {stack} on board {board}" : "Du har slettet kortet {card} i listen {stack} på tavlen {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} har slettet kortet {card} i listen {stack} på tavlen {board}",
"You have renamed the card {before} to {card}" : "Du har omdøbt kortet {before} til {card}",
"{user} has renamed the card {before} to {card}" : "{user} har omdøbt kortet {before} til {card}",
"Deck" : "Deck",
"Upcoming cards" : "Kommende kort",
"Personal" : "Personligt",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortet \"%s\" på \"%s\" er blevet tildelt dig af %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} har tildelt dig kortet \"%s\" på \"%s\" t il dig.",
"The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nået sin forfaldsdato.",
"%s has mentioned you in a comment on \"%s\"." : " %s har nævnt dig i en kommentar på \"%s\".",
"{user} has mentioned you in a comment on \"%s\"." : "{user} har nævnt dig i en kommentar på \"%s\".",
"The board \"%s\" has been shared with you by %s." : "Tavlen \"%s\" er blevet delt med dig af %s.",
"{user} has shared the board %s with you." : "{user} har delt tavlen %s med dig.",
"No data was provided to create an attachment." : "Ingen data blev givet som kunne vedhæftes",
"Personal" : "Personlig",
"The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nået sin udløbsdato.",
"The board \"%s\" has been shared with you by %s." : "Brættet \"%s\" er blevet delt med dig af %s.",
"{user} has shared the board %s with you." : "{user} har delt brættet %s med dig.",
"Finished" : "Færdiggjort",
"To review" : "Til gennemgang",
"To review" : "Gennemse",
"Action needed" : "Handling påkrævet",
"Later" : "Senere",
"copy" : "kopiér",
"To do" : "To do",
"Doing" : "Igang",
"Done" : "Afsluttet",
"Example Task 3" : "Eksempel opgave 3",
"Example Task 2" : "Eksempel opgave 2",
"Example Task 1" : "Eksempel opgave 1",
"The file was uploaded" : "Filen blev uploadet",
"Done" : "Færdig",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen",
"The file was only partially uploaded" : "Filen blev kun delvist uploadet.",
"No file was uploaded" : "Ingen fil uploadet",
"Missing a temporary folder" : "Manglende midlertidig mappe.",
"Could not write file to disk" : "Kunne ikke gemme filen",
"A PHP extension stopped the file upload" : "En PHP udvidelse stoppede fil uploaden.",
"No file uploaded or file size exceeds maximum of %s" : "Ingen fil blev uploadet eller fil størrelsen er større end det maksimale: %s.",
"Card not found" : "Kort ikke fundet.",
"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",
"Personal planning and team project organization" : "Personlig planlægning og organisering af team projekter",
"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 er et kanban inspireret organisations værktøj rettet mod personlig planlægning og projekt organisering for teams integreret med Nextcloud.\n\n\n- 📥 Tilføj dine opgaver til kort og organisér dem\n- 📄 Tilføj noter til dine opgaver i markdown\n- 🔖 Tilføj mærkater for endnu bedre organisering\n- 👥 Del med dit team, dine venner eller familie\n- 📎 Vedhæft filer og indfør dem i din markdown beskrivelse\n- 💬 Diskutér med dit team ved hjælp af kommentarer\n- ⚡ Hold øje med ændringer i aktivitets strømmen\n- 🚀 Få dit projekt organiseret!",
"Card details" : "Kort detaljer",
"Add board" : "Tilføj tavle",
"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",
"Select board" : "Vælg tavle",
"Select a board" : "Vælg én tavle",
"Select a list" : "Vælg en kolonne",
"Add board" : "Tilføj liste",
"Cancel" : "Annullér",
"Select a card" : "Vælg et kort",
"Select the card to link to a project" : "Vælg et kort at linke til et projekt",
"Link to card" : "Link til kort",
"File already exists" : "Filen findes allerede",
"A file with the name {filename} already exists." : "En fil med navnet {filename} already exists.",
"Do you want to overwrite it?" : "Vil du overskrive?",
"Overwrite file" : "Overskriv fil",
"Keep existing file" : "Behold den eksisterende fil",
"This board is read only" : "Denne tavle er skrivebeskyttet",
"Drop your files to upload" : "Slip dine filer for at uploade",
"Archived cards" : "Arkiverede kort",
"Add list" : "Tilføj kolonne",
"List name" : "Kolonne navn",
"Apply filter" : "Aktivér filter",
"Filter by tag" : "Filtrer vha. mærkat",
"Filter by assigned user" : "Filtrer vha. tildelt bruger",
"Unassigned" : "Ikke tildelt",
"Filter by due date" : "Filtrer vha. forfaldsdato",
"Overdue" : "Overskredet",
"Next 24 hours" : "De næste 24 timer",
"Next 7 days" : "De næste 7 dage",
"Next 30 days" : "De næste 30 dage",
"No due date" : "Ingen forfaldsdato",
"Clear filter" : "Ryd filter",
"File already exists" : "Fil findes allerede",
"Do you want to overwrite it?" : "Vil du overskrive den?",
"Drop your files to upload" : "Drop dine filer for at uploade",
"Add list" : "Tilføj liste",
"Hide archived cards" : "Skjul arkiverede kort",
"Show archived cards" : "Vis arkiverede kort",
"Toggle compact mode" : "Slå kompakt tilstand til/fra",
"Details" : "Detaljer",
"Loading board" : "Indlæser tavle",
"No lists available" : "Ingen kolonner tilgængelige",
"Create a new list to add cards to this board" : "Opret en ny kolonne for at tilføje kort til denne tavle ",
"Board not found" : "Tavle ikke fundet.",
"Sharing" : "Deling",
"Tags" : "Mærkat",
"Deleted items" : "Slettede objekter",
"Timeline" : "Tidslinje",
"Deleted lists" : "Slettede kolonner",
"Undo" : "Fortryd",
"Deleted cards" : "Sletttede kort",
"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 ...",
"No participants found" : "Ingen deltagere fundet",
"Board owner" : "Ejer af tavlen",
"(Group)" : "(Gruppe)",
"(Circle)" : "(Cirkel)",
"Can edit" : "Kan redigere",
"Can edit" : "Can edit",
"Can share" : "Kan dele",
"Can manage" : "Kan administrere",
"Delete" : "Slet",
"Failed to create share with {displayName}" : "Oprettelse af delt drev med {displayName} fejlede",
"Add a new list" : "Tilføj en ny kolonne",
"Archive all cards" : "Arkivér alle kort",
"Delete list" : "Slet liste",
"Add card" : "Tilføj kort",
"Archive all cards in this list" : "Arkivér alle kort i denne kolonne",
"Add a new card" : "Tilføj et nyt kort",
"Card name" : "Kort navn",
"List deleted" : "Kolonne slettet",
"Edit" : "Redigér",
"Add a new tag" : "Opret et nyt mærkat",
"title and color value must be provided" : "Titel og farve skal angives.",
"Board name" : "Tavle navn",
"Title" : "Titel",
"Members" : "Medlemmer",
"Upload new files" : "Upload nye filer",
"Share from Files" : "Del fra Filer",
"Add this attachment" : "Tilføj denne vedhæftning",
"Show in Files" : "Vis i Filer",
"Unshare file" : "Stop deling af fil",
"Delete Attachment" : "Slet vedhæftning",
"Restore Attachment" : "Genskab vedhæftning",
"File to share" : "Vælg fil til deling",
"Invalid path selected" : "Ugyldig sti valgt.",
"Open in sidebar view" : "Åben i sidekolonne",
"Open in bigger view" : "Åben i større visning",
"Upload attachment" : "Upload vedhæftning",
"Attachments" : "Vedhæftede filer",
"Comments" : "Kommentarer",
"Modified" : "Ændret",
"Created" : "Oprettet",
"The title cannot be empty." : "Titlen kan ikke være tom",
"No comments yet. Begin the discussion!" : "Ingen kommentarer endnu. Begynd diskussionen!",
"Assign a tag to this card…" : "Tilføj et mærkat til dette kort ...",
"Assign to users" : "Tildel til brugere",
"Assign to users/groups/circles" : "Tildel til brugere/grupper/cirkler",
"Assign a user to this card…" : "Tildel en bruger til dette kort",
"Due date" : "Forfaldsdato",
"Set a due date" : "Sæt en forfaldsdato",
"Remove due date" : "Fjern forfaldsdato",
"Select Date" : "Vælg dato",
"Save" : "Gem",
"The comment cannot be empty." : "Kommentaren kan ikke være tom.",
"The comment cannot be longer than 1000 characters." : "Kommentaren kan ikke være længere end 1000 tegn.",
"In reply to" : "som svar til",
"Reply" : "Besvar",
"Update" : "Opdatér",
"Description" : "Beskrivelse",
"(Unsaved)" : "(Ikke gemt)",
"(Saving…)" : "(Gemmer...)",
"Formatting help" : "Hjælp til formatering",
"Edit description" : "Redigér beskrivelse",
"View description" : "Se beskrivelse",
"Add Attachment" : "Tilføj vedhæftning",
"Write a description …" : "Tilføj en beskrivelse...",
"Choose attachment" : "Vælg en vedhæftning",
"(group)" : "(gruppe)",
"(circle)" : "(cirkel)",
"Assign to me" : "Tildel til mig",
"Unassign myself" : "Fjern mig selv",
"Move card" : "Flyt kort",
"Unarchive card" : "Gen-aktivér kort",
"Archive card" : "Arkivér kort",
"Delete card" : "Slet kort",
"Move card to another board" : "Flyt kort til en anden tavle",
"Card deleted" : "Kort slettet",
"seconds ago" : "sekunder siden",
"All boards" : "Alle tavler",
"Archived boards" : "Arkiverede lister",
"Shared with you" : "Shared with you",
"Use bigger card view" : "Brug større kort visning",
"Show boards in calendar/tasks" : "Vis tavler i kalender/opgaver",
"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. ",
"Board details" : "Liste detaljer",
"Edit board" : "Rediger liste",
"Clone board" : "Klon tavle",
"Unarchive board" : "Gen-aktivér tavle",
"Archive board" : "Arkivér tavle",
"Turn on due date reminders" : "Aktivér påmindelser om forfaldsdatoer",
"Turn off due date reminders" : "Slå påmindelser om forfaldsdatoer fra",
"Due date reminders" : "Påmindelser om forfaldsdatoer",
"All cards" : "Alle kort",
"Assigned cards" : "Tildelte kort",
"No notifications" : "Ingen notifikationer",
"Delete board" : "Slet tavle",
"Board {0} deleted" : "Tavle {0} er slettet",
"Only assigned cards" : "Kun tildelte kort",
"No reminder" : "Ingen påmindelse",
"An error occurred" : "Der var en fejl",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Er du sikker på du vil slette tavlen {title}? Dette vil slette alt data på tavlen.",
"Delete the board?" : "Slet tavlen?",
"Loading filtered view" : "Indlæser filtreret visning",
"Today" : "I dag",
"Tomorrow" : "I morgen",
"This week" : "Denne uge",
"No due" : "Ikke forfalden",
"No upcoming cards" : "Ingen kommende kort",
"upcoming cards" : "kommende kort",
"Link to a board" : "Link til tavle",
"Link to a card" : "Link til et kort",
"Something went wrong" : "Noget gik galt",
"Failed to upload {name}" : "Kunne ikke uploade {name}",
"Maximum file size of {size} exceeded" : "Maksimal fil størrelse {size} overskredet",
"Error creating the share" : "Fejl ved skabelse af delt drev",
"Share with a Deck card" : "Del med et Deck kort",
"Share {file} with a Deck card" : "Del {file} med et Deck kort",
"Share" : "Del"
"This week" : "Denne uge"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -1,230 +1,64 @@
{ "translations": {
"You have created a new board {board}" : "Du har oprettet en ny tavle {board}",
"{user} has created a new board {board}" : "{user} har oprettet en ny tavle {board}",
"You have deleted the board {board}" : "Du har slettet tavlen {board}",
"{user} has deleted the board {board}" : "{user} har slettet tavlen {board}",
"You have restored the board {board}" : "Du har genskabt tavlen {board}",
"{user} has restored the board {board}" : "{user} har genskabt tablen {board}",
"You have shared the board {board} with {acl}" : "Du har delt tavlen {board} med {acl}",
"{user} has shared the board {board} with {acl}" : "{user} har delt tavlen {board} med {acl}",
"You have removed {acl} from the board {board}" : "Du har fjernet {acl} fra tavlen {board}",
"{user} has removed {acl} from the board {board}" : "{user} har fjernet {acl} fra tavlen {board}",
"You have renamed the board {before} to {board}" : "Du har omdøbt tavlen {before} til {board}",
"{user} has renamed the board {before} to {board}" : "{suer} har omdøbt tavlen {before} til {board}",
"You have archived the board {board}" : "Du har arkiveret tavlen {board}",
"{user} has archived the board {before}" : "{user} har arkiveret tavlen {before}",
"You have unarchived the board {board}" : "Du har genskabt tavlen {board}",
"{user} has unarchived the board {before}" : "{user} har genskabt tavlen {before}",
"You have created a new list {stack} on board {board}" : "Du har oprettet en ny liste {stack} på tavlen {board}",
"{user} has created a new list {stack} on board {board}" : "{user} har oprettet en ny kolonne {stack} på tavlen {board}",
"You have renamed list {before} to {stack} on board {board}" : "Du har omdøbt kolonnen {before} til {stack} på tavlen {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} har omdøbt kolonnen{before} til {stack} på tavlen {board}",
"You have deleted list {stack} on board {board}" : "Du har slettet kolonnen {stack} på tavlen {board}",
"{user} has deleted list {stack} on board {board}" : "{user} har slettet kolonnen {stack} på tavlen {board}",
"You have created card {card} in list {stack} on board {board}" : "Du har oprettet kortet {card} i kolonnen {stack} på tavlen {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} har oprettet kortet {card} i kolonnen {stack} på tavlen {board}",
"You have deleted card {card} in list {stack} on board {board}" : "Du har slettet kortet {card} i listen {stack} på tavlen {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} har slettet kortet {card} i listen {stack} på tavlen {board}",
"You have renamed the card {before} to {card}" : "Du har omdøbt kortet {before} til {card}",
"{user} has renamed the card {before} to {card}" : "{user} har omdøbt kortet {before} til {card}",
"Deck" : "Deck",
"Upcoming cards" : "Kommende kort",
"Personal" : "Personligt",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortet \"%s\" på \"%s\" er blevet tildelt dig af %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} har tildelt dig kortet \"%s\" på \"%s\" t il dig.",
"The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nået sin forfaldsdato.",
"%s has mentioned you in a comment on \"%s\"." : " %s har nævnt dig i en kommentar på \"%s\".",
"{user} has mentioned you in a comment on \"%s\"." : "{user} har nævnt dig i en kommentar på \"%s\".",
"The board \"%s\" has been shared with you by %s." : "Tavlen \"%s\" er blevet delt med dig af %s.",
"{user} has shared the board %s with you." : "{user} har delt tavlen %s med dig.",
"No data was provided to create an attachment." : "Ingen data blev givet som kunne vedhæftes",
"Personal" : "Personlig",
"The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nået sin udløbsdato.",
"The board \"%s\" has been shared with you by %s." : "Brættet \"%s\" er blevet delt med dig af %s.",
"{user} has shared the board %s with you." : "{user} har delt brættet %s med dig.",
"Finished" : "Færdiggjort",
"To review" : "Til gennemgang",
"To review" : "Gennemse",
"Action needed" : "Handling påkrævet",
"Later" : "Senere",
"copy" : "kopiér",
"To do" : "To do",
"Doing" : "Igang",
"Done" : "Afsluttet",
"Example Task 3" : "Eksempel opgave 3",
"Example Task 2" : "Eksempel opgave 2",
"Example Task 1" : "Eksempel opgave 1",
"The file was uploaded" : "Filen blev uploadet",
"Done" : "Færdig",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen",
"The file was only partially uploaded" : "Filen blev kun delvist uploadet.",
"No file was uploaded" : "Ingen fil uploadet",
"Missing a temporary folder" : "Manglende midlertidig mappe.",
"Could not write file to disk" : "Kunne ikke gemme filen",
"A PHP extension stopped the file upload" : "En PHP udvidelse stoppede fil uploaden.",
"No file uploaded or file size exceeds maximum of %s" : "Ingen fil blev uploadet eller fil størrelsen er større end det maksimale: %s.",
"Card not found" : "Kort ikke fundet.",
"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",
"Personal planning and team project organization" : "Personlig planlægning og organisering af team projekter",
"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 er et kanban inspireret organisations værktøj rettet mod personlig planlægning og projekt organisering for teams integreret med Nextcloud.\n\n\n- 📥 Tilføj dine opgaver til kort og organisér dem\n- 📄 Tilføj noter til dine opgaver i markdown\n- 🔖 Tilføj mærkater for endnu bedre organisering\n- 👥 Del med dit team, dine venner eller familie\n- 📎 Vedhæft filer og indfør dem i din markdown beskrivelse\n- 💬 Diskutér med dit team ved hjælp af kommentarer\n- ⚡ Hold øje med ændringer i aktivitets strømmen\n- 🚀 Få dit projekt organiseret!",
"Card details" : "Kort detaljer",
"Add board" : "Tilføj tavle",
"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",
"Select board" : "Vælg tavle",
"Select a board" : "Vælg én tavle",
"Select a list" : "Vælg en kolonne",
"Add board" : "Tilføj liste",
"Cancel" : "Annullér",
"Select a card" : "Vælg et kort",
"Select the card to link to a project" : "Vælg et kort at linke til et projekt",
"Link to card" : "Link til kort",
"File already exists" : "Filen findes allerede",
"A file with the name {filename} already exists." : "En fil med navnet {filename} already exists.",
"Do you want to overwrite it?" : "Vil du overskrive?",
"Overwrite file" : "Overskriv fil",
"Keep existing file" : "Behold den eksisterende fil",
"This board is read only" : "Denne tavle er skrivebeskyttet",
"Drop your files to upload" : "Slip dine filer for at uploade",
"Archived cards" : "Arkiverede kort",
"Add list" : "Tilføj kolonne",
"List name" : "Kolonne navn",
"Apply filter" : "Aktivér filter",
"Filter by tag" : "Filtrer vha. mærkat",
"Filter by assigned user" : "Filtrer vha. tildelt bruger",
"Unassigned" : "Ikke tildelt",
"Filter by due date" : "Filtrer vha. forfaldsdato",
"Overdue" : "Overskredet",
"Next 24 hours" : "De næste 24 timer",
"Next 7 days" : "De næste 7 dage",
"Next 30 days" : "De næste 30 dage",
"No due date" : "Ingen forfaldsdato",
"Clear filter" : "Ryd filter",
"File already exists" : "Fil findes allerede",
"Do you want to overwrite it?" : "Vil du overskrive den?",
"Drop your files to upload" : "Drop dine filer for at uploade",
"Add list" : "Tilføj liste",
"Hide archived cards" : "Skjul arkiverede kort",
"Show archived cards" : "Vis arkiverede kort",
"Toggle compact mode" : "Slå kompakt tilstand til/fra",
"Details" : "Detaljer",
"Loading board" : "Indlæser tavle",
"No lists available" : "Ingen kolonner tilgængelige",
"Create a new list to add cards to this board" : "Opret en ny kolonne for at tilføje kort til denne tavle ",
"Board not found" : "Tavle ikke fundet.",
"Sharing" : "Deling",
"Tags" : "Mærkat",
"Deleted items" : "Slettede objekter",
"Timeline" : "Tidslinje",
"Deleted lists" : "Slettede kolonner",
"Undo" : "Fortryd",
"Deleted cards" : "Sletttede kort",
"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 ...",
"No participants found" : "Ingen deltagere fundet",
"Board owner" : "Ejer af tavlen",
"(Group)" : "(Gruppe)",
"(Circle)" : "(Cirkel)",
"Can edit" : "Kan redigere",
"Can edit" : "Can edit",
"Can share" : "Kan dele",
"Can manage" : "Kan administrere",
"Delete" : "Slet",
"Failed to create share with {displayName}" : "Oprettelse af delt drev med {displayName} fejlede",
"Add a new list" : "Tilføj en ny kolonne",
"Archive all cards" : "Arkivér alle kort",
"Delete list" : "Slet liste",
"Add card" : "Tilføj kort",
"Archive all cards in this list" : "Arkivér alle kort i denne kolonne",
"Add a new card" : "Tilføj et nyt kort",
"Card name" : "Kort navn",
"List deleted" : "Kolonne slettet",
"Edit" : "Redigér",
"Add a new tag" : "Opret et nyt mærkat",
"title and color value must be provided" : "Titel og farve skal angives.",
"Board name" : "Tavle navn",
"Title" : "Titel",
"Members" : "Medlemmer",
"Upload new files" : "Upload nye filer",
"Share from Files" : "Del fra Filer",
"Add this attachment" : "Tilføj denne vedhæftning",
"Show in Files" : "Vis i Filer",
"Unshare file" : "Stop deling af fil",
"Delete Attachment" : "Slet vedhæftning",
"Restore Attachment" : "Genskab vedhæftning",
"File to share" : "Vælg fil til deling",
"Invalid path selected" : "Ugyldig sti valgt.",
"Open in sidebar view" : "Åben i sidekolonne",
"Open in bigger view" : "Åben i større visning",
"Upload attachment" : "Upload vedhæftning",
"Attachments" : "Vedhæftede filer",
"Comments" : "Kommentarer",
"Modified" : "Ændret",
"Created" : "Oprettet",
"The title cannot be empty." : "Titlen kan ikke være tom",
"No comments yet. Begin the discussion!" : "Ingen kommentarer endnu. Begynd diskussionen!",
"Assign a tag to this card…" : "Tilføj et mærkat til dette kort ...",
"Assign to users" : "Tildel til brugere",
"Assign to users/groups/circles" : "Tildel til brugere/grupper/cirkler",
"Assign a user to this card…" : "Tildel en bruger til dette kort",
"Due date" : "Forfaldsdato",
"Set a due date" : "Sæt en forfaldsdato",
"Remove due date" : "Fjern forfaldsdato",
"Select Date" : "Vælg dato",
"Save" : "Gem",
"The comment cannot be empty." : "Kommentaren kan ikke være tom.",
"The comment cannot be longer than 1000 characters." : "Kommentaren kan ikke være længere end 1000 tegn.",
"In reply to" : "som svar til",
"Reply" : "Besvar",
"Update" : "Opdatér",
"Description" : "Beskrivelse",
"(Unsaved)" : "(Ikke gemt)",
"(Saving…)" : "(Gemmer...)",
"Formatting help" : "Hjælp til formatering",
"Edit description" : "Redigér beskrivelse",
"View description" : "Se beskrivelse",
"Add Attachment" : "Tilføj vedhæftning",
"Write a description …" : "Tilføj en beskrivelse...",
"Choose attachment" : "Vælg en vedhæftning",
"(group)" : "(gruppe)",
"(circle)" : "(cirkel)",
"Assign to me" : "Tildel til mig",
"Unassign myself" : "Fjern mig selv",
"Move card" : "Flyt kort",
"Unarchive card" : "Gen-aktivér kort",
"Archive card" : "Arkivér kort",
"Delete card" : "Slet kort",
"Move card to another board" : "Flyt kort til en anden tavle",
"Card deleted" : "Kort slettet",
"seconds ago" : "sekunder siden",
"All boards" : "Alle tavler",
"Archived boards" : "Arkiverede lister",
"Shared with you" : "Shared with you",
"Use bigger card view" : "Brug større kort visning",
"Show boards in calendar/tasks" : "Vis tavler i kalender/opgaver",
"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. ",
"Board details" : "Liste detaljer",
"Edit board" : "Rediger liste",
"Clone board" : "Klon tavle",
"Unarchive board" : "Gen-aktivér tavle",
"Archive board" : "Arkivér tavle",
"Turn on due date reminders" : "Aktivér påmindelser om forfaldsdatoer",
"Turn off due date reminders" : "Slå påmindelser om forfaldsdatoer fra",
"Due date reminders" : "Påmindelser om forfaldsdatoer",
"All cards" : "Alle kort",
"Assigned cards" : "Tildelte kort",
"No notifications" : "Ingen notifikationer",
"Delete board" : "Slet tavle",
"Board {0} deleted" : "Tavle {0} er slettet",
"Only assigned cards" : "Kun tildelte kort",
"No reminder" : "Ingen påmindelse",
"An error occurred" : "Der var en fejl",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Er du sikker på du vil slette tavlen {title}? Dette vil slette alt data på tavlen.",
"Delete the board?" : "Slet tavlen?",
"Loading filtered view" : "Indlæser filtreret visning",
"Today" : "I dag",
"Tomorrow" : "I morgen",
"This week" : "Denne uge",
"No due" : "Ikke forfalden",
"No upcoming cards" : "Ingen kommende kort",
"upcoming cards" : "kommende kort",
"Link to a board" : "Link til tavle",
"Link to a card" : "Link til et kort",
"Something went wrong" : "Noget gik galt",
"Failed to upload {name}" : "Kunne ikke uploade {name}",
"Maximum file size of {size} exceeded" : "Maksimal fil størrelse {size} overskredet",
"Error creating the share" : "Fejl ved skabelse af delt drev",
"Share with a Deck card" : "Del med et Deck kort",
"Share {file} with a Deck card" : "Del {file} med et Deck kort",
"Share" : "Del"
"This week" : "Denne uge"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -31,7 +31,7 @@ OC.L10N.register(
"{user} has renamed the card {before} to {card}" : "{user} hat die Karte {before} in {card} umbenannt",
"You have added a description to card {card} in list {stack} on board {board}" : "Du hast der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} hat der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
"You have updated the description of card {card} in list {stack} on board {board}" : "Du hast die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
"You have updated the description of card {card} in list {stack} on board {board}" : "Du hast die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} hat die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
"You have archived card {card} in list {stack} on board {board}" : "Du hast die Karte {card} in der Liste {stack} auf dem Board {board} archiviert",
"{user} has archived card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} archiviert",
@@ -97,29 +97,18 @@ OC.L10N.register(
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
"Card not found" : "Karte nicht gefunden",
"Path is already shared with this card" : "Pfad wurde bereits mit dieser Karte geteilt",
"Invalid date, date format must be YYYY-MM-DD" : "Ungültiges Datum, zulässiges Datumsformat: JJJJJ-MM-TT",
"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 Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
"Card details" : "Karten-Details",
"Card details" : "Kartendetails",
"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",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Create a new card" : "Neue Karte erstellen",
"Select a board" : "Ein Board auswählen",
"Select a list" : "Eine Liste auswählen",
"Card title" : "Titel der Karte",
"Cancel" : "Abbrechen",
"Creating the new card…" : "Neue Karte wird erstellt …",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
"Open card" : "Karte öffnen",
"Close" : "Schließen",
"Create card" : "Karte erstellen",
"Select a card" : "Eine Karte auswählen",
"Select the card to link to a project" : "Wähle die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Select a board" : "Ein Board auswählen",
"Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchtest Du überschreiben?",
@@ -178,17 +167,12 @@ OC.L10N.register(
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Board name" : "Boardname",
"Title" : "Titel",
"Members" : "Mitglieder",
"Upload new files" : "Neue Dateien hochladen",
"Share from Files" : "Aus Dateien heraus teilen",
"Upload attachment" : "Anhang hochladen",
"Add this attachment" : "Diesen Anhang anhängen",
"Show in Files" : "In Dateien anzeigen",
"Unshare file" : "Datei nicht mehr teilen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"File to share" : "Zu teilende Datei",
"Invalid path selected" : "Ungültiger Pfad ausgewählt",
"Open in sidebar view" : "In Seitenleiste öffnen",
"Open in bigger view" : "In größerer Ansicht öffnen",
"Attachments" : "Anhänge",
@@ -218,7 +202,6 @@ OC.L10N.register(
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Add Attachment" : "Anhang anhängen",
"Write a description …" : "Beschreibung schreiben …",
"Choose attachment" : "Anhang auswählen",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
@@ -229,15 +212,17 @@ OC.L10N.register(
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a list" : "Eine Liste auswählen",
"Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Dir geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden",
"Use modal card view" : "Modale Kartenansicht verwenden",
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit deck usage of groups" : "Nutzung von Deck 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.",
"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." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Board name" : "Boardname",
"Board details" : "Board-Details",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",
@@ -265,14 +250,7 @@ OC.L10N.register(
"upcoming cards" : "Anstehende Karten",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Create a card" : "Eine Karte erstellen",
"Message from {author} in {conversationName}" : "Nachricht von {author} in {conversationName}",
"Something went wrong" : "Etwas ist schiefgelaufen",
"Failed to upload {name}" : "Fehler beim Hochladen von {name}",
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten",
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
"Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben"
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -29,7 +29,7 @@
"{user} has renamed the card {before} to {card}" : "{user} hat die Karte {before} in {card} umbenannt",
"You have added a description to card {card} in list {stack} on board {board}" : "Du hast der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} hat der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
"You have updated the description of card {card} in list {stack} on board {board}" : "Du hast die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
"You have updated the description of card {card} in list {stack} on board {board}" : "Du hast die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} hat die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
"You have archived card {card} in list {stack} on board {board}" : "Du hast die Karte {card} in der Liste {stack} auf dem Board {board} archiviert",
"{user} has archived card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} archiviert",
@@ -95,29 +95,18 @@
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
"Card not found" : "Karte nicht gefunden",
"Path is already shared with this card" : "Pfad wurde bereits mit dieser Karte geteilt",
"Invalid date, date format must be YYYY-MM-DD" : "Ungültiges Datum, zulässiges Datumsformat: JJJJJ-MM-TT",
"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 Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
"Card details" : "Karten-Details",
"Card details" : "Kartendetails",
"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",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Create a new card" : "Neue Karte erstellen",
"Select a board" : "Ein Board auswählen",
"Select a list" : "Eine Liste auswählen",
"Card title" : "Titel der Karte",
"Cancel" : "Abbrechen",
"Creating the new card…" : "Neue Karte wird erstellt …",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
"Open card" : "Karte öffnen",
"Close" : "Schließen",
"Create card" : "Karte erstellen",
"Select a card" : "Eine Karte auswählen",
"Select the card to link to a project" : "Wähle die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Select a board" : "Ein Board auswählen",
"Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchtest Du überschreiben?",
@@ -176,17 +165,12 @@
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Board name" : "Boardname",
"Title" : "Titel",
"Members" : "Mitglieder",
"Upload new files" : "Neue Dateien hochladen",
"Share from Files" : "Aus Dateien heraus teilen",
"Upload attachment" : "Anhang hochladen",
"Add this attachment" : "Diesen Anhang anhängen",
"Show in Files" : "In Dateien anzeigen",
"Unshare file" : "Datei nicht mehr teilen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"File to share" : "Zu teilende Datei",
"Invalid path selected" : "Ungültiger Pfad ausgewählt",
"Open in sidebar view" : "In Seitenleiste öffnen",
"Open in bigger view" : "In größerer Ansicht öffnen",
"Attachments" : "Anhänge",
@@ -216,7 +200,6 @@
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Add Attachment" : "Anhang anhängen",
"Write a description …" : "Beschreibung schreiben …",
"Choose attachment" : "Anhang auswählen",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
@@ -227,15 +210,17 @@
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a list" : "Eine Liste auswählen",
"Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Dir geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden",
"Use modal card view" : "Modale Kartenansicht verwenden",
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit deck usage of groups" : "Nutzung von Deck 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.",
"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." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Board name" : "Boardname",
"Board details" : "Board-Details",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",
@@ -263,14 +248,7 @@
"upcoming cards" : "Anstehende Karten",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Create a card" : "Eine Karte erstellen",
"Message from {author} in {conversationName}" : "Nachricht von {author} in {conversationName}",
"Something went wrong" : "Etwas ist schiefgelaufen",
"Failed to upload {name}" : "Fehler beim Hochladen von {name}",
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten",
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
"Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben"
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -26,7 +26,7 @@ OC.L10N.register(
"You have created card {card} in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} auf dem Board {board} erstellt",
"{user} has created card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} erstellt",
"You have deleted card {card} in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
"{user} has deleted card {card} in list {stack} on board {board}" : " {user} hat die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
"You have renamed the card {before} to {card}" : "Sie haben die Karte {before} in {card} umbenannt",
"{user} has renamed the card {before} to {card}" : "{user} hat die Karte {before} in {card} umbenannt",
"You have added a description to card {card} in list {stack} on board {board}" : "Sie haben der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
@@ -97,29 +97,18 @@ OC.L10N.register(
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
"Card not found" : "Karte nicht gefunden",
"Path is already shared with this card" : "Pfad wurde bereits mit dieser Karte geteilt",
"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",
"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",
"Card details" : "Kartendetails",
"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",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Create a new card" : "Neue Karte erstellen",
"Select a board" : "Ein Board auswählen",
"Select a list" : "Eine Liste auswählen",
"Card title" : "Titel der Karte",
"Cancel" : "Abbrechen",
"Creating the new card…" : "Neue Karte wird erstellt …",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
"Open card" : "Karte öffnen",
"Close" : "Schließen",
"Create card" : "Karte erstellen",
"Select a card" : "Eine Karte auswählen",
"Select the card to link to a project" : "Wählen Sie die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Select a board" : "Ein Board auswählen",
"Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchten Sie überschreiben?",
@@ -178,17 +167,12 @@ OC.L10N.register(
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Board name" : "Boardname",
"Title" : "Titel",
"Members" : "Mitglieder",
"Upload new files" : "Neue Dateien hochladen",
"Share from Files" : "Aus Dateien heraus teilen",
"Upload attachment" : "Anhang hochladen",
"Add this attachment" : "Diesen Anhang anhängen",
"Show in Files" : "In Dateien anzeigen",
"Unshare file" : "Datei nicht mehr teilen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"File to share" : "Zu teilende Datei",
"Invalid path selected" : "Ungültiger Pfad ausgewählt",
"Open in sidebar view" : "In Seitenleiste öffnen",
"Open in bigger view" : "In größerer Ansicht öffnen",
"Attachments" : "Anhänge",
@@ -218,7 +202,6 @@ OC.L10N.register(
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Add Attachment" : "Anhang anhängen",
"Write a description …" : "Beschreibung schreiben …",
"Choose attachment" : "Anhang auswählen",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
@@ -229,15 +212,17 @@ OC.L10N.register(
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a list" : "Eine Liste auswählen",
"Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Ihnen geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden",
"Use modal card view" : "Modale Kartenansicht verwenden",
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit deck usage of groups" : "Nutzung von Deck 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.",
"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." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Board name" : "Boardname",
"Board details" : "Board-Details",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",
@@ -265,14 +250,7 @@ OC.L10N.register(
"upcoming cards" : "Anstehende Karten",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Create a card" : "Eine Karte erstellen",
"Message from {author} in {conversationName}" : "Nachricht von {author} in {conversationName}",
"Something went wrong" : "Etwas ist schiefgelaufen",
"Failed to upload {name}" : "Fehler beim Hochladen von {name}",
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten",
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
"Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben"
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -24,7 +24,7 @@
"You have created card {card} in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} auf dem Board {board} erstellt",
"{user} has created card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} erstellt",
"You have deleted card {card} in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
"{user} has deleted card {card} in list {stack} on board {board}" : " {user} hat die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
"You have renamed the card {before} to {card}" : "Sie haben die Karte {before} in {card} umbenannt",
"{user} has renamed the card {before} to {card}" : "{user} hat die Karte {before} in {card} umbenannt",
"You have added a description to card {card} in list {stack} on board {board}" : "Sie haben der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
@@ -95,29 +95,18 @@
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
"Card not found" : "Karte nicht gefunden",
"Path is already shared with this card" : "Pfad wurde bereits mit dieser Karte geteilt",
"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",
"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",
"Card details" : "Kartendetails",
"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",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Create a new card" : "Neue Karte erstellen",
"Select a board" : "Ein Board auswählen",
"Select a list" : "Eine Liste auswählen",
"Card title" : "Titel der Karte",
"Cancel" : "Abbrechen",
"Creating the new card…" : "Neue Karte wird erstellt …",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
"Open card" : "Karte öffnen",
"Close" : "Schließen",
"Create card" : "Karte erstellen",
"Select a card" : "Eine Karte auswählen",
"Select the card to link to a project" : "Wählen Sie die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Select a board" : "Ein Board auswählen",
"Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchten Sie überschreiben?",
@@ -176,17 +165,12 @@
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Board name" : "Boardname",
"Title" : "Titel",
"Members" : "Mitglieder",
"Upload new files" : "Neue Dateien hochladen",
"Share from Files" : "Aus Dateien heraus teilen",
"Upload attachment" : "Anhang hochladen",
"Add this attachment" : "Diesen Anhang anhängen",
"Show in Files" : "In Dateien anzeigen",
"Unshare file" : "Datei nicht mehr teilen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"File to share" : "Zu teilende Datei",
"Invalid path selected" : "Ungültiger Pfad ausgewählt",
"Open in sidebar view" : "In Seitenleiste öffnen",
"Open in bigger view" : "In größerer Ansicht öffnen",
"Attachments" : "Anhänge",
@@ -216,7 +200,6 @@
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Add Attachment" : "Anhang anhängen",
"Write a description …" : "Beschreibung schreiben …",
"Choose attachment" : "Anhang auswählen",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
@@ -227,15 +210,17 @@
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a list" : "Eine Liste auswählen",
"Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Ihnen geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden",
"Use modal card view" : "Modale Kartenansicht verwenden",
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit deck usage of groups" : "Nutzung von Deck 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.",
"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." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Board name" : "Boardname",
"Board details" : "Board-Details",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",
@@ -263,14 +248,7 @@
"upcoming cards" : "Anstehende Karten",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Create a card" : "Eine Karte erstellen",
"Message from {author} in {conversationName}" : "Nachricht von {author} in {conversationName}",
"Something went wrong" : "Etwas ist schiefgelaufen",
"Failed to upload {name}" : "Fehler beim Hochladen von {name}",
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten",
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
"Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben"
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -67,7 +67,6 @@ OC.L10N.register(
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Αλλαγές στην <strong>εφαρμογή Deck</strong>",
"A <strong>comment</strong> was created on a card" : "Ένα <strong>σχόλιο</strong> δημιουργήθηκε σε μια καρτέλα",
"Upcoming cards" : "Επερχόμενες κάρτες",
"Personal" : "Προσωπικά",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Η καρτέλα \"%s\" του \"%s\" ανατέθηκε σε εσάς από τον %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Ο {user} σας ανέθεσε την καρτέλα \"%s\" του \"%s\".",
@@ -97,9 +96,6 @@ OC.L10N.register(
"Could not write file to disk" : "Αδυναμία εγγραφής αρχείου στον δίσκο",
"A PHP extension stopped the file upload" : "Ένα πρόσθετο PHP διέκοψε την μεταφόρτωση του αρχείου",
"No file uploaded or file size exceeds maximum of %s" : "Δεν μεταφορτώθηκε αρχείο ή το μέγεθος αρχείου υπερβαίνει το μέγιστο %s",
"Card not found" : "Η κάρτα δεν βρέθηκε",
"Path is already shared with this card" : "Η διαδρομή κοινοποιείται ήδη σε αυτήν την κάρτα",
"Invalid date, date format must be YYYY-MM-DD" : "Μη έγκυρη ημερομηνία, η μορφή ημερομηνίας πρέπει να είναι ΕΕΕΕ-ΜΜ-ΗΗ",
"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- 🚀 Έχετε τα όλα οργανωμένα",
"Card details" : "Λεπτομέρειες καρτέλας",
@@ -107,12 +103,11 @@ OC.L10N.register(
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε έργο",
"Search by board title" : "Αναζήτηση με το όνομα πίνακα",
"Select board" : "Επιλογή πίνακα",
"Select a board" : "Επιλογή ενός πίνακα",
"Select a list" : "Επιλέξτε μια λίστα",
"Cancel" : "Aκύρωση",
"Select a card" : "Επίλογή μιας καρτέλας",
"Select the card to link to a project" : "Επιλογή καρτέλας για σύνδεση στο έργο",
"Select a board" : "Επιλογή ενός πίνακα",
"Select a card" : "Επίλογή μιας καρτέλας",
"Link to card" : "Σύνδεσμος σε καρτέλα",
"Cancel" : "Aκύρωση",
"File already exists" : "Το αρχείο υπάρχει ήδη",
"A file with the name {filename} already exists." : "Το αρχείο με όνομα {filename} υπάρχει ήδη.",
"Do you want to overwrite it?" : "Επιθυμείτε να γίνει αντικατάσταση του?",
@@ -150,8 +145,6 @@ OC.L10N.register(
"Undo" : "Αναίρεση",
"Deleted cards" : "Διαγραμμένες καρτέλες",
"Share board with a user, group or circle …" : "Διαμοιράστε τον πίνακα με χρήστη, ομάδα ή κύκλο ...",
"Searching for users, groups and circles …" : "Αναζήτηση χρηστών, ομάδων και κύκλων…",
"No participants found" : "Δε βρέθηκαν συμμετέχοντες",
"Board owner" : "Κάτοχος πίνακα",
"(Group)" : "(Ομάδα)",
"(Circle)" : "(Κύκλος)",
@@ -159,36 +152,25 @@ OC.L10N.register(
"Can share" : "Μπορεί να διαμοιράσει",
"Can manage" : "Μπορεί να διαχειριστεί",
"Delete" : "Διαγραφή",
"Failed to create share with {displayName}" : "Αποτυχία δημιουργίας κοινής χρήσης με το {displayName}",
"Add a new list" : "Προσθήκη νέας λίστας",
"Archive all cards" : "Αρχειοθέτηση όλων των καρτελών.",
"Delete list" : "Διαγραφή λίστας",
"Add card" : "Προσθήκη κάρτας",
"Archive all cards in this list" : "Αρχειοθέτηση όλων των καρτελών σε αυτή τη λίστα.",
"Add a new card" : "Προσθήκη νέας καρτέλας",
"Card name" : "Όνομα κάρτας",
"List deleted" : "Η λίστα διαγράφηκε",
"Edit" : "Επεξεργασία",
"Add a new tag" : "Προσθήκη νέας ετικέτας",
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"Board name" : "Όνομα πίνακα",
"Title" : "Τίτλος",
"Members" : "Μέλη",
"Upload new files" : "Ανεβάστε νέα αρχεία",
"Share from Files" : "Κοινή χρήση από αρχεία",
"Upload attachment" : "Μεταφόρτωση συνημμένων",
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
"Show in Files" : "Εμφάνιση σε αρχεία",
"Unshare file" : "Κατάργηση κοινής χρήσης αρχείου",
"Delete Attachment" : "Διαγραφή Συνημμένου",
"Restore Attachment" : "Επαναφορά Συνημμένου",
"File to share" : "Αρχείο για κοινή χρήση",
"Invalid path selected" : "Επιλέχθηκε μη έγκυρη διαδρομή",
"Open in sidebar view" : "Άνοιγμα σε προβολή πλευρικής γραμμής",
"Open in bigger view" : "Άνοιγμα σε μεγαλύτερη προβολή",
"Attachments" : "Συνημμένα",
"Comments" : "Σχόλια",
"Modified" : "Τροποποιήθηκε",
"Created" : "Δημιουργήθηκε",
"The title cannot be empty." : "Ο τίτλος δεν μπορεί να είναι κενός.",
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
"Assign to users" : "Αναθέστε στους χρήστες",
@@ -211,7 +193,6 @@ OC.L10N.register(
"Edit description" : "Επεξεργασία περιγραφής",
"View description" : "Εμφάνιση περιγραφής",
"Add Attachment" : "Προσθήκη συνημμένου",
"Write a description …" : "Γράψτε μια περιγραφή…",
"Choose attachment" : "Επιλογή συνημμένου",
"(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)",
@@ -222,30 +203,16 @@ OC.L10N.register(
"Archive card" : "Αρχειοθέτηση κάρτας",
"Delete card" : "Διαγραφή κάρτας",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Card deleted" : "Η κάρτα διαγράφηκε",
"Select a list" : "Επιλέξτε μια λίστα",
"seconds ago" : " δευτερόλεπτα πριν ",
"All boards" : "Όλοι οι πίνακες",
"Archived boards" : "Αρχειοθέτηση πινάκων ",
"Shared with you" : "Διαμοιρασμένα μαζί σας",
"Use bigger card view" : "Χρησιμοποιήστε μεγαλύτερη προβολή κάρτας",
"Show boards in calendar/tasks" : "Εμφάνιση πινάκων στο ημερολόγιο / εργασίες",
"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 θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
"Board details" : "Λεπτομέριες πίνακα",
"Edit board" : "Επεξεργασία πίνακα",
"Clone board" : "Κλώνος πίνακα",
"Unarchive board" : "Κατάργηση αρχειοθέτησης πίνακα",
"Archive board" : "Αρχειοθέτηση πίνακα",
"Turn on due date reminders" : "Ενεργοποιήστε τις υπενθυμίσεις ημερομηνίας προθεσμίας",
"Turn off due date reminders" : "Απενεργοποιήστε τις υπενθυμίσεις ημερομηνίας προθεσμίας",
"Due date reminders" : "Υπενθυμίσεις ημερομηνίας προθεσμίας",
"All cards" : "Όλες οι κάρτες",
"Assigned cards" : "Ανατεθείς κάρτες",
"No notifications" : "Δεν υπάρχουν ειδοποιήσεις",
"Delete board" : "Διαγραφή πίνακα",
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
"Only assigned cards" : "Μόνο κάρτες που έχουν ανατεθεί",
"No reminder" : "Δεν υπάρχει υπενθύμιση",
"An error occurred" : "Παρουσιάστηκε σφάλμα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
"Delete the board?" : "Διαγραφή πίνακα;",
@@ -254,16 +221,9 @@ OC.L10N.register(
"Tomorrow" : "Αύριο",
"This week" : "Αυτή την εβδομάδα",
"No due" : "Χωρίς λήξη",
"No upcoming cards" : "Δεν υπάρχουν επερχόμενες κάρτες",
"upcoming cards" : "Επερχόμενες κάρτες",
"Link to a board" : "Σύνδεσμος στον πίνακα",
"Link to a card" : "Σύνδεσμος σε καρτέλα",
"Something went wrong" : "Κάτι πήγε στραβά",
"Failed to upload {name}" : "Αποτυχία μεταφόρτωσης {όνομα}",
"Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
"Error creating the share" : "Σφάλμα κατά τη δημιουργία της κοινοποίησης",
"Share with a Deck card" : "Μοιραστείτε με μια κάρτα Deck",
"Share {file} with a Deck card" : "Μοιραστείτε {αρχείο} με μια κάρτα Deck",
"Share" : "Μοιραστείτε"
"Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -65,7 +65,6 @@
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Αλλαγές στην <strong>εφαρμογή Deck</strong>",
"A <strong>comment</strong> was created on a card" : "Ένα <strong>σχόλιο</strong> δημιουργήθηκε σε μια καρτέλα",
"Upcoming cards" : "Επερχόμενες κάρτες",
"Personal" : "Προσωπικά",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Η καρτέλα \"%s\" του \"%s\" ανατέθηκε σε εσάς από τον %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Ο {user} σας ανέθεσε την καρτέλα \"%s\" του \"%s\".",
@@ -95,9 +94,6 @@
"Could not write file to disk" : "Αδυναμία εγγραφής αρχείου στον δίσκο",
"A PHP extension stopped the file upload" : "Ένα πρόσθετο PHP διέκοψε την μεταφόρτωση του αρχείου",
"No file uploaded or file size exceeds maximum of %s" : "Δεν μεταφορτώθηκε αρχείο ή το μέγεθος αρχείου υπερβαίνει το μέγιστο %s",
"Card not found" : "Η κάρτα δεν βρέθηκε",
"Path is already shared with this card" : "Η διαδρομή κοινοποιείται ήδη σε αυτήν την κάρτα",
"Invalid date, date format must be YYYY-MM-DD" : "Μη έγκυρη ημερομηνία, η μορφή ημερομηνίας πρέπει να είναι ΕΕΕΕ-ΜΜ-ΗΗ",
"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- 🚀 Έχετε τα όλα οργανωμένα",
"Card details" : "Λεπτομέρειες καρτέλας",
@@ -105,12 +101,11 @@
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε έργο",
"Search by board title" : "Αναζήτηση με το όνομα πίνακα",
"Select board" : "Επιλογή πίνακα",
"Select a board" : "Επιλογή ενός πίνακα",
"Select a list" : "Επιλέξτε μια λίστα",
"Cancel" : "Aκύρωση",
"Select a card" : "Επίλογή μιας καρτέλας",
"Select the card to link to a project" : "Επιλογή καρτέλας για σύνδεση στο έργο",
"Select a board" : "Επιλογή ενός πίνακα",
"Select a card" : "Επίλογή μιας καρτέλας",
"Link to card" : "Σύνδεσμος σε καρτέλα",
"Cancel" : "Aκύρωση",
"File already exists" : "Το αρχείο υπάρχει ήδη",
"A file with the name {filename} already exists." : "Το αρχείο με όνομα {filename} υπάρχει ήδη.",
"Do you want to overwrite it?" : "Επιθυμείτε να γίνει αντικατάσταση του?",
@@ -148,8 +143,6 @@
"Undo" : "Αναίρεση",
"Deleted cards" : "Διαγραμμένες καρτέλες",
"Share board with a user, group or circle …" : "Διαμοιράστε τον πίνακα με χρήστη, ομάδα ή κύκλο ...",
"Searching for users, groups and circles …" : "Αναζήτηση χρηστών, ομάδων και κύκλων…",
"No participants found" : "Δε βρέθηκαν συμμετέχοντες",
"Board owner" : "Κάτοχος πίνακα",
"(Group)" : "(Ομάδα)",
"(Circle)" : "(Κύκλος)",
@@ -157,36 +150,25 @@
"Can share" : "Μπορεί να διαμοιράσει",
"Can manage" : "Μπορεί να διαχειριστεί",
"Delete" : "Διαγραφή",
"Failed to create share with {displayName}" : "Αποτυχία δημιουργίας κοινής χρήσης με το {displayName}",
"Add a new list" : "Προσθήκη νέας λίστας",
"Archive all cards" : "Αρχειοθέτηση όλων των καρτελών.",
"Delete list" : "Διαγραφή λίστας",
"Add card" : "Προσθήκη κάρτας",
"Archive all cards in this list" : "Αρχειοθέτηση όλων των καρτελών σε αυτή τη λίστα.",
"Add a new card" : "Προσθήκη νέας καρτέλας",
"Card name" : "Όνομα κάρτας",
"List deleted" : "Η λίστα διαγράφηκε",
"Edit" : "Επεξεργασία",
"Add a new tag" : "Προσθήκη νέας ετικέτας",
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"Board name" : "Όνομα πίνακα",
"Title" : "Τίτλος",
"Members" : "Μέλη",
"Upload new files" : "Ανεβάστε νέα αρχεία",
"Share from Files" : "Κοινή χρήση από αρχεία",
"Upload attachment" : "Μεταφόρτωση συνημμένων",
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
"Show in Files" : "Εμφάνιση σε αρχεία",
"Unshare file" : "Κατάργηση κοινής χρήσης αρχείου",
"Delete Attachment" : "Διαγραφή Συνημμένου",
"Restore Attachment" : "Επαναφορά Συνημμένου",
"File to share" : "Αρχείο για κοινή χρήση",
"Invalid path selected" : "Επιλέχθηκε μη έγκυρη διαδρομή",
"Open in sidebar view" : "Άνοιγμα σε προβολή πλευρικής γραμμής",
"Open in bigger view" : "Άνοιγμα σε μεγαλύτερη προβολή",
"Attachments" : "Συνημμένα",
"Comments" : "Σχόλια",
"Modified" : "Τροποποιήθηκε",
"Created" : "Δημιουργήθηκε",
"The title cannot be empty." : "Ο τίτλος δεν μπορεί να είναι κενός.",
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
"Assign to users" : "Αναθέστε στους χρήστες",
@@ -209,7 +191,6 @@
"Edit description" : "Επεξεργασία περιγραφής",
"View description" : "Εμφάνιση περιγραφής",
"Add Attachment" : "Προσθήκη συνημμένου",
"Write a description …" : "Γράψτε μια περιγραφή…",
"Choose attachment" : "Επιλογή συνημμένου",
"(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)",
@@ -220,30 +201,16 @@
"Archive card" : "Αρχειοθέτηση κάρτας",
"Delete card" : "Διαγραφή κάρτας",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Card deleted" : "Η κάρτα διαγράφηκε",
"Select a list" : "Επιλέξτε μια λίστα",
"seconds ago" : " δευτερόλεπτα πριν ",
"All boards" : "Όλοι οι πίνακες",
"Archived boards" : "Αρχειοθέτηση πινάκων ",
"Shared with you" : "Διαμοιρασμένα μαζί σας",
"Use bigger card view" : "Χρησιμοποιήστε μεγαλύτερη προβολή κάρτας",
"Show boards in calendar/tasks" : "Εμφάνιση πινάκων στο ημερολόγιο / εργασίες",
"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 θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
"Board details" : "Λεπτομέριες πίνακα",
"Edit board" : "Επεξεργασία πίνακα",
"Clone board" : "Κλώνος πίνακα",
"Unarchive board" : "Κατάργηση αρχειοθέτησης πίνακα",
"Archive board" : "Αρχειοθέτηση πίνακα",
"Turn on due date reminders" : "Ενεργοποιήστε τις υπενθυμίσεις ημερομηνίας προθεσμίας",
"Turn off due date reminders" : "Απενεργοποιήστε τις υπενθυμίσεις ημερομηνίας προθεσμίας",
"Due date reminders" : "Υπενθυμίσεις ημερομηνίας προθεσμίας",
"All cards" : "Όλες οι κάρτες",
"Assigned cards" : "Ανατεθείς κάρτες",
"No notifications" : "Δεν υπάρχουν ειδοποιήσεις",
"Delete board" : "Διαγραφή πίνακα",
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
"Only assigned cards" : "Μόνο κάρτες που έχουν ανατεθεί",
"No reminder" : "Δεν υπάρχει υπενθύμιση",
"An error occurred" : "Παρουσιάστηκε σφάλμα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
"Delete the board?" : "Διαγραφή πίνακα;",
@@ -252,16 +219,9 @@
"Tomorrow" : "Αύριο",
"This week" : "Αυτή την εβδομάδα",
"No due" : "Χωρίς λήξη",
"No upcoming cards" : "Δεν υπάρχουν επερχόμενες κάρτες",
"upcoming cards" : "Επερχόμενες κάρτες",
"Link to a board" : "Σύνδεσμος στον πίνακα",
"Link to a card" : "Σύνδεσμος σε καρτέλα",
"Something went wrong" : "Κάτι πήγε στραβά",
"Failed to upload {name}" : "Αποτυχία μεταφόρτωσης {όνομα}",
"Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
"Error creating the share" : "Σφάλμα κατά τη δημιουργία της κοινοποίησης",
"Share with a Deck card" : "Μοιραστείτε με μια κάρτα Deck",
"Share {file} with a Deck card" : "Μοιραστείτε {αρχείο} με μια κάρτα Deck",
"Share" : "Μοιραστείτε"
"Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -35,7 +35,9 @@ OC.L10N.register(
"Delete" : "Delete",
"Add card" : "Add card",
"Edit" : "Edit",
"Title" : "Title",
"Members" : "Members",
"Upload attachment" : "Upload attachment",
"Attachments" : "Attachments",
"Comments" : "Comments",
"Modified" : "Modified",

View File

@@ -33,7 +33,9 @@
"Delete" : "Delete",
"Add card" : "Add card",
"Edit" : "Edit",
"Title" : "Title",
"Members" : "Members",
"Upload attachment" : "Upload attachment",
"Attachments" : "Attachments",
"Comments" : "Comments",
"Modified" : "Modified",

View File

@@ -94,7 +94,9 @@ OC.L10N.register(
"Delete" : "Forigi",
"Add card" : "Aldoni karton",
"Edit" : "Redakti",
"Title" : "Titolo",
"Members" : "Membroj",
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
"Attachments" : "Dosieraj aldonaĵoj",
"Comments" : "Komentoj",
"Modified" : "Modifita",

View File

@@ -92,7 +92,9 @@
"Delete" : "Forigi",
"Add card" : "Aldoni karton",
"Edit" : "Redakti",
"Title" : "Titolo",
"Members" : "Membroj",
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
"Attachments" : "Dosieraj aldonaĵoj",
"Comments" : "Komentoj",
"Modified" : "Modifita",

View File

@@ -97,9 +97,6 @@ OC.L10N.register(
"Could not write file to disk" : "No se ha podido escribir el archivo al disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP ha detenido la subida del archivo",
"No file uploaded or file size exceeds maximum of %s" : "No se ha subido ningún archivo, o el tamaño del archivo excede el máximo de %s",
"Card not found" : "Tarjeta no encontrada",
"Path is already shared with this card" : "La ruta ya se ha compartido con esta tarjeta",
"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",
"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",
@@ -107,19 +104,11 @@ OC.L10N.register(
"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",
"Select board" : "Selecciona tablero",
"Create a new card" : "Crear una nueva tarjeta",
"Select a board" : "Selecciona un tablero",
"Select a list" : "Seleccionar una lista",
"Card title" : "Título de la tarjeta",
"Cancel" : "Cancelar",
"Creating the new card…" : "Creando una nueva tarjeta...",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" ha sido añadida en \"{board}\"",
"Open card" : "Abrir tarjeta",
"Close" : "Cerrar",
"Create card" : "Crear tarjeta",
"Select a card" : "Seleccionar una tarjeta",
"Select the card to link to a project" : "Selecciona la tarjeta que enlazar a un proyecto",
"Select a board" : "Selecciona un tablero",
"Select a card" : "Seleccionar una tarjeta",
"Link to card" : "Enlace a tarjeta",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"A file with the name {filename} already exists." : "Ya existe un archivo con el nombre {filename}.",
"Do you want to overwrite it?" : "¿Desea sobreescribirlo?",
@@ -178,17 +167,12 @@ OC.L10N.register(
"Edit" : "Editar",
"Add a new tag" : "Añade una nueva etiqueta",
"title and color value must be provided" : "Se debe indicar un valor para título y color ",
"Board name" : "Nombre del tablero",
"Title" : "Título",
"Members" : "Miembros",
"Upload new files" : "Subir nuevos archivos",
"Share from Files" : "Compartir desde Archivos",
"Upload attachment" : "Subir adjunto",
"Add this attachment" : "Añadir este adjunto",
"Show in Files" : "Mostrar en Archivos",
"Unshare file" : "Dejar de compartir archivo",
"Delete Attachment" : "Borrar adjunto",
"Restore Attachment" : "Restaurar Adjunto",
"File to share" : "Archivo a compartir",
"Invalid path selected" : "Ruta seleccionada no válida",
"Open in sidebar view" : "Abrir en vista de barra lateral",
"Open in bigger view" : "Abrir en vista más grande",
"Attachments" : "Adjuntos",
@@ -218,7 +202,6 @@ OC.L10N.register(
"Edit description" : "Editar descripción",
"View description" : "Ver descripción",
"Add Attachment" : "Añadir adjunto",
"Write a description …" : "Escribe una descripción...",
"Choose attachment" : "Escoger adjunto",
"(group)" : "(grupo)",
"(circle)" : "(circle)",
@@ -229,30 +212,20 @@ OC.L10N.register(
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Select a list" : "Seleccionar una lista",
"Card deleted" : "Tarjeta borrada",
"seconds ago" : "hace unos segundos",
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido contigo",
"Use bigger card view" : "Usar vista de tarjeta mayor",
"Use modal card view" : "Usar vista de tarjeta modal",
"Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas",
"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.",
"Board name" : "Nombre del tablero",
"Board details" : "Detalles del tablero",
"Edit board" : "Editar tablero",
"Clone board" : "Clonar tablero",
"Unarchive board" : "Desarchivar tablero",
"Archive board" : "Archivar tablero",
"Turn on due date reminders" : "Activar recordatorios de la fecha de vencimiento",
"Turn off due date reminders" : "Desactivar recordatorios de la fecha de vencimiento",
"Due date reminders" : "Recordatorios de la fecha de vencimiento",
"All cards" : "Todas las tarjetas",
"Assigned cards" : "Tarjetas asignadas",
"No notifications" : "No hay notificaciones",
"Delete board" : "Eliminar tablero",
"Board {0} deleted" : "Tablero {0} eliminado",
"Only assigned cards" : "Sólo las tarjetas asignadas",
"No reminder" : "No hay recordatorio",
"An error occurred" : "Ocurrió un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
"Delete the board?" : "¿Borrar el tablero?",
@@ -265,14 +238,7 @@ OC.L10N.register(
"upcoming cards" : "próximas tarjetas",
"Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta",
"Create a card" : "Crear una tarjeta",
"Message from {author} in {conversationName}" : "Mensaje de {author} en {conversationName}",
"Something went wrong" : "Algo ha ido mal",
"Failed to upload {name}" : "Error al subir {name}",
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido",
"Error creating the share" : "Error creando el recurso compartido",
"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" : "Compartir"
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -95,9 +95,6 @@
"Could not write file to disk" : "No se ha podido escribir el archivo al disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP ha detenido la subida del archivo",
"No file uploaded or file size exceeds maximum of %s" : "No se ha subido ningún archivo, o el tamaño del archivo excede el máximo de %s",
"Card not found" : "Tarjeta no encontrada",
"Path is already shared with this card" : "La ruta ya se ha compartido con esta tarjeta",
"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",
"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",
@@ -105,19 +102,11 @@
"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",
"Select board" : "Selecciona tablero",
"Create a new card" : "Crear una nueva tarjeta",
"Select a board" : "Selecciona un tablero",
"Select a list" : "Seleccionar una lista",
"Card title" : "Título de la tarjeta",
"Cancel" : "Cancelar",
"Creating the new card…" : "Creando una nueva tarjeta...",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" ha sido añadida en \"{board}\"",
"Open card" : "Abrir tarjeta",
"Close" : "Cerrar",
"Create card" : "Crear tarjeta",
"Select a card" : "Seleccionar una tarjeta",
"Select the card to link to a project" : "Selecciona la tarjeta que enlazar a un proyecto",
"Select a board" : "Selecciona un tablero",
"Select a card" : "Seleccionar una tarjeta",
"Link to card" : "Enlace a tarjeta",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"A file with the name {filename} already exists." : "Ya existe un archivo con el nombre {filename}.",
"Do you want to overwrite it?" : "¿Desea sobreescribirlo?",
@@ -176,17 +165,12 @@
"Edit" : "Editar",
"Add a new tag" : "Añade una nueva etiqueta",
"title and color value must be provided" : "Se debe indicar un valor para título y color ",
"Board name" : "Nombre del tablero",
"Title" : "Título",
"Members" : "Miembros",
"Upload new files" : "Subir nuevos archivos",
"Share from Files" : "Compartir desde Archivos",
"Upload attachment" : "Subir adjunto",
"Add this attachment" : "Añadir este adjunto",
"Show in Files" : "Mostrar en Archivos",
"Unshare file" : "Dejar de compartir archivo",
"Delete Attachment" : "Borrar adjunto",
"Restore Attachment" : "Restaurar Adjunto",
"File to share" : "Archivo a compartir",
"Invalid path selected" : "Ruta seleccionada no válida",
"Open in sidebar view" : "Abrir en vista de barra lateral",
"Open in bigger view" : "Abrir en vista más grande",
"Attachments" : "Adjuntos",
@@ -216,7 +200,6 @@
"Edit description" : "Editar descripción",
"View description" : "Ver descripción",
"Add Attachment" : "Añadir adjunto",
"Write a description …" : "Escribe una descripción...",
"Choose attachment" : "Escoger adjunto",
"(group)" : "(grupo)",
"(circle)" : "(circle)",
@@ -227,30 +210,20 @@
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Select a list" : "Seleccionar una lista",
"Card deleted" : "Tarjeta borrada",
"seconds ago" : "hace unos segundos",
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido contigo",
"Use bigger card view" : "Usar vista de tarjeta mayor",
"Use modal card view" : "Usar vista de tarjeta modal",
"Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas",
"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.",
"Board name" : "Nombre del tablero",
"Board details" : "Detalles del tablero",
"Edit board" : "Editar tablero",
"Clone board" : "Clonar tablero",
"Unarchive board" : "Desarchivar tablero",
"Archive board" : "Archivar tablero",
"Turn on due date reminders" : "Activar recordatorios de la fecha de vencimiento",
"Turn off due date reminders" : "Desactivar recordatorios de la fecha de vencimiento",
"Due date reminders" : "Recordatorios de la fecha de vencimiento",
"All cards" : "Todas las tarjetas",
"Assigned cards" : "Tarjetas asignadas",
"No notifications" : "No hay notificaciones",
"Delete board" : "Eliminar tablero",
"Board {0} deleted" : "Tablero {0} eliminado",
"Only assigned cards" : "Sólo las tarjetas asignadas",
"No reminder" : "No hay recordatorio",
"An error occurred" : "Ocurrió un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
"Delete the board?" : "¿Borrar el tablero?",
@@ -263,14 +236,7 @@
"upcoming cards" : "próximas tarjetas",
"Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta",
"Create a card" : "Crear una tarjeta",
"Message from {author} in {conversationName}" : "Mensaje de {author} en {conversationName}",
"Something went wrong" : "Algo ha ido mal",
"Failed to upload {name}" : "Error al subir {name}",
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido",
"Error creating the share" : "Error creando el recurso compartido",
"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" : "Compartir"
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -30,7 +30,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -28,7 +28,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -23,6 +23,7 @@ OC.L10N.register(
"Can share" : "Puede compartir",
"Delete" : "Eliminar",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",

View File

@@ -21,6 +21,7 @@
"Can share" : "Puede compartir",
"Delete" : "Eliminar",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",

View File

@@ -33,7 +33,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -31,7 +31,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -34,7 +34,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -32,7 +32,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -33,7 +33,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -31,7 +31,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -33,7 +33,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -31,7 +31,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -33,7 +33,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -31,7 +31,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -33,7 +33,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -31,7 +31,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -29,7 +29,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -27,7 +27,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -34,7 +34,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Modified" : "Modificado",

View File

@@ -32,7 +32,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Modified" : "Modificado",

View File

@@ -29,7 +29,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -27,7 +27,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -29,7 +29,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -27,7 +27,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -29,7 +29,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -27,7 +27,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -29,7 +29,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -27,7 +27,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -30,7 +30,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -28,7 +28,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -33,7 +33,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -31,7 +31,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -29,7 +29,9 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -27,7 +27,9 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",

View File

@@ -17,6 +17,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Kustuta",
"Edit" : "Redigeeri",
"Title" : "Pealkiri",
"Comments" : "Kommentaarid",
"Modified" : "Muudetud",
"Created" : "Loodud",

View File

@@ -15,6 +15,7 @@
"Can share" : "Can share",
"Delete" : "Kustuta",
"Edit" : "Redigeeri",
"Title" : "Pealkiri",
"Comments" : "Kommentaarid",
"Modified" : "Muudetud",
"Created" : "Loodud",

View File

@@ -97,8 +97,6 @@ OC.L10N.register(
"Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi",
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
"Card not found" : "Txartela ez da aurkitu",
"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",
"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",
@@ -106,13 +104,11 @@ OC.L10N.register(
"Select the board to link to a project" : "Hautatu mahaia proiektu bati estekatzeko",
"Search by board title" : "Bilatu mahai izenez",
"Select board" : "Hautatu mahaia",
"Select a board" : "Hautatu mahai bat",
"Select a list" : "Hautatu zerrenda bat",
"Cancel" : "Utzi",
"Close" : "Itxi",
"Select a card" : "Hautatu txartel bat",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Select a board" : "Hautatu mahai bat",
"Select a card" : "Hautatu txartel bat",
"Link to card" : "Estekatu txartelera",
"Cancel" : "Utzi",
"File already exists" : "Badago izen bereko fitxategi bat",
"A file with the name {filename} already exists." : "{filename} izeneko fitxategia existitzen da dagoeneko.",
"Do you want to overwrite it?" : "Gainidatzi nahi duzu?",
@@ -150,8 +146,6 @@ OC.L10N.register(
"Undo" : "Desegin",
"Deleted cards" : "Ezabatutako txartelak",
"Share board with a user, group or circle …" : "Partekatu mahaia erabiltzaile, talde edo zirkulu batekin...",
"Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
"No participants found" : "Ez da parte-hartzailerik aurkitu",
"Board owner" : "Mahaiaren jabea",
"(Group)" : "(Taldea)",
"(Circle)" : "(Zirkulua)",
@@ -159,27 +153,21 @@ OC.L10N.register(
"Can share" : "Partekatu dezake",
"Can manage" : "Kudeatu dezake",
"Delete" : "Ezabatu",
"Failed to create share with {displayName}" : "Ezin izan da {displayName}-(r)ekin partekatzea sortu",
"Add a new list" : "Gehitu zerrenda berria",
"Archive all cards" : "Artxibatu txartel guztiak",
"Delete list" : "Zerrenda ezabatu",
"Add card" : "Gehitu txartela",
"Archive all cards in this list" : "Artxibatu zerrenda honetako txartel guztiak",
"Add a new card" : "Gehitu txartel berri bat",
"Card name" : "Txartel izena",
"List deleted" : "Zerrenda ezabatua",
"Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Board name" : "Mahaiaren izena",
"Title" : "Izenburua",
"Members" : "Partaideak",
"Upload new files" : "Kargatu fitxategi berriak",
"Share from Files" : "Partekatu Fitxategiak-etik",
"Upload attachment" : "Igo eranskina",
"Add this attachment" : "Gehitu eranskin hau",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"File to share" : "Partekatzeko fitxategia",
"Invalid path selected" : "Bide baliogabea hautatuta",
"Attachments" : "Eranskinak",
"Comments" : "Iruzkinak",
"Modified" : "Aldatua",
@@ -207,7 +195,6 @@ OC.L10N.register(
"Edit description" : "Editatu azalpena",
"View description" : "Ikusi deskribapena",
"Add Attachment" : "Gehitu eranskina",
"Write a description …" : "Idatzi deskribapen bat ...",
"Choose attachment" : "Aukeratu eranskina",
"(group)" : "(taldea)",
"(circle)" : "(zirkulua)",
@@ -218,6 +205,7 @@ OC.L10N.register(
"Archive card" : "Artxibatu txartela",
"Delete card" : "Ezabatu txartela",
"Move card to another board" : "Mugitu txartela beste mahai batera",
"Select a list" : "Hautatu zerrenda bat",
"seconds ago" : "segundo lehenago",
"All boards" : "Mahai guztiak",
"Archived boards" : "Artxibatutako mahaiak",
@@ -225,14 +213,10 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
"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 mahai propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren mahaietan lan egin ahalko dute.",
"Board name" : "Mahaiaren izena",
"Board details" : "Mahaiaren xehetasunak",
"Edit board" : "Editatu mahaia",
"Clone board" : "Klonatu taula",
"Archive board" : "Artxibatu taula",
"No notifications" : "Jakinarazpenik ez",
"Delete board" : "Ezabatu taula",
"Board {0} deleted" : "{0} mahaia ezabatu da",
"No reminder" : "Abisurik ez",
"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." : "Ziur zaude «{title}» mahaia ezabatu nahi duzula? Honek mahai honen datu guztiak ezabatuko ditu.",
"Delete the board?" : "Mahaia ezabatu?",
@@ -246,8 +230,6 @@ OC.L10N.register(
"Link to a board" : "Estekatu mahai batera",
"Link to a card" : "Estekatu txartel batera",
"Something went wrong" : "Zerbait gaizki joan da",
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da",
"Error creating the share" : "Errorea partekatzea sortzean",
"Share" : "Partekatu"
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -95,8 +95,6 @@
"Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi",
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
"Card not found" : "Txartela ez da aurkitu",
"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",
"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",
@@ -104,13 +102,11 @@
"Select the board to link to a project" : "Hautatu mahaia proiektu bati estekatzeko",
"Search by board title" : "Bilatu mahai izenez",
"Select board" : "Hautatu mahaia",
"Select a board" : "Hautatu mahai bat",
"Select a list" : "Hautatu zerrenda bat",
"Cancel" : "Utzi",
"Close" : "Itxi",
"Select a card" : "Hautatu txartel bat",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Select a board" : "Hautatu mahai bat",
"Select a card" : "Hautatu txartel bat",
"Link to card" : "Estekatu txartelera",
"Cancel" : "Utzi",
"File already exists" : "Badago izen bereko fitxategi bat",
"A file with the name {filename} already exists." : "{filename} izeneko fitxategia existitzen da dagoeneko.",
"Do you want to overwrite it?" : "Gainidatzi nahi duzu?",
@@ -148,8 +144,6 @@
"Undo" : "Desegin",
"Deleted cards" : "Ezabatutako txartelak",
"Share board with a user, group or circle …" : "Partekatu mahaia erabiltzaile, talde edo zirkulu batekin...",
"Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
"No participants found" : "Ez da parte-hartzailerik aurkitu",
"Board owner" : "Mahaiaren jabea",
"(Group)" : "(Taldea)",
"(Circle)" : "(Zirkulua)",
@@ -157,27 +151,21 @@
"Can share" : "Partekatu dezake",
"Can manage" : "Kudeatu dezake",
"Delete" : "Ezabatu",
"Failed to create share with {displayName}" : "Ezin izan da {displayName}-(r)ekin partekatzea sortu",
"Add a new list" : "Gehitu zerrenda berria",
"Archive all cards" : "Artxibatu txartel guztiak",
"Delete list" : "Zerrenda ezabatu",
"Add card" : "Gehitu txartela",
"Archive all cards in this list" : "Artxibatu zerrenda honetako txartel guztiak",
"Add a new card" : "Gehitu txartel berri bat",
"Card name" : "Txartel izena",
"List deleted" : "Zerrenda ezabatua",
"Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Board name" : "Mahaiaren izena",
"Title" : "Izenburua",
"Members" : "Partaideak",
"Upload new files" : "Kargatu fitxategi berriak",
"Share from Files" : "Partekatu Fitxategiak-etik",
"Upload attachment" : "Igo eranskina",
"Add this attachment" : "Gehitu eranskin hau",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"File to share" : "Partekatzeko fitxategia",
"Invalid path selected" : "Bide baliogabea hautatuta",
"Attachments" : "Eranskinak",
"Comments" : "Iruzkinak",
"Modified" : "Aldatua",
@@ -205,7 +193,6 @@
"Edit description" : "Editatu azalpena",
"View description" : "Ikusi deskribapena",
"Add Attachment" : "Gehitu eranskina",
"Write a description …" : "Idatzi deskribapen bat ...",
"Choose attachment" : "Aukeratu eranskina",
"(group)" : "(taldea)",
"(circle)" : "(zirkulua)",
@@ -216,6 +203,7 @@
"Archive card" : "Artxibatu txartela",
"Delete card" : "Ezabatu txartela",
"Move card to another board" : "Mugitu txartela beste mahai batera",
"Select a list" : "Hautatu zerrenda bat",
"seconds ago" : "segundo lehenago",
"All boards" : "Mahai guztiak",
"Archived boards" : "Artxibatutako mahaiak",
@@ -223,14 +211,10 @@
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
"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 mahai propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren mahaietan lan egin ahalko dute.",
"Board name" : "Mahaiaren izena",
"Board details" : "Mahaiaren xehetasunak",
"Edit board" : "Editatu mahaia",
"Clone board" : "Klonatu taula",
"Archive board" : "Artxibatu taula",
"No notifications" : "Jakinarazpenik ez",
"Delete board" : "Ezabatu taula",
"Board {0} deleted" : "{0} mahaia ezabatu da",
"No reminder" : "Abisurik ez",
"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." : "Ziur zaude «{title}» mahaia ezabatu nahi duzula? Honek mahai honen datu guztiak ezabatuko ditu.",
"Delete the board?" : "Mahaia ezabatu?",
@@ -244,8 +228,6 @@
"Link to a board" : "Estekatu mahai batera",
"Link to a card" : "Estekatu txartel batera",
"Something went wrong" : "Zerbait gaizki joan da",
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da",
"Error creating the share" : "Errorea partekatzea sortzean",
"Share" : "Partekatu"
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -43,11 +43,11 @@ OC.L10N.register(
"Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Search by board title" : "جستجو بر اساس عنوان تخته",
"Select board" : "انتخاب تخته",
"Select a board" : "انتخاب یک تخته",
"Cancel" : "لغو",
"Select a card" : "انتخاب یک کارت",
"Select the card to link to a project" : "کارتی را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Select a board" : "انتخاب یک تخته",
"Select a card" : "انتخاب یک کارت",
"Link to card" : "پیوند به کارت",
"Cancel" : "لغو",
"File already exists" : "پرونده از قبل موجود است",
"A file with the name {filename} already exists." : "پرونده‌ای با نام {filename} از قبل موجود است.",
"Do you want to overwrite it?" : "می‌خواهید روی آن بازنویسی شود؟",
@@ -91,7 +91,9 @@ OC.L10N.register(
"Edit" : "ویرایش",
"Add a new tag" : "افزودن یک برچسب جدید",
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
"Title" : "عنوان",
"Members" : "اعضا",
"Upload attachment" : "بارگذاری پیوست",
"Add this attachment" : "افزودن این پیوست",
"Delete Attachment" : "حذف پیوست",
"Restore Attachment" : "بازیابی پیوست",

View File

@@ -41,11 +41,11 @@
"Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Search by board title" : "جستجو بر اساس عنوان تخته",
"Select board" : "انتخاب تخته",
"Select a board" : "انتخاب یک تخته",
"Cancel" : "لغو",
"Select a card" : "انتخاب یک کارت",
"Select the card to link to a project" : "کارتی را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Select a board" : "انتخاب یک تخته",
"Select a card" : "انتخاب یک کارت",
"Link to card" : "پیوند به کارت",
"Cancel" : "لغو",
"File already exists" : "پرونده از قبل موجود است",
"A file with the name {filename} already exists." : "پرونده‌ای با نام {filename} از قبل موجود است.",
"Do you want to overwrite it?" : "می‌خواهید روی آن بازنویسی شود؟",
@@ -89,7 +89,9 @@
"Edit" : "ویرایش",
"Add a new tag" : "افزودن یک برچسب جدید",
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
"Title" : "عنوان",
"Members" : "اعضا",
"Upload attachment" : "بارگذاری پیوست",
"Add this attachment" : "افزودن این پیوست",
"Delete Attachment" : "حذف پیوست",
"Restore Attachment" : "بازیابی پیوست",

View File

@@ -17,20 +17,8 @@ OC.L10N.register(
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
"You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
"{user} has unarchived the board {before}" : "{user} palautti taulun {before} arkistosta",
"You have created a new list {stack} on board {board}" : "Olet lisännyt listan {stack} taululle {board}",
"{user} has created a new list {stack} on board {board}" : "{user} on lisännyt uuden listan {stack} taululle {board}",
"You have renamed list {before} to {stack} on board {board}" : "Muutit listan {before} nimeksi {stack} taululla {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} muutti listan {before} nimeksi {stack} taululla {board}",
"You have deleted list {stack} on board {board}" : "Olet poistanut listan {stack} taululta {board}",
"{user} has deleted list {stack} on board {board}" : "{user} on poistanut listan {stack} taululta {board}",
"You have created card {card} in list {stack} on board {board}" : "Olet lisännyt kortin {card} listaan {stack} taululla {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} on lisännyt kortin {card} listaan {stack} taululla {board}",
"You have deleted card {card} in list {stack} on board {board}" : "Olet poistanut kortin {card} listasta {stack} taululla {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} on poistanut kortin {card} listasta {stack} taululla {board}",
"You have renamed the card {before} to {card}" : "Muutit 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}",
"{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 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}",
"You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}",
@@ -55,10 +43,8 @@ OC.L10N.register(
"Deck" : "Pakka",
"Changes in the <strong>Deck app</strong>" : "Muutokset <strong>Pakka-sovelluksessa</strong>",
"A <strong>comment</strong> was created on a card" : "<strong>Kommentti</strong> luotiin kortille",
"Upcoming cards" : "Tulevat kortit",
"Personal" : "Henkilökohtainen",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} on asettanut kortin \"%s\" taululla \"%s\" sinulle.",
"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\".",
"{user} has mentioned you in a comment on \"%s\"." : "{user} mainitsi sinut kommentissa kortilla \"%s\".",
@@ -84,24 +70,16 @@ OC.L10N.register(
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
"A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen",
"No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
"Card not found" : "Korttia ei löydy",
"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" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa",
"Card details" : "Näytä kortin sisältö",
"Add board" : "Lisää taulu",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Search by board title" : "Hae taulun otsikon mukaan",
"Select board" : "Valitse taulu",
"Create a new card" : "Luo uusi kortti",
"Select a board" : "Valitse taulu",
"Select a list" : "Valitse lista ",
"Card title" : "Kortin otsikko",
"Cancel" : "Peruuta",
"Open card" : "Avaa kortti",
"Close" : "Sulje",
"Create card" : "Luo kortti",
"Select a card" : "Valitse kortti",
"Select the card to link to a project" : "Valitse projektiin linkitettävä kortti",
"Select a board" : "Valitse taulu",
"Select a card" : "Valitse kortti",
"Link to card" : "Linkitä korttiin",
"Cancel" : "Peruuta",
"File already exists" : "Tiedosto on jo olemassa",
"A file with the name {filename} already exists." : "Tiedosto nimellä {filename} on jo olemassa.",
"Do you want to overwrite it?" : "Haluatko ylikirjoittaa sen?",
@@ -122,24 +100,19 @@ OC.L10N.register(
"Next 7 days" : "Seuraavat 7 päivää",
"Next 30 days" : "Seuraavat 30 päivää",
"No due date" : "Ei eräpäivää",
"Clear filter" : "Tyhjennä suodatin",
"Hide archived cards" : "Piilota arkistoidut kortit",
"Show archived cards" : "Näytä arkistoidut kortit",
"Toggle compact mode" : "Käytä kompaktia tilaa",
"Details" : "Tiedot",
"Loading board" : "Ladataan taulua",
"No lists available" : "Ei listoja saatavilla",
"Create a new list to add cards to this board" : "Lisää uusi lista lisätäksesi kortteja tälle taululle",
"Board not found" : "Taulua ei löydy",
"Sharing" : "Jakaminen",
"Tags" : "Tunnisteet",
"Deleted items" : "Poistetut tietueet",
"Timeline" : "Aikajana",
"Deleted lists" : "Poistetut listat",
"Undo" : "Kumoa",
"Deleted cards" : "Poistetut kortit",
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
"No participants found" : "Ei osallistujia löydetty",
"Board owner" : "Taulun omistaja",
"(Group)" : "(Ryhmä)",
"(Circle)" : "(Piiri)",
@@ -147,23 +120,20 @@ OC.L10N.register(
"Can share" : "Voi jakaa",
"Can manage" : "Voi hallita",
"Delete" : "Poista",
"Add a new list" : "Lisää uusi lista",
"Archive all cards" : "Arkistoi kaikki kortit",
"Delete list" : "Poista lista",
"Add card" : "Lisää kortti",
"Archive all cards in this list" : "Arkistoi kaikki kortit tässä listassa",
"Add a new card" : "Lisää uusi kortti",
"Card name" : "Kortin nimi",
"List deleted" : "Lista poistettu",
"Edit" : "Muokkaa",
"Add a new tag" : "Lisää uusi tunniste",
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
"Board name" : "Taulun nimi",
"Title" : "Otsikko",
"Members" : "Jäsenet",
"Upload attachment" : "Lähetä liite",
"Add this attachment" : "Lisää tämä liite",
"Delete Attachment" : "Poista liite",
"Restore Attachment" : "Palauta liite",
"File to share" : "Jaettava tiedosto",
"Attachments" : "Liitteet",
"Comments" : "Kommentit",
"Modified" : "Muokattu",
@@ -180,7 +150,6 @@ OC.L10N.register(
"Reply" : "Vastaa",
"Update" : "Päivitä",
"Description" : "Kuvaus",
"(Unsaved)" : "(Tallentamaton)",
"(Saving…)" : "(Tallennetaan…)",
"Formatting help" : "Muotoiluapu",
"Edit description" : "Muokkaa kuvausta",
@@ -188,14 +157,10 @@ OC.L10N.register(
"Add Attachment" : "Lisää liite",
"Choose attachment" : "Valitse liite",
"(group)" : "(ryhmä)",
"Assign to me" : "Määritä minulle",
"Unassign myself" : "Poista määritys minulta",
"Move card" : "Siirrä kortti",
"Unarchive card" : "Poista kortti arkistosta",
"Archive card" : "Arkistoi kortti",
"Delete card" : "Poista kortti",
"Move card to another board" : "Siirrä kortti toiselle taululle",
"Card deleted" : "Kortti poistettu",
"seconds ago" : "sekuntia sitten",
"All boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut",
@@ -203,24 +168,15 @@ OC.L10N.register(
"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.",
"Board details" : "Taulun tiedot",
"Edit board" : "Muokkaa taulua",
"Clone board" : "Monista taulu",
"All cards" : "Kaikki kortit",
"No notifications" : "Ei ilmoituksia",
"Delete board" : "Poista taulu",
"Board {0} deleted" : "Taulu {0} poistettu",
"No reminder" : "Ei muistutusta",
"An error occurred" : "Tapahtui virhe",
"Delete the board?" : "Poistetaanko tämä taulu?",
"Today" : "Tänään",
"Tomorrow" : "Huomenna",
"This week" : "Tällä viikolla",
"No upcoming cards" : "Ei tulevia kortteja",
"upcoming cards" : "tulevat kortit",
"Link to a board" : "Linkki taululle",
"Link to a card" : "Linkitä korttiin",
"Create a card" : "Luo kortti",
"Something went wrong" : "Jokin meni vikaan",
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
"Share" : "Jaa"
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -15,20 +15,8 @@
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
"You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
"{user} has unarchived the board {before}" : "{user} palautti taulun {before} arkistosta",
"You have created a new list {stack} on board {board}" : "Olet lisännyt listan {stack} taululle {board}",
"{user} has created a new list {stack} on board {board}" : "{user} on lisännyt uuden listan {stack} taululle {board}",
"You have renamed list {before} to {stack} on board {board}" : "Muutit listan {before} nimeksi {stack} taululla {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} muutti listan {before} nimeksi {stack} taululla {board}",
"You have deleted list {stack} on board {board}" : "Olet poistanut listan {stack} taululta {board}",
"{user} has deleted list {stack} on board {board}" : "{user} on poistanut listan {stack} taululta {board}",
"You have created card {card} in list {stack} on board {board}" : "Olet lisännyt kortin {card} listaan {stack} taululla {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} on lisännyt kortin {card} listaan {stack} taululla {board}",
"You have deleted card {card} in list {stack} on board {board}" : "Olet poistanut kortin {card} listasta {stack} taululla {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} on poistanut kortin {card} listasta {stack} taululla {board}",
"You have renamed the card {before} to {card}" : "Muutit 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}",
"{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 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}",
"You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}",
@@ -53,10 +41,8 @@
"Deck" : "Pakka",
"Changes in the <strong>Deck app</strong>" : "Muutokset <strong>Pakka-sovelluksessa</strong>",
"A <strong>comment</strong> was created on a card" : "<strong>Kommentti</strong> luotiin kortille",
"Upcoming cards" : "Tulevat kortit",
"Personal" : "Henkilökohtainen",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} on asettanut kortin \"%s\" taululla \"%s\" sinulle.",
"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\".",
"{user} has mentioned you in a comment on \"%s\"." : "{user} mainitsi sinut kommentissa kortilla \"%s\".",
@@ -82,24 +68,16 @@
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
"A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen",
"No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
"Card not found" : "Korttia ei löydy",
"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" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa",
"Card details" : "Näytä kortin sisältö",
"Add board" : "Lisää taulu",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Search by board title" : "Hae taulun otsikon mukaan",
"Select board" : "Valitse taulu",
"Create a new card" : "Luo uusi kortti",
"Select a board" : "Valitse taulu",
"Select a list" : "Valitse lista ",
"Card title" : "Kortin otsikko",
"Cancel" : "Peruuta",
"Open card" : "Avaa kortti",
"Close" : "Sulje",
"Create card" : "Luo kortti",
"Select a card" : "Valitse kortti",
"Select the card to link to a project" : "Valitse projektiin linkitettävä kortti",
"Select a board" : "Valitse taulu",
"Select a card" : "Valitse kortti",
"Link to card" : "Linkitä korttiin",
"Cancel" : "Peruuta",
"File already exists" : "Tiedosto on jo olemassa",
"A file with the name {filename} already exists." : "Tiedosto nimellä {filename} on jo olemassa.",
"Do you want to overwrite it?" : "Haluatko ylikirjoittaa sen?",
@@ -120,24 +98,19 @@
"Next 7 days" : "Seuraavat 7 päivää",
"Next 30 days" : "Seuraavat 30 päivää",
"No due date" : "Ei eräpäivää",
"Clear filter" : "Tyhjennä suodatin",
"Hide archived cards" : "Piilota arkistoidut kortit",
"Show archived cards" : "Näytä arkistoidut kortit",
"Toggle compact mode" : "Käytä kompaktia tilaa",
"Details" : "Tiedot",
"Loading board" : "Ladataan taulua",
"No lists available" : "Ei listoja saatavilla",
"Create a new list to add cards to this board" : "Lisää uusi lista lisätäksesi kortteja tälle taululle",
"Board not found" : "Taulua ei löydy",
"Sharing" : "Jakaminen",
"Tags" : "Tunnisteet",
"Deleted items" : "Poistetut tietueet",
"Timeline" : "Aikajana",
"Deleted lists" : "Poistetut listat",
"Undo" : "Kumoa",
"Deleted cards" : "Poistetut kortit",
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
"No participants found" : "Ei osallistujia löydetty",
"Board owner" : "Taulun omistaja",
"(Group)" : "(Ryhmä)",
"(Circle)" : "(Piiri)",
@@ -145,23 +118,20 @@
"Can share" : "Voi jakaa",
"Can manage" : "Voi hallita",
"Delete" : "Poista",
"Add a new list" : "Lisää uusi lista",
"Archive all cards" : "Arkistoi kaikki kortit",
"Delete list" : "Poista lista",
"Add card" : "Lisää kortti",
"Archive all cards in this list" : "Arkistoi kaikki kortit tässä listassa",
"Add a new card" : "Lisää uusi kortti",
"Card name" : "Kortin nimi",
"List deleted" : "Lista poistettu",
"Edit" : "Muokkaa",
"Add a new tag" : "Lisää uusi tunniste",
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
"Board name" : "Taulun nimi",
"Title" : "Otsikko",
"Members" : "Jäsenet",
"Upload attachment" : "Lähetä liite",
"Add this attachment" : "Lisää tämä liite",
"Delete Attachment" : "Poista liite",
"Restore Attachment" : "Palauta liite",
"File to share" : "Jaettava tiedosto",
"Attachments" : "Liitteet",
"Comments" : "Kommentit",
"Modified" : "Muokattu",
@@ -178,7 +148,6 @@
"Reply" : "Vastaa",
"Update" : "Päivitä",
"Description" : "Kuvaus",
"(Unsaved)" : "(Tallentamaton)",
"(Saving…)" : "(Tallennetaan…)",
"Formatting help" : "Muotoiluapu",
"Edit description" : "Muokkaa kuvausta",
@@ -186,14 +155,10 @@
"Add Attachment" : "Lisää liite",
"Choose attachment" : "Valitse liite",
"(group)" : "(ryhmä)",
"Assign to me" : "Määritä minulle",
"Unassign myself" : "Poista määritys minulta",
"Move card" : "Siirrä kortti",
"Unarchive card" : "Poista kortti arkistosta",
"Archive card" : "Arkistoi kortti",
"Delete card" : "Poista kortti",
"Move card to another board" : "Siirrä kortti toiselle taululle",
"Card deleted" : "Kortti poistettu",
"seconds ago" : "sekuntia sitten",
"All boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut",
@@ -201,24 +166,15 @@
"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.",
"Board details" : "Taulun tiedot",
"Edit board" : "Muokkaa taulua",
"Clone board" : "Monista taulu",
"All cards" : "Kaikki kortit",
"No notifications" : "Ei ilmoituksia",
"Delete board" : "Poista taulu",
"Board {0} deleted" : "Taulu {0} poistettu",
"No reminder" : "Ei muistutusta",
"An error occurred" : "Tapahtui virhe",
"Delete the board?" : "Poistetaanko tämä taulu?",
"Today" : "Tänään",
"Tomorrow" : "Huomenna",
"This week" : "Tällä viikolla",
"No upcoming cards" : "Ei tulevia kortteja",
"upcoming cards" : "tulevat kortit",
"Link to a board" : "Linkki taululle",
"Link to a card" : "Linkitä korttiin",
"Create a card" : "Luo kortti",
"Something went wrong" : "Jokin meni vikaan",
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
"Share" : "Jaa"
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -97,9 +97,6 @@ OC.L10N.register(
"Could not write file to disk" : "Impossible d'écrire le fichier sur le disque",
"A PHP extension stopped the file upload" : "Une extension PHP a arrêté l'envoi du fichier",
"No file uploaded or file size exceeds maximum of %s" : "Aucun fichier envoyé ou la taille du fichier dépasse le maximum de %s",
"Card not found" : "Carte introuvable",
"Path is already shared with this card" : "Le chemin est déjà partagé avec cette carte",
"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",
"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- 📎 Attachez 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",
@@ -107,12 +104,11 @@ OC.L10N.register(
"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",
"Select board" : "Sélectionner le tableau",
"Select a board" : "Sélectionner un tableau",
"Select a list" : "Sélectionner une liste",
"Cancel" : "Annuler",
"Select a card" : "Sélectionnez une carte",
"Select the card to link to a project" : "Sélectionner la carte à relier à un projet",
"Select a board" : "Sélectionner un tableau",
"Select a card" : "Sélectionnez une carte",
"Link to card" : "Relier à une carte",
"Cancel" : "Annuler",
"File already exists" : "Le fichier existe déjà",
"A file with the name {filename} already exists." : "Un fichier avec le nom {filename} existe déjà.",
"Do you want to overwrite it?" : "Souhaitez-vous l'écraser ?",
@@ -171,16 +167,12 @@ OC.L10N.register(
"Edit" : "Modifier",
"Add a new tag" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
"Board name" : "Nom du tableau",
"Title" : "Titre",
"Members" : "Membres",
"Upload new files" : "Téléverser de nouveaux fichiers",
"Share from Files" : "Partager vos fichiers déjà stockés",
"Upload attachment" : "Envoyer une pièce jointe",
"Add this attachment" : "Ajouter cette pièce jointe",
"Unshare file" : "Ne plus partager le fichier",
"Delete Attachment" : "Supprimer la pièce jointe",
"Restore Attachment" : "Restaurer la pièce jointe",
"File to share" : "Fichier à partager",
"Invalid path selected" : "Chemin sélectionné non valide",
"Open in sidebar view" : "Ouvrir dans la barre latérale",
"Open in bigger view" : "Ouvrir dans la vue principale",
"Attachments" : "Pièces jointes",
@@ -210,7 +202,6 @@ OC.L10N.register(
"Edit description" : "Modifier la description",
"View description" : "Afficher la description",
"Add Attachment" : "Ajouter une pièce jointe",
"Write a description …" : "Écrire une description ...",
"Choose attachment" : "Choisir une pièce jointe",
"(group)" : "(groupe)",
"(circle)" : "(cercle)",
@@ -221,29 +212,25 @@ OC.L10N.register(
"Archive card" : "Archiver la carte",
"Delete card" : "Supprimer la carte",
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
"Select a list" : "Sélectionner une liste",
"Card deleted" : "Carte supprimée",
"seconds ago" : "à l'instant",
"All boards" : "Tous les tableaux",
"Archived boards" : "Tableaux archivés",
"Shared with you" : "Partagés avec vous",
"Use bigger card view" : "Utiliser la vue large des cartes",
"Use modal card view" : "Utiliser la vue modale",
"Show boards in calendar/tasks" : "Afficher les tableaux dans les agendas/tâches",
"Limit deck usage of groups" : "Limiter l'utilisation du tableau 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.",
"Board name" : "Nom du tableau",
"Board details" : "Détails du tableau",
"Edit board" : "Modifier le tableau",
"Clone board" : "Dupliquer le tableau",
"Unarchive board" : "Désarchiver le tableau",
"Archive board" : "Archiver le tableau",
"Turn on due date reminders" : "Activer les rappels",
"Turn off due date reminders" : "Désactiver les rappels",
"Due date reminders" : "Rappels",
"All cards" : "Toutes les cartes",
"Assigned cards" : "Cartes assignées",
"No notifications" : "Aucune notification",
"Delete board" : "Supprimer le tableau",
"Board {0} deleted" : "Tableau {0} supprimé",
"Only assigned cards" : "Uniquement les cartes assignées",
"No reminder" : "Aucun rappel",
"An error occurred" : "Une erreur est survenue",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
@@ -258,9 +245,6 @@ OC.L10N.register(
"Link to a board" : "Relier à un tableau",
"Link to a card" : "Relier à une carte",
"Something went wrong" : "Quelque chose s'est mal passé",
"Failed to upload {name}" : "Échec d'envoi de {name}",
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée",
"Error creating the share" : "Erreur lors de la création du partage",
"Share" : "Partager"
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée"
},
"nplurals=2; plural=(n > 1);");

View File

@@ -95,9 +95,6 @@
"Could not write file to disk" : "Impossible d'écrire le fichier sur le disque",
"A PHP extension stopped the file upload" : "Une extension PHP a arrêté l'envoi du fichier",
"No file uploaded or file size exceeds maximum of %s" : "Aucun fichier envoyé ou la taille du fichier dépasse le maximum de %s",
"Card not found" : "Carte introuvable",
"Path is already shared with this card" : "Le chemin est déjà partagé avec cette carte",
"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",
"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- 📎 Attachez 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",
@@ -105,12 +102,11 @@
"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",
"Select board" : "Sélectionner le tableau",
"Select a board" : "Sélectionner un tableau",
"Select a list" : "Sélectionner une liste",
"Cancel" : "Annuler",
"Select a card" : "Sélectionnez une carte",
"Select the card to link to a project" : "Sélectionner la carte à relier à un projet",
"Select a board" : "Sélectionner un tableau",
"Select a card" : "Sélectionnez une carte",
"Link to card" : "Relier à une carte",
"Cancel" : "Annuler",
"File already exists" : "Le fichier existe déjà",
"A file with the name {filename} already exists." : "Un fichier avec le nom {filename} existe déjà.",
"Do you want to overwrite it?" : "Souhaitez-vous l'écraser ?",
@@ -169,16 +165,12 @@
"Edit" : "Modifier",
"Add a new tag" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
"Board name" : "Nom du tableau",
"Title" : "Titre",
"Members" : "Membres",
"Upload new files" : "Téléverser de nouveaux fichiers",
"Share from Files" : "Partager vos fichiers déjà stockés",
"Upload attachment" : "Envoyer une pièce jointe",
"Add this attachment" : "Ajouter cette pièce jointe",
"Unshare file" : "Ne plus partager le fichier",
"Delete Attachment" : "Supprimer la pièce jointe",
"Restore Attachment" : "Restaurer la pièce jointe",
"File to share" : "Fichier à partager",
"Invalid path selected" : "Chemin sélectionné non valide",
"Open in sidebar view" : "Ouvrir dans la barre latérale",
"Open in bigger view" : "Ouvrir dans la vue principale",
"Attachments" : "Pièces jointes",
@@ -208,7 +200,6 @@
"Edit description" : "Modifier la description",
"View description" : "Afficher la description",
"Add Attachment" : "Ajouter une pièce jointe",
"Write a description …" : "Écrire une description ...",
"Choose attachment" : "Choisir une pièce jointe",
"(group)" : "(groupe)",
"(circle)" : "(cercle)",
@@ -219,29 +210,25 @@
"Archive card" : "Archiver la carte",
"Delete card" : "Supprimer la carte",
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
"Select a list" : "Sélectionner une liste",
"Card deleted" : "Carte supprimée",
"seconds ago" : "à l'instant",
"All boards" : "Tous les tableaux",
"Archived boards" : "Tableaux archivés",
"Shared with you" : "Partagés avec vous",
"Use bigger card view" : "Utiliser la vue large des cartes",
"Use modal card view" : "Utiliser la vue modale",
"Show boards in calendar/tasks" : "Afficher les tableaux dans les agendas/tâches",
"Limit deck usage of groups" : "Limiter l'utilisation du tableau 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.",
"Board name" : "Nom du tableau",
"Board details" : "Détails du tableau",
"Edit board" : "Modifier le tableau",
"Clone board" : "Dupliquer le tableau",
"Unarchive board" : "Désarchiver le tableau",
"Archive board" : "Archiver le tableau",
"Turn on due date reminders" : "Activer les rappels",
"Turn off due date reminders" : "Désactiver les rappels",
"Due date reminders" : "Rappels",
"All cards" : "Toutes les cartes",
"Assigned cards" : "Cartes assignées",
"No notifications" : "Aucune notification",
"Delete board" : "Supprimer le tableau",
"Board {0} deleted" : "Tableau {0} supprimé",
"Only assigned cards" : "Uniquement les cartes assignées",
"No reminder" : "Aucun rappel",
"An error occurred" : "Une erreur est survenue",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
@@ -256,9 +243,6 @@
"Link to a board" : "Relier à un tableau",
"Link to a card" : "Relier à une carte",
"Something went wrong" : "Quelque chose s'est mal passé",
"Failed to upload {name}" : "Échec d'envoi de {name}",
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée",
"Error creating the share" : "Erreur lors de la création du partage",
"Share" : "Partager"
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}

View File

@@ -97,9 +97,6 @@ OC.L10N.register(
"Could not write file to disk" : "Non foi posíbel escribir o ficheiro no disco",
"A PHP extension stopped the file upload" : "Unha extensión PHP detivo o envío de ficheiros",
"No file uploaded or file size exceeds maximum of %s" : "Non se enviou ningún ficheiro ou o tamaño do ficheiro supera o máximo de %s",
"Card not found" : "Non se atopou a 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 date debe ser AAAA-MM-DD",
"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" : "Deck é 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 insíraos 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",
@@ -107,19 +104,11 @@ OC.L10N.register(
"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",
"Select board" : "Seleccionar taboleiro",
"Create a new card" : "Crear unha nova tarxeta",
"Select a board" : "Seleccione un taboleiro",
"Select a list" : "Seleccionar unha lista",
"Card title" : "Título da tarxeta",
"Cancel" : "Cancelar",
"Creating the new card…" : "Creando unha nova tarxeta…",
"\"{card}\" was added to \"{board}\"" : "«{card}» foi engdida a «{board}»",
"Open card" : "Abrir a tarxeta",
"Close" : "Pechar",
"Create card" : "Crear tarxeta",
"Select a card" : "Seleccione unha tarxeta",
"Select the card to link to a project" : "Seleccione a tarxeta para ligar a un proxecto",
"Select a board" : "Seleccione un taboleiro",
"Select a card" : "Seleccione unha tarxeta",
"Link to card" : "Ligar á tarxeta",
"Cancel" : "Cancelar",
"File already exists" : "O ficheiro xa existe",
"A file with the name {filename} already exists." : "Xa existe un ficheiro co nome {filename}.",
"Do you want to overwrite it?" : "Quere sobrescribilo?",
@@ -178,17 +167,12 @@ OC.L10N.register(
"Edit" : "Editar",
"Add a new tag" : "Engadir unha nova etiqueta",
"title and color value must be provided" : "debe indicar o título e o valor da cor",
"Board name" : "Nome do taboleiro",
"Title" : "Título",
"Members" : "Membros",
"Upload new files" : "Enviar novos ficheiros",
"Share from Files" : "Compartir dende «Ficheiros»",
"Upload attachment" : "Enviar anexos",
"Add this attachment" : "Engadir este anexo",
"Show in Files" : "Amosar en Ficheiros",
"Unshare file" : "Deixar de compartir o ficheiro",
"Delete Attachment" : "Eliminar o anexo",
"Restore Attachment" : "Restaurar o anexo",
"File to share" : "Ficheiro para compartir",
"Invalid path selected" : "Seleccionou unha ruta incorrecta.",
"Open in sidebar view" : "Abrir na vista da barra lateral",
"Open in bigger view" : "Abrir nunha vista máis grande",
"Attachments" : "Anexos",
@@ -218,7 +202,6 @@ OC.L10N.register(
"Edit description" : "Editar a descrición",
"View description" : "Ver a descrición",
"Add Attachment" : "Engadir o anexo",
"Write a description …" : "Escriba unha descrición…",
"Choose attachment" : "Escoller o anexo",
"(group)" : "(grupo)",
"(circle)" : "(círculo)",
@@ -229,30 +212,20 @@ OC.L10N.register(
"Archive card" : "Arquivar a tarxeta",
"Delete card" : "Eliminar tarxeta",
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
"Select a list" : "Seleccionar unha lista",
"Card deleted" : "Tarxeta eliminada",
"seconds ago" : "hai uns segundos",
"All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
"Shared with you" : "Compartido con vostede",
"Use bigger card view" : "Usa a vista de tarxeta máis grande",
"Use modal card view" : "Usar a vista de tarxeta modal",
"Show boards in calendar/tasks" : "Amosar taboleiros no calendario/tarefas",
"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 Deck 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.",
"Board name" : "Nome do taboleiro",
"Board details" : "Detalles do taboleiro",
"Edit board" : "Editar taboleiro",
"Clone board" : "Clonar taboleiro",
"Unarchive board" : "Desarquivar taboleiro",
"Archive board" : "Arquivar taboleiro",
"Turn on due date reminders" : "Activar os lembretes de data de caducidade",
"Turn off due date reminders" : "Desctivar os lembretes de data de caducidade",
"Due date reminders" : "Lembretes de data de caducidade",
"All cards" : "Todas as tarxeta",
"Assigned cards" : "Tarxetas asignadas",
"No notifications" : "Non hai notificacións",
"Delete board" : "Eliminar taboleiro",
"Board {0} deleted" : "Eliminouse o taboleiro {0}",
"Only assigned cards" : "Só as tarxetas asignadas",
"No reminder" : "Non hai lembretes",
"An error occurred" : "Produciuse un erro",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
"Delete the board?" : "Eliminar o taboleiro?",
@@ -265,14 +238,7 @@ OC.L10N.register(
"upcoming cards" : "tarxetas próximas",
"Link to a board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta",
"Create a card" : "Crear unha tarxeta",
"Message from {author} in {conversationName}" : "Mensaxe de {author} en {conversationName}",
"Something went wrong" : "Algo foi mal",
"Failed to upload {name}" : "Produciuse un fallo ao actualizar {name}",
"Maximum file size of {size} exceeded" : "Excedeuse o tamaño máximo de ficheiro de {size}",
"Error creating the share" : "Produciuse un erro ao crear a compartición",
"Share with a Deck card" : "Compartir cunha tarxeta Deck",
"Share {file} with a Deck card" : "Compartir {file} cunha tarxeta Deck",
"Share" : "Compartir"
"Maximum file size of {size} exceeded" : "Excedeuse o tamaño máximo de ficheiro de {size}"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -95,9 +95,6 @@
"Could not write file to disk" : "Non foi posíbel escribir o ficheiro no disco",
"A PHP extension stopped the file upload" : "Unha extensión PHP detivo o envío de ficheiros",
"No file uploaded or file size exceeds maximum of %s" : "Non se enviou ningún ficheiro ou o tamaño do ficheiro supera o máximo de %s",
"Card not found" : "Non se atopou a 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 date debe ser AAAA-MM-DD",
"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" : "Deck é 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 insíraos 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",
@@ -105,19 +102,11 @@
"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",
"Select board" : "Seleccionar taboleiro",
"Create a new card" : "Crear unha nova tarxeta",
"Select a board" : "Seleccione un taboleiro",
"Select a list" : "Seleccionar unha lista",
"Card title" : "Título da tarxeta",
"Cancel" : "Cancelar",
"Creating the new card…" : "Creando unha nova tarxeta…",
"\"{card}\" was added to \"{board}\"" : "«{card}» foi engdida a «{board}»",
"Open card" : "Abrir a tarxeta",
"Close" : "Pechar",
"Create card" : "Crear tarxeta",
"Select a card" : "Seleccione unha tarxeta",
"Select the card to link to a project" : "Seleccione a tarxeta para ligar a un proxecto",
"Select a board" : "Seleccione un taboleiro",
"Select a card" : "Seleccione unha tarxeta",
"Link to card" : "Ligar á tarxeta",
"Cancel" : "Cancelar",
"File already exists" : "O ficheiro xa existe",
"A file with the name {filename} already exists." : "Xa existe un ficheiro co nome {filename}.",
"Do you want to overwrite it?" : "Quere sobrescribilo?",
@@ -176,17 +165,12 @@
"Edit" : "Editar",
"Add a new tag" : "Engadir unha nova etiqueta",
"title and color value must be provided" : "debe indicar o título e o valor da cor",
"Board name" : "Nome do taboleiro",
"Title" : "Título",
"Members" : "Membros",
"Upload new files" : "Enviar novos ficheiros",
"Share from Files" : "Compartir dende «Ficheiros»",
"Upload attachment" : "Enviar anexos",
"Add this attachment" : "Engadir este anexo",
"Show in Files" : "Amosar en Ficheiros",
"Unshare file" : "Deixar de compartir o ficheiro",
"Delete Attachment" : "Eliminar o anexo",
"Restore Attachment" : "Restaurar o anexo",
"File to share" : "Ficheiro para compartir",
"Invalid path selected" : "Seleccionou unha ruta incorrecta.",
"Open in sidebar view" : "Abrir na vista da barra lateral",
"Open in bigger view" : "Abrir nunha vista máis grande",
"Attachments" : "Anexos",
@@ -216,7 +200,6 @@
"Edit description" : "Editar a descrición",
"View description" : "Ver a descrición",
"Add Attachment" : "Engadir o anexo",
"Write a description …" : "Escriba unha descrición…",
"Choose attachment" : "Escoller o anexo",
"(group)" : "(grupo)",
"(circle)" : "(círculo)",
@@ -227,30 +210,20 @@
"Archive card" : "Arquivar a tarxeta",
"Delete card" : "Eliminar tarxeta",
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
"Select a list" : "Seleccionar unha lista",
"Card deleted" : "Tarxeta eliminada",
"seconds ago" : "hai uns segundos",
"All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
"Shared with you" : "Compartido con vostede",
"Use bigger card view" : "Usa a vista de tarxeta máis grande",
"Use modal card view" : "Usar a vista de tarxeta modal",
"Show boards in calendar/tasks" : "Amosar taboleiros no calendario/tarefas",
"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 Deck 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.",
"Board name" : "Nome do taboleiro",
"Board details" : "Detalles do taboleiro",
"Edit board" : "Editar taboleiro",
"Clone board" : "Clonar taboleiro",
"Unarchive board" : "Desarquivar taboleiro",
"Archive board" : "Arquivar taboleiro",
"Turn on due date reminders" : "Activar os lembretes de data de caducidade",
"Turn off due date reminders" : "Desctivar os lembretes de data de caducidade",
"Due date reminders" : "Lembretes de data de caducidade",
"All cards" : "Todas as tarxeta",
"Assigned cards" : "Tarxetas asignadas",
"No notifications" : "Non hai notificacións",
"Delete board" : "Eliminar taboleiro",
"Board {0} deleted" : "Eliminouse o taboleiro {0}",
"Only assigned cards" : "Só as tarxetas asignadas",
"No reminder" : "Non hai lembretes",
"An error occurred" : "Produciuse un erro",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
"Delete the board?" : "Eliminar o taboleiro?",
@@ -263,14 +236,7 @@
"upcoming cards" : "tarxetas próximas",
"Link to a board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta",
"Create a card" : "Crear unha tarxeta",
"Message from {author} in {conversationName}" : "Mensaxe de {author} en {conversationName}",
"Something went wrong" : "Algo foi mal",
"Failed to upload {name}" : "Produciuse un fallo ao actualizar {name}",
"Maximum file size of {size} exceeded" : "Excedeuse o tamaño máximo de ficheiro de {size}",
"Error creating the share" : "Produciuse un erro ao crear a compartición",
"Share with a Deck card" : "Compartir cunha tarxeta Deck",
"Share {file} with a Deck card" : "Compartir {file} cunha tarxeta Deck",
"Share" : "Compartir"
"Maximum file size of {size} exceeded" : "Excedeuse o tamaño máximo de ficheiro de {size}"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -17,57 +17,14 @@ OC.L10N.register(
"{user} has archived the board {before}" : "הארכיון {before} הועבר לארכיון על ידי {user}",
"You have unarchived the board {board}" : "הוצאת את הלוח {board} מהארכיון",
"{user} has unarchived the board {before}" : "הלוח {before} הוצא מהארכיון על ידי {user}",
"You have created a new list {stack} on board {board}" : "יצרת רשימה חדשה {stack} על הלוח {board}",
"{user} has created a new list {stack} on board {board}" : "{user} יצר רשימה חדשה {stack} על הלוח {board}",
"You have renamed list {before} to {stack} on board {board}" : "שינית את שם הרשימה {לפני} ל- {stack} על הלוח {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} שינה את שם הרשימה {לפני} ל- {stack} על הלוח {board}",
"You have deleted list {stack} on board {board}" : "מחקת את הרשימה {stack} על הלוח {board}",
"{user} has deleted list {stack} on board {board}" : "{user} מחק את הרשימה {stack} על הלוח {board}",
"You have created card {card} in list {stack} on board {board}" : "יצרת כרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} יצר כרטיס {card} ברשימה {stack} על הלוח {board}",
"You have deleted card {card} in list {stack} on board {board}" : "מחקת את הכרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} מחק את הכרטיס {card} ברשימה {stack} על הלוח {board}",
"You have renamed the card {before} to {card}" : "שינית את שם הכרטיס {before} ל- {card}",
"{user} has renamed the card {before} to {card}" : "{user} שינה את שם הכרטיס {לפני} ל- {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "הוספת תיאור לכרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} הוסיף תיאור לכרטיס {card} ברשימה {stack} על הלוח {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "עדכנת את תיאור הכרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} עדכן את תיאור הכרטיס {card} ברשימה {stack} על הלוח {board}",
"You have archived card {card} in list {stack} on board {board}" : "שמרת כרטיס {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}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "ל-{user} יש כרטיס {card} שלא הועבר לארכיון ברשימה {stack} על הלוח {board}",
"You have removed the due date of card {card}" : "הסרת את מועד היעד מהכרטיס {card}",
"{user} has removed the due date of card {card}" : "מועד היעד של הכרטיס {card} הוסר על ידי {user}",
"You have set the due date of card {card} to {after}" : "הגדרת את תאריך היעד של הכרטיס {card} ל- {after}",
"{user} has set the due date of card {card} to {after}" : "{user} הגדיר את תאריך היעד של הכרטיס {card} ל- {after}",
"You have updated the due date of card {card} to {after}" : "עדכנת את תאריך היעד של הכרטיס {card} ל- {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} עדכן את תאריך היעד של הכרטיס {card} ל- {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "הוספת את התג {label} לכרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} הוסיף את התג {label} לכרטיס {card} ברשימה {stack} על הלוח {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "הסרת את התג {label} מכרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} הסיר את התג {label} מכרטיס {card} ברשימה {stack} על הלוח {board}",
"You have assigned {assigneduser} to card {card} on board {board}" : "הקצית {assigneduser} לכרטיס {card} על הלוח {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} הקצה את {assigneduser} לכרטיס {card} על הלוח {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "בטלת את הקצאת {assigneduser} מכרטיס {card} על הלוח {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} ביטל את ההקצאה של {assigneduser} מכרטיס {card} על הלוח {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "העברת את הכרטיס {card} מהרשימה {stackBefore} ל- {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} העביר את הכרטיס {card} מהרשימה {stackBefore} ל- {stack}",
"You have added the attachment {attachment} to card {card}" : "הוספת את הקובץ המצורף {attachment} לכרטיס {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} הוסיף את הקובץ המצורף {attachment} לכרטיס {card}",
"You have updated the attachment {attachment} on card {card}" : "עדכנת את הקובץ המצורף {attachment} בכרטיס {card}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} עדכן את הקובץ המצורף {attachment} בכרטיס {card}",
"You have deleted the attachment {attachment} from card {card}" : "מחקת את הקובץ המצורף {attachment} מכרטיס {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} מחק את הקובץ המצורף {attachment} מכרטיס {card}",
"You have restored the attachment {attachment} to card {card}" : "שחזרת את הקובץ המצורף {attachment} לכרטיס {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} שיחזר את הקובץ המצורף {attachment} לכרטיס {card}",
"You have commented on card {card}" : "הגבת על הכרטיס {cart}",
"{user} has commented on card {card}" : "נוספה תגובה מאת {user} על הכרטיס {card}",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>תיאור של כרטיס</strong> בתוך יישומון החבילה נערך",
"Deck" : "חפיסה",
"Changes in the <strong>Deck app</strong>" : "שינויים ל<strong>יישומון החבילה</strong>",
"A <strong>comment</strong> was created on a card" : "נוצרה <strong>הערה</strong> על כרטיס",
"Upcoming cards" : "כרטיסים עתידיים",
"Personal" : "אישי",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "הכרטיס \"%s\" שב־„%s” הוקצה אליך על ידי %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "הכרטיס „%s” שב„%s” הוקצה לך על ידי {user}.",
@@ -97,22 +54,17 @@ OC.L10N.register(
"Could not write file to disk" : "לא ניתן לכתוב לכונן",
"A PHP extension stopped the file upload" : "הרחבת PHP עצרה את העלאת הקובץ",
"No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s",
"Card not found" : "כרטיס לא נמצא",
"Path is already shared with this card" : "הנתיב כבר משותף עם הכרטיס הזה",
"Invalid date, date format must be YYYY-MM-DD" : "תאריך שגוי, תבנית התאריך חייבת להיות YYYY-MM-DD",
"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- 📎 צרף קבצים והטמע אותם בתיאור ה-markdown שלך\n- 💬 שוחח עם הצוות שלך באמצעות הערות\n- ⚡ עקוב אחר שינויים בזרם הפעילות\n- 🚀 ארגנו את הפרויקט שלכם",
"Card details" : "פרטי הכרטיס",
"Add board" : "הוספת לוח",
"Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם",
"Search by board title" : "חיפוש לפי כותרת לו",
"Select board" : "בחירת לוח",
"Select a board" : "נא לבחור לוח",
"Select a list" : "בחר רשימה",
"Cancel" : "ביטול",
"Select a card" : "נא לבחור כרטיס",
"Select the card to link to a project" : "נא לבחור את הכרטיס לקישור למיזם",
"Select a board" : "נא לבחור לוח",
"Select a card" : "נא לבחור כרטיס",
"Link to card" : "קישור לכרטיס",
"Cancel" : "ביטול",
"File already exists" : "הקובץ כבר קיים",
"A file with the name {filename} already exists." : "כבר קיים קובץ עם השם {filename}.",
"Do you want to overwrite it?" : "לשכתב עליו?",
@@ -126,7 +78,6 @@ OC.L10N.register(
"Apply filter" : "החלת מסנן",
"Filter by tag" : "סינון לפי תגית",
"Filter by assigned user" : "סינון לפי משתמש מוקצה",
"Unassigned" : "לא הוקצה",
"Filter by due date" : "סינון לפי תאריך יעד",
"Overdue" : "באיחור",
"Next 24 hours" : "ב־24 השעות הבאות",
@@ -139,8 +90,6 @@ OC.L10N.register(
"Toggle compact mode" : "החלפת מצב חסכוני",
"Details" : "פרטים",
"Loading board" : "הלוח נטען",
"No lists available" : "אין רשימות זמינות",
"Create a new list to add cards to this board" : "צור רשימה חדשה כדי להוסיף כרטיסים ללוח זה",
"Board not found" : "הלוח לא נמצא",
"Sharing" : "שיתוף",
"Tags" : "תגיות",
@@ -150,8 +99,6 @@ OC.L10N.register(
"Undo" : "ביטול",
"Deleted cards" : "כרטיסים שנמחקו",
"Share board with a user, group or circle …" : "שיתוף לוח עם משתמש, קבוצה או מעגל…",
"Searching for users, groups and circles …" : "מחפש משתמשים, קבוצות, ומעגלים ...",
"No participants found" : "לא נמצאו משתתפים",
"Board owner" : "בעלות על הלוח",
"(Group)" : "(קבוצה)",
"(Circle)" : "(מעגל)",
@@ -159,42 +106,28 @@ OC.L10N.register(
"Can share" : "Can share",
"Can manage" : "הרשאת ניהול",
"Delete" : "מחיקה",
"Failed to create share with {displayName}" : "יצירת השיתוף עם {displayName} נכשלה",
"Add a new list" : "הוסף רשימה חדשה",
"Archive all cards" : "ארכיב את כל הכרטיסים",
"Delete list" : "מחיקת רשימה",
"Add card" : "הוספת כרטיס",
"Archive all cards in this list" : "ארכיב את כל הכרטיסים ברשימה זו",
"Add a new card" : "הוספת כרטיס חדש",
"Card name" : "שם כרטיס",
"List deleted" : "הרשימה נמחקה",
"Edit" : "עריכה",
"Add a new tag" : "הוספת תגית חדשה",
"title and color value must be provided" : "יש לספק כותרת וערך צבע",
"Board name" : "שם הלוח",
"Title" : "תפקיד",
"Members" : "חברים",
"Upload new files" : "העלאת קבצים חדשים",
"Share from Files" : "שיתוף מקבצים",
"Upload attachment" : "העלאת קבצים מצורפים",
"Add this attachment" : "הוספת קובץ מצורף זה",
"Show in Files" : "הצגה בקבצים",
"Unshare file" : "ביטול שיתוף קובץ",
"Delete Attachment" : "מחיקת קובץ מצורף",
"Restore Attachment" : "שחזור קובץ מצורף",
"File to share" : "קובץ לשיתוף",
"Invalid path selected" : "הנתיב שנבחר שגוי",
"Open in sidebar view" : "פתח בתצוגת סרגל הצד",
"Open in bigger view" : "פתח בתצוגה גדולה יותר",
"Attachments" : "קבצים מצורפים",
"Comments" : "תגובות",
"Modified" : "מועד שינוי",
"Created" : "מועד היצירה",
"The title cannot be empty." : "הכותרת לא יכולה להיות ריקה.",
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
"Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…",
"Assign to users" : "הקצאה למשתמשים",
"Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים",
"Assign a user to this card…" : "הקצאת משתמש לכרטיס זה…",
"Due date" : "מועד יעד",
"Due date" : "מועד תפוגה",
"Set a due date" : "הגדרת תאריך יעד",
"Remove due date" : "הסרת מועד התפוגה",
"Select Date" : "בחירת תאריך",
@@ -204,66 +137,40 @@ OC.L10N.register(
"In reply to" : "בתגובה אל",
"Reply" : "תגובה",
"Update" : "עדכון",
"Description" : "תיאור",
"Description" : "תיאוג",
"(Unsaved)" : "(לא נשמר)",
"(Saving…)" : "(מתבצעת שמירה…)",
"Formatting help" : "עזרה בסידור בתבנית",
"Edit description" : "עריכת תיאור",
"View description" : "הצגת תיאור",
"Add Attachment" : "הוספת קובץ מצורף",
"Write a description …" : "כתוב תיאור ...",
"Choose attachment" : "בחירת קובץ מצורף",
"(group)" : "(קבוצה)",
"(circle)" : "(מעגל)",
"Assign to me" : "הקצאה אלי",
"Unassign myself" : "לבטל את הקצאת עצמי",
"Move card" : "העברת כרטיס",
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
"Archive card" : "העברת כרטיס לארכיון",
"Delete card" : "מחיקת כרטיס לארכיון",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"Card deleted" : "הכרטיס נמחק",
"seconds ago" : "לפני מספר שניות",
"All boards" : "כל הלוחות",
"Archived boards" : "לוחות שנשמרו בארכיון",
"Shared with you" : "משותף אתך",
"Use bigger card view" : "להשתמש בתצוגת כרטיסים גדולה יותר",
"Show boards in calendar/tasks" : "הצג הלוחות בלוח השנה/המשימות",
"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." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם.",
"Board details" : "פרטי לוח",
"Edit board" : "עריכת לוח",
"Clone board" : "שכפל את הלוח",
"Unarchive board" : "בטל ארכיון של הלוח",
"Archive board" : "העבר את הלוח לארכיון",
"Turn on due date reminders" : "הפעל תזכורות לתאריך היעד",
"Turn off due date reminders" : "השבת תזכורות לתאריך היעד",
"Due date reminders" : "תזכורות לתאריך יעד",
"All cards" : "כל הכרטיסים",
"Assigned cards" : "כרטיסים שהוקצו",
"No notifications" : "אין התראות",
"Delete board" : "מחק לוח",
"Board {0} deleted" : "הלוח {0} נמחק",
"Only assigned cards" : "רק כרטיסים שהוקצו",
"No reminder" : "אין תזכורת",
"An error occurred" : "אירעה שגיאה",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",
"Delete the board?" : "למחוק את הלוח הזה?",
"Loading filtered view" : "טוען תצוגה מסוננת",
"Today" : "היום",
"Tomorrow" : "מחר",
"This week" : "השבוע",
"No due" : "אין תאריך יעד",
"No upcoming cards" : "אין כרטיסים עתידיים",
"upcoming cards" : "כרטיסים עתידיים",
"Link to a board" : "קישור ללוח",
"Link to a card" : "קישור לכרטיס",
"Something went wrong" : "משהו השתבש",
"Failed to upload {name}" : "העלאת {name} נכשלה",
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג",
"Error creating the share" : "שגיאה ביצירת השיתוף",
"Share with a Deck card" : "שיתוף עם כרטיס חפיסה",
"Share {file} with a Deck card" : "שיתוף {file} עם כרטיס חפיסה",
"Share" : "שיתוף"
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג"
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;");

View File

@@ -15,57 +15,14 @@
"{user} has archived the board {before}" : "הארכיון {before} הועבר לארכיון על ידי {user}",
"You have unarchived the board {board}" : "הוצאת את הלוח {board} מהארכיון",
"{user} has unarchived the board {before}" : "הלוח {before} הוצא מהארכיון על ידי {user}",
"You have created a new list {stack} on board {board}" : "יצרת רשימה חדשה {stack} על הלוח {board}",
"{user} has created a new list {stack} on board {board}" : "{user} יצר רשימה חדשה {stack} על הלוח {board}",
"You have renamed list {before} to {stack} on board {board}" : "שינית את שם הרשימה {לפני} ל- {stack} על הלוח {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} שינה את שם הרשימה {לפני} ל- {stack} על הלוח {board}",
"You have deleted list {stack} on board {board}" : "מחקת את הרשימה {stack} על הלוח {board}",
"{user} has deleted list {stack} on board {board}" : "{user} מחק את הרשימה {stack} על הלוח {board}",
"You have created card {card} in list {stack} on board {board}" : "יצרת כרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} יצר כרטיס {card} ברשימה {stack} על הלוח {board}",
"You have deleted card {card} in list {stack} on board {board}" : "מחקת את הכרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} מחק את הכרטיס {card} ברשימה {stack} על הלוח {board}",
"You have renamed the card {before} to {card}" : "שינית את שם הכרטיס {before} ל- {card}",
"{user} has renamed the card {before} to {card}" : "{user} שינה את שם הכרטיס {לפני} ל- {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "הוספת תיאור לכרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} הוסיף תיאור לכרטיס {card} ברשימה {stack} על הלוח {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "עדכנת את תיאור הכרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} עדכן את תיאור הכרטיס {card} ברשימה {stack} על הלוח {board}",
"You have archived card {card} in list {stack} on board {board}" : "שמרת כרטיס {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}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "ל-{user} יש כרטיס {card} שלא הועבר לארכיון ברשימה {stack} על הלוח {board}",
"You have removed the due date of card {card}" : "הסרת את מועד היעד מהכרטיס {card}",
"{user} has removed the due date of card {card}" : "מועד היעד של הכרטיס {card} הוסר על ידי {user}",
"You have set the due date of card {card} to {after}" : "הגדרת את תאריך היעד של הכרטיס {card} ל- {after}",
"{user} has set the due date of card {card} to {after}" : "{user} הגדיר את תאריך היעד של הכרטיס {card} ל- {after}",
"You have updated the due date of card {card} to {after}" : "עדכנת את תאריך היעד של הכרטיס {card} ל- {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} עדכן את תאריך היעד של הכרטיס {card} ל- {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "הוספת את התג {label} לכרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} הוסיף את התג {label} לכרטיס {card} ברשימה {stack} על הלוח {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "הסרת את התג {label} מכרטיס {card} ברשימה {stack} על הלוח {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} הסיר את התג {label} מכרטיס {card} ברשימה {stack} על הלוח {board}",
"You have assigned {assigneduser} to card {card} on board {board}" : "הקצית {assigneduser} לכרטיס {card} על הלוח {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} הקצה את {assigneduser} לכרטיס {card} על הלוח {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "בטלת את הקצאת {assigneduser} מכרטיס {card} על הלוח {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} ביטל את ההקצאה של {assigneduser} מכרטיס {card} על הלוח {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "העברת את הכרטיס {card} מהרשימה {stackBefore} ל- {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} העביר את הכרטיס {card} מהרשימה {stackBefore} ל- {stack}",
"You have added the attachment {attachment} to card {card}" : "הוספת את הקובץ המצורף {attachment} לכרטיס {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} הוסיף את הקובץ המצורף {attachment} לכרטיס {card}",
"You have updated the attachment {attachment} on card {card}" : "עדכנת את הקובץ המצורף {attachment} בכרטיס {card}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} עדכן את הקובץ המצורף {attachment} בכרטיס {card}",
"You have deleted the attachment {attachment} from card {card}" : "מחקת את הקובץ המצורף {attachment} מכרטיס {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} מחק את הקובץ המצורף {attachment} מכרטיס {card}",
"You have restored the attachment {attachment} to card {card}" : "שחזרת את הקובץ המצורף {attachment} לכרטיס {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} שיחזר את הקובץ המצורף {attachment} לכרטיס {card}",
"You have commented on card {card}" : "הגבת על הכרטיס {cart}",
"{user} has commented on card {card}" : "נוספה תגובה מאת {user} על הכרטיס {card}",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>תיאור של כרטיס</strong> בתוך יישומון החבילה נערך",
"Deck" : "חפיסה",
"Changes in the <strong>Deck app</strong>" : "שינויים ל<strong>יישומון החבילה</strong>",
"A <strong>comment</strong> was created on a card" : "נוצרה <strong>הערה</strong> על כרטיס",
"Upcoming cards" : "כרטיסים עתידיים",
"Personal" : "אישי",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "הכרטיס \"%s\" שב־„%s” הוקצה אליך על ידי %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "הכרטיס „%s” שב„%s” הוקצה לך על ידי {user}.",
@@ -95,22 +52,17 @@
"Could not write file to disk" : "לא ניתן לכתוב לכונן",
"A PHP extension stopped the file upload" : "הרחבת PHP עצרה את העלאת הקובץ",
"No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s",
"Card not found" : "כרטיס לא נמצא",
"Path is already shared with this card" : "הנתיב כבר משותף עם הכרטיס הזה",
"Invalid date, date format must be YYYY-MM-DD" : "תאריך שגוי, תבנית התאריך חייבת להיות YYYY-MM-DD",
"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- 📎 צרף קבצים והטמע אותם בתיאור ה-markdown שלך\n- 💬 שוחח עם הצוות שלך באמצעות הערות\n- ⚡ עקוב אחר שינויים בזרם הפעילות\n- 🚀 ארגנו את הפרויקט שלכם",
"Card details" : "פרטי הכרטיס",
"Add board" : "הוספת לוח",
"Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם",
"Search by board title" : "חיפוש לפי כותרת לו",
"Select board" : "בחירת לוח",
"Select a board" : "נא לבחור לוח",
"Select a list" : "בחר רשימה",
"Cancel" : "ביטול",
"Select a card" : "נא לבחור כרטיס",
"Select the card to link to a project" : "נא לבחור את הכרטיס לקישור למיזם",
"Select a board" : "נא לבחור לוח",
"Select a card" : "נא לבחור כרטיס",
"Link to card" : "קישור לכרטיס",
"Cancel" : "ביטול",
"File already exists" : "הקובץ כבר קיים",
"A file with the name {filename} already exists." : "כבר קיים קובץ עם השם {filename}.",
"Do you want to overwrite it?" : "לשכתב עליו?",
@@ -124,7 +76,6 @@
"Apply filter" : "החלת מסנן",
"Filter by tag" : "סינון לפי תגית",
"Filter by assigned user" : "סינון לפי משתמש מוקצה",
"Unassigned" : "לא הוקצה",
"Filter by due date" : "סינון לפי תאריך יעד",
"Overdue" : "באיחור",
"Next 24 hours" : "ב־24 השעות הבאות",
@@ -137,8 +88,6 @@
"Toggle compact mode" : "החלפת מצב חסכוני",
"Details" : "פרטים",
"Loading board" : "הלוח נטען",
"No lists available" : "אין רשימות זמינות",
"Create a new list to add cards to this board" : "צור רשימה חדשה כדי להוסיף כרטיסים ללוח זה",
"Board not found" : "הלוח לא נמצא",
"Sharing" : "שיתוף",
"Tags" : "תגיות",
@@ -148,8 +97,6 @@
"Undo" : "ביטול",
"Deleted cards" : "כרטיסים שנמחקו",
"Share board with a user, group or circle …" : "שיתוף לוח עם משתמש, קבוצה או מעגל…",
"Searching for users, groups and circles …" : "מחפש משתמשים, קבוצות, ומעגלים ...",
"No participants found" : "לא נמצאו משתתפים",
"Board owner" : "בעלות על הלוח",
"(Group)" : "(קבוצה)",
"(Circle)" : "(מעגל)",
@@ -157,42 +104,28 @@
"Can share" : "Can share",
"Can manage" : "הרשאת ניהול",
"Delete" : "מחיקה",
"Failed to create share with {displayName}" : "יצירת השיתוף עם {displayName} נכשלה",
"Add a new list" : "הוסף רשימה חדשה",
"Archive all cards" : "ארכיב את כל הכרטיסים",
"Delete list" : "מחיקת רשימה",
"Add card" : "הוספת כרטיס",
"Archive all cards in this list" : "ארכיב את כל הכרטיסים ברשימה זו",
"Add a new card" : "הוספת כרטיס חדש",
"Card name" : "שם כרטיס",
"List deleted" : "הרשימה נמחקה",
"Edit" : "עריכה",
"Add a new tag" : "הוספת תגית חדשה",
"title and color value must be provided" : "יש לספק כותרת וערך צבע",
"Board name" : "שם הלוח",
"Title" : "תפקיד",
"Members" : "חברים",
"Upload new files" : "העלאת קבצים חדשים",
"Share from Files" : "שיתוף מקבצים",
"Upload attachment" : "העלאת קבצים מצורפים",
"Add this attachment" : "הוספת קובץ מצורף זה",
"Show in Files" : "הצגה בקבצים",
"Unshare file" : "ביטול שיתוף קובץ",
"Delete Attachment" : "מחיקת קובץ מצורף",
"Restore Attachment" : "שחזור קובץ מצורף",
"File to share" : "קובץ לשיתוף",
"Invalid path selected" : "הנתיב שנבחר שגוי",
"Open in sidebar view" : "פתח בתצוגת סרגל הצד",
"Open in bigger view" : "פתח בתצוגה גדולה יותר",
"Attachments" : "קבצים מצורפים",
"Comments" : "תגובות",
"Modified" : "מועד שינוי",
"Created" : "מועד היצירה",
"The title cannot be empty." : "הכותרת לא יכולה להיות ריקה.",
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
"Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…",
"Assign to users" : "הקצאה למשתמשים",
"Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים",
"Assign a user to this card…" : "הקצאת משתמש לכרטיס זה…",
"Due date" : "מועד יעד",
"Due date" : "מועד תפוגה",
"Set a due date" : "הגדרת תאריך יעד",
"Remove due date" : "הסרת מועד התפוגה",
"Select Date" : "בחירת תאריך",
@@ -202,66 +135,40 @@
"In reply to" : "בתגובה אל",
"Reply" : "תגובה",
"Update" : "עדכון",
"Description" : "תיאור",
"Description" : "תיאוג",
"(Unsaved)" : "(לא נשמר)",
"(Saving…)" : "(מתבצעת שמירה…)",
"Formatting help" : "עזרה בסידור בתבנית",
"Edit description" : "עריכת תיאור",
"View description" : "הצגת תיאור",
"Add Attachment" : "הוספת קובץ מצורף",
"Write a description …" : "כתוב תיאור ...",
"Choose attachment" : "בחירת קובץ מצורף",
"(group)" : "(קבוצה)",
"(circle)" : "(מעגל)",
"Assign to me" : "הקצאה אלי",
"Unassign myself" : "לבטל את הקצאת עצמי",
"Move card" : "העברת כרטיס",
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
"Archive card" : "העברת כרטיס לארכיון",
"Delete card" : "מחיקת כרטיס לארכיון",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"Card deleted" : "הכרטיס נמחק",
"seconds ago" : "לפני מספר שניות",
"All boards" : "כל הלוחות",
"Archived boards" : "לוחות שנשמרו בארכיון",
"Shared with you" : "משותף אתך",
"Use bigger card view" : "להשתמש בתצוגת כרטיסים גדולה יותר",
"Show boards in calendar/tasks" : "הצג הלוחות בלוח השנה/המשימות",
"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." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם.",
"Board details" : "פרטי לוח",
"Edit board" : "עריכת לוח",
"Clone board" : "שכפל את הלוח",
"Unarchive board" : "בטל ארכיון של הלוח",
"Archive board" : "העבר את הלוח לארכיון",
"Turn on due date reminders" : "הפעל תזכורות לתאריך היעד",
"Turn off due date reminders" : "השבת תזכורות לתאריך היעד",
"Due date reminders" : "תזכורות לתאריך יעד",
"All cards" : "כל הכרטיסים",
"Assigned cards" : "כרטיסים שהוקצו",
"No notifications" : "אין התראות",
"Delete board" : "מחק לוח",
"Board {0} deleted" : "הלוח {0} נמחק",
"Only assigned cards" : "רק כרטיסים שהוקצו",
"No reminder" : "אין תזכורת",
"An error occurred" : "אירעה שגיאה",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",
"Delete the board?" : "למחוק את הלוח הזה?",
"Loading filtered view" : "טוען תצוגה מסוננת",
"Today" : "היום",
"Tomorrow" : "מחר",
"This week" : "השבוע",
"No due" : "אין תאריך יעד",
"No upcoming cards" : "אין כרטיסים עתידיים",
"upcoming cards" : "כרטיסים עתידיים",
"Link to a board" : "קישור ללוח",
"Link to a card" : "קישור לכרטיס",
"Something went wrong" : "משהו השתבש",
"Failed to upload {name}" : "העלאת {name} נכשלה",
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג",
"Error creating the share" : "שגיאה ביצירת השיתוף",
"Share with a Deck card" : "שיתוף עם כרטיס חפיסה",
"Share {file} with a Deck card" : "שיתוף {file} עם כרטיס חפיסה",
"Share" : "שיתוף"
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"
}

View File

@@ -67,7 +67,6 @@ OC.L10N.register(
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Promjene u <strong>aplikaciji Deck</strong>",
"A <strong>comment</strong> was created on a card" : "Na kartici je stvoren <strong>komentar</strong>",
"Upcoming cards" : "Nadolazeće kartice",
"Personal" : "Osobno",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.",
@@ -97,9 +96,6 @@ OC.L10N.register(
"Could not write file to disk" : "Nije moguće zapisati datoteku na disk",
"A PHP extension stopped the file upload" : "Proširenje PHP-a zaustavilo je otpremanje datoteke",
"No file uploaded or file size exceeds maximum of %s" : "Nijedna datoteka nije otpremljena ili veličina datoteke premašuje maksimalnu veličinu od %s",
"Card not found" : "Kartica nije pronađena",
"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",
"Personal planning and team project organization" : "Osobno planiranje i organizacija timskih projekata",
"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 organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt",
"Card details" : "Pojedinosti o kartici",
@@ -107,19 +103,11 @@ OC.L10N.register(
"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",
"Select board" : "Odaberi ploču",
"Create a new card" : "Stvori novu karticu",
"Select a board" : "Odaberite ploču",
"Select a list" : "Odaberi popis",
"Card title" : "Naslov kartice",
"Cancel" : "Odustani",
"Creating the new card…" : "Stvaranje nove kartice…",
"\"{card}\" was added to \"{board}\"" : "„{card}” je dodano na „{board}”",
"Open card" : "Otvori karticu",
"Close" : "Zatvori",
"Create card" : "Stvori karticu",
"Select a card" : "Odaberite karticu",
"Select the card to link to a project" : "Odaberite karticu za povezivanje s projektom",
"Select a board" : "Odaberite ploču",
"Select a card" : "Odaberite karticu",
"Link to card" : "Poveznica na karticu",
"Cancel" : "Odustani",
"File already exists" : "Datoteka već postoji",
"A file with the name {filename} already exists." : "Datoteka s nazivom {filename} već postoji.",
"Do you want to overwrite it?" : "Želite li prepisati?",
@@ -157,8 +145,6 @@ OC.L10N.register(
"Undo" : "Poništi",
"Deleted cards" : "Izbrisane kartice",
"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...",
"No participants found" : "Nije pronađen nijedan sudionik",
"Board owner" : "Vlasnik ploče",
"(Group)" : "(Grupa)",
"(Circle)" : "(Krug)",
@@ -166,36 +152,23 @@ OC.L10N.register(
"Can share" : "Dijeljenje moguće",
"Can manage" : "Upravljanje moguće",
"Delete" : "Izbriši",
"Failed to create share with {displayName}" : "Dijeljenje s {displayName} nije uspjelo",
"Add a new list" : "Dodaj novi popis",
"Archive all cards" : "Arhiviraj sve kartice",
"Delete list" : "Izbriši popis",
"Add card" : "Dodaj karticu",
"Archive all cards in this list" : "Arhiviraj sve kartice s ovog popisa",
"Add a new card" : "Dodaj novu karticu",
"Card name" : "Naziv kartice",
"List deleted" : "Popis je izbrisan",
"Edit" : "Uredi",
"Add a new tag" : "Dodaj novu oznaku",
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
"Board name" : "Naziv ploče",
"Title" : "Naslov",
"Members" : "Članovi",
"Upload new files" : "Otpremi nove datoteke",
"Share from Files" : "Dijeli iz datoteka",
"Upload attachment" : "Otpremi privitak",
"Add this attachment" : "Dodajte ovaj privitak",
"Show in Files" : "Prikaži u datotekama",
"Unshare file" : "Prestani dijeliti datoteku",
"Delete Attachment" : "Izbriši privitak",
"Restore Attachment" : "Vrati privitak",
"File to share" : "Datoteka za dijeljenje",
"Invalid path selected" : "Odabran nevažeći put",
"Open in sidebar view" : "Otvori u bočnom prikazu",
"Open in bigger view" : "Otvori u većem prikazu",
"Attachments" : "Privici",
"Comments" : "Komentari",
"Modified" : "Promijenjeno",
"Created" : "Stvoreno",
"The title cannot be empty." : "Naslov ne može biti prazan.",
"No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!",
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
"Assign to users" : "Dodijeli korisnicima",
@@ -218,7 +191,6 @@ OC.L10N.register(
"Edit description" : "Uredi opis",
"View description" : "Prikaži opis",
"Add Attachment" : "Dodaj privitak",
"Write a description …" : "Napišite opis...",
"Choose attachment" : "Odaberi privitak",
"(group)" : "(grupa)",
"(circle)" : "(krug)",
@@ -229,50 +201,25 @@ OC.L10N.register(
"Archive card" : "Arhiviraj karticu",
"Delete card" : "Izbriši karticu",
"Move card to another board" : "Premjesti karticu na drugu ploču",
"Card deleted" : "Kartica je izbrisana",
"Select a list" : "Odaberi popis",
"seconds ago" : "prije nekoliko sekundi",
"All boards" : "Sve ploče",
"Archived boards" : "Arhivirane ploče",
"Shared with you" : "Podijeljeno s vama",
"Use bigger card view" : "Prikaži veće kartice",
"Show boards in calendar/tasks" : "Prikaži ploče u kalendaru/zadacima",
"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.",
"Board details" : "Pojedinosti o ploči",
"Edit board" : "Uredi ploču",
"Clone board" : "Kloniraj ploču",
"Unarchive board" : "Dearhiviraj ploču",
"Archive board" : "Arhiviraj ploču",
"Turn on due date reminders" : "Uključi podsjetnike datuma dospijeća",
"Turn off due date reminders" : "Isključi podsjetnike datuma dospijeća",
"Due date reminders" : "Podsjetnici datuma dospijeća",
"All cards" : "Sve kartice",
"Assigned cards" : "Dodijeljene kartice",
"No notifications" : "Nema obavijesti",
"Delete board" : "Izbriši ploču",
"Board {0} deleted" : "Ploča {0} je izbrisana",
"Only assigned cards" : "Samo dodijeljene kartice",
"No reminder" : "Nema podsjetnika",
"An error occurred" : "Došlo je do pogreške",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Jeste li sigurni da želite izbrisati ploču {title}? Time ćete izbrisati sve podatke ploče.",
"Delete the board?" : "Želite li izbrisati ploču?",
"Loading filtered view" : "Učitavanje filtriranog prikaza",
"Today" : "Danas",
"Tomorrow" : "Sutra",
"This week" : "Ovaj tjedan",
"No due" : "Nema nezavršenih",
"No upcoming cards" : "Nema nadolazećih kartica",
"upcoming cards" : "nadolazeće kartice",
"Link to a board" : "Poveznica na ploču",
"Link to a card" : "Poveznica na karticu",
"Create a card" : "Stvori karticu",
"Message from {author} in {conversationName}" : "Poruka od {author} u {conversationName}",
"Something went wrong" : "Nešto je pošlo po krivu",
"Failed to upload {name}" : "Neuspješno otpremanje {name}",
"Maximum file size of {size} exceeded" : "Prekoračena je maksimalna veličina datoteke od {size}",
"Error creating the share" : "Pogreška pri stvaranju dijeljenja",
"Share with a Deck card" : "Dijeli s Deck karticom",
"Share {file} with a Deck card" : "Dijeli {file} s Deck karticom",
"Share" : "Dijeli"
"Maximum file size of {size} exceeded" : "Prekoračena je maksimalna veličina datoteke od {size}"
},
"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;");

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