Compare commits

..

10 Commits

Author SHA1 Message Date
Jakob Röhrl
65650691b3 test
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-10-16 12:52:47 +02:00
Jakob Röhrl
caa201dc6c faq
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-10-16 11:42:54 +02:00
Jakob
083cd207af Merge branch 'master' into enh/cloneStack 2020-09-16 10:42:07 +02:00
Jakob Röhrl
24f83b875b test adjustments
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-09-16 10:09:58 +02:00
Jakob Röhrl
14d90e2ff2 format json
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-09-07 14:11:35 +02:00
Jakob Röhrl
2a4b0a3ed3 security and api
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-09-02 08:40:19 +02:00
Jakob Röhrl
71780b5578 some small changes
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-09-02 08:09:15 +02:00
Julius Härtl
c39fd43b6c Fix label assignment insertion and enrich result of clone
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-09-01 08:58:30 +02:00
Jakob Röhrl
e763ce1fb7 assign label
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-09-01 08:58:30 +02:00
Jakob Röhrl
003df010dd clone stacks
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-09-01 08:58:29 +02:00
274 changed files with 5627 additions and 9795 deletions

132
.drone.yml Normal file
View File

@@ -0,0 +1,132 @@
kind: pipeline
name: checkers
steps:
- name: compatibility
image: nextcloudci/php7.2:php7.2-13
environment:
APP_NAME: deck
CORE_BRANCH: master
DB: sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server
# Code checker
- ./occ app:check-code $APP_NAME -c strong-comparison
- ./occ app:check-code $APP_NAME -c deprecation
- cd apps/$APP_NAME/
- name: syntax-php7.2
image: nextcloudci/php7.2:php7.2-13
environment:
APP_NAME: deck
CORE_BRANCH: master
DB: sqlite
commands:
- composer install
- ./vendor/bin/parallel-lint --exclude ./vendor/ .
- name: syntax-php7.3
image: nextcloudci/php7.3:php7.3-2
environment:
APP_NAME: deck
CORE_BRANCH: master
DB: sqlite
commands:
- composer install
- ./vendor/bin/parallel-lint --exclude ./vendor/ .
- name: syntax-php7.4
image: nextcloudci/php7.4:2
environment:
APP_NAME: deck
CORE_BRANCH: master
DB: sqlite
commands:
- composer install
- ./vendor/bin/parallel-lint --exclude ./vendor/ .
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: unit-php7.2
steps:
- name: php7.2
image: nextcloudci/php7.2:php7.2-13
environment:
APP_NAME: deck
CORE_BRANCH: master
DB: sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server/
- php occ app:enable deck
- cd apps/$APP_NAME
- composer install
- phpunit -c tests/phpunit.xml --coverage-clover build/php-unit.coverage.xml
- phpunit -c tests/phpunit.integration.xml --coverage-clover build/php-integration.coverage.xml
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: unit-php7.3
steps:
- name: php7.3
image: nextcloudci/php7.3:php7.3-5
environment:
APP_NAME: deck
CORE_BRANCH: master
DB: sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server/
- php occ app:enable deck
- cd apps/$APP_NAME
- composer install
- phpunit -c tests/phpunit.xml --coverage-clover build/php-unit.coverage.xml
- phpunit -c tests/phpunit.integration.xml --coverage-clover build/php-integration.coverage.xml
trigger:
branch:
- master
- stable*
event:
- pull_request
- push
---
kind: pipeline
name: integration
steps:
- name: integration
image: nextcloudci/php7.2:php7.2-13
environment:
APP_NAME: deck
CORE_BRANCH: master
DB: sqlite
commands:
# Pre-setup steps
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- cd ../server/
- php occ app:enable deck
- cd apps/$APP_NAME
- cd tests/integration
- ./run.sh || true
trigger:
branch:
- master
- stable*
event:
- pull_request
- push

View File

@@ -2,7 +2,6 @@ version: 2
updates:
- package-ecosystem: npm
directory: "/"
target-branch: "master"
schedule:
interval: weekly
day: saturday
@@ -12,18 +11,6 @@ updates:
reviewers:
- juliushaertl
- jakobroehrl
#- package-ecosystem: npm
# directory: "/"
# target-branch: "stable1.1"
# schedule:
# interval: weekly
# day: saturday
# time: "03:00"
# timezone: Europe/Paris
# open-pull-requests-limit: 10
# reviewers:
# - juliushaertl
# - jakobroehrl
- package-ecosystem: composer
directory: "/"
schedule:

View File

@@ -1,55 +0,0 @@
name: PHP AppCode Check
on:
pull_request:
push:
branches:
- master
- stable*
env:
APP_NAME: deck
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4']
server-versions: ['master', 'stable18', 'stable19', 'stable20']
name: AppCode check php${{ matrix.php-versions }}-${{ 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
- name: Checkout app
uses: actions/checkout@v2
with:
path: apps/${{ env.APP_NAME }}
- name: App code check
run: php occ app:check-code ${{ env.APP_NAME }}

View File

@@ -1,215 +0,0 @@
name: PHPUnit
on:
pull_request:
push:
branches:
- master
- stable*
env:
APP_NAME: deck
jobs:
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: ['mysql']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
services:
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@v1
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit
extensions: mbstring, iconv, fileinfo, intl, mysql, pdo_mysql
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
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

32
.travis.yml Normal file
View File

@@ -0,0 +1,32 @@
language: php
services:
- mysql
php:
- 7.2
- 7.3
env:
- CORE_BRANCH=master DB=mysql
before_install:
- export PATH="$PWD/vendor/bin:$PATH"
- phpunit --version
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh deck $CORE_BRANCH $DB
- cd ../server
- ./occ app:enable deck
before_script:
- cd apps/deck
script:
- composer install
- make test-unit
after_success:
- bash <(curl -s https://codecov.io/bash)
after_failure:
- cat ../../data/nextcloud.log
notifications:
email: false

View File

@@ -1,87 +1,31 @@
# Changelog
All notable changes to this project will be documented in this file.
## 1.2.0 - 2020-11-16
## 1.1.0 - unreleased
### Added
### Merged PRs
* [#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
### 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
* [#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
* [#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
* [#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
* [#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)
## 1.1.0 - 2020-10-03
### Features
* [#2115](https://github.com/nextcloud/deck/pull/2115) Dashboard widget for Nextcloud 20
* [#1545](https://github.com/nextcloud/deck/pull/1545) Show cards in calendar/tasks app and make them available though CalDAV
* [#2200](https://github.com/nextcloud/deck/pull/2200) Unified search implementation for Nextcloud 20
* [#1934](https://github.com/nextcloud/deck/pull/1934) Upcoming cards overview @jakobroehrl
* [#2047](https://github.com/nextcloud/deck/pull/2047) Show card details in modal @jakobroehrl
* [#1853](https://github.com/nextcloud/deck/pull/1853) Archive all cards from stack @jakobroehrl
* [#1865](https://github.com/nextcloud/deck/pull/1865) Add stack button on empty board @jakobroehrl
* [#1926](https://github.com/nextcloud/deck/pull/1926) New filter: unassigned cards @jakobroehrl
### Bugfixes
* [#1934](https://github.com/nextcloud/deck/pull/1934) Card dashboard @jakobroehrl
* [#2035](https://github.com/nextcloud/deck/pull/2035) Attach files in description @jakobroehrl
* [#2047](https://github.com/nextcloud/deck/pull/2047) Show card details in modal @jakobroehrl
* [#2115](https://github.com/nextcloud/deck/pull/2115) Dashboard panel @juliushaertl
* [#2123](https://github.com/nextcloud/deck/pull/2123) Fix control tooltip @jakobroehrl
* [#2144](https://github.com/nextcloud/deck/pull/2144) Fix nextcloud if install with dev dependencies @matchish
* [#2158](https://github.com/nextcloud/deck/pull/2158) Fix description in dark mode
* [#2157](https://github.com/nextcloud/deck/pull/2157) Build/webpack shared config @juliushaertl
* [#2158](https://github.com/nextcloud/deck/pull/2158) Fix description in dark mode @juliushaertl
* [#2169](https://github.com/nextcloud/deck/pull/2169) Bump webpack-merge from 5.0.9 to 5.1.0 @dependabot
* [#2170](https://github.com/nextcloud/deck/pull/2170) Add lastModified date to boards API documentation @stefan-niedermann
* [#2188](https://github.com/nextcloud/deck/pull/2188) CardBadges: Count checkboxes started with "+ [ ]" @joreiff
* [#2206](https://github.com/nextcloud/deck/pull/2206) Fix read-only sidebar (fixes #2033)
* [#2208](https://github.com/nextcloud/deck/pull/2208) Fix design, dark mode and keyboard navigation of the board list
* [#2200](https://github.com/nextcloud/deck/pull/2200) Unified search implementation @juliushaertl
* [#2206](https://github.com/nextcloud/deck/pull/2206) Fix read-only sidebar (fixes #2033) @juliushaertl
* [#2208](https://github.com/nextcloud/deck/pull/2208) Fix design, dark mode and keyboard navigation of the board list @juliushaertl
* [#2210](https://github.com/nextcloud/deck/pull/2210) Fix an incorrect/misleading message in lib/Service/BoardService.php @jordanbancino
* [#2243](https://github.com/nextcloud/deck/pull/2243) Various smaller styling fixes
* [#2244](https://github.com/nextcloud/deck/pull/2244) Toggle filter on clicking card labels
* [#2117](https://github.com/nextcloud/deck/pull/2117) Activity fixes
* [#2255](https://github.com/nextcloud/deck/pull/2255) Use unified search events to apply on board filtering
* [#2271](https://github.com/nextcloud/deck/pull/2271) Sort tags in filter @jakobroehrl
* [#2318](https://github.com/nextcloud/deck/pull/2318) Card title: prevent space and no text @jakobroehrl
* [#2319](https://github.com/nextcloud/deck/pull/2319) Move style loading to BeforeTemplateRenderedEvent
* [#2320](https://github.com/nextcloud/deck/pull/2320) Consistent naming @jakobroehrl
* [#2252](https://github.com/nextcloud/deck/pull/2252) Fix double slash in the deck activity links @baraksoa
* [#2270](https://github.com/nextcloud/deck/pull/2270) Fix empty content view to align with other widgets
* [#2275](https://github.com/nextcloud/deck/pull/2275) Wait for services to be registered before performing further setup that requires services
* [#2278](https://github.com/nextcloud/deck/pull/2278) Fix wrong SQL queries @Chartman123
* [#2279](https://github.com/nextcloud/deck/pull/2279) L10n:add translation to card placeholder @mjanssens
* [#2282](https://github.com/nextcloud/deck/pull/2282) Duedate picker localization
* [#2283](https://github.com/nextcloud/deck/pull/2283) Do not handle exceptions from page controller in the ExceptionMiddleware
* [#2298](https://github.com/nextcloud/deck/pull/2298) Use absolute URLs for the search @nickvergessen
* [#2211](https://github.com/nextcloud/deck/pull/2211) Update incorrect field in API documentation (docs/API.md) @jordanbancino
* [#2243](https://github.com/nextcloud/deck/pull/2243) Various smaller styling fixes @juliushaertl
* [#2244](https://github.com/nextcloud/deck/pull/2244) Toggle filter on clicking card labels @juliushaertl
## 1.0.5 - 2020-07-15

View File

@@ -5,15 +5,15 @@
Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.
- Add your tasks to cards and put them in order
- Write down additional notes in markdown
- Assign labels for even better organization
- Share with your team, friends or family
- Integrates with the [Circles](https://github.com/nextcloud/circles) app!
- Attach files and embed them in your markdown description
- Discuss with your team using comments
- Keep track of changes in the activity stream
- Get your project organized
- :inbox_tray: Add your tasks to cards and put them in order
- :page_facing_up: Write down additional notes in markdown
- :bookmark: Assign labels for even better organization
- :busts_in_silhouette: Share with your team, friends or family
- :family: Integrates with the [Circles](https://github.com/nextcloud/circles) app!
- :paperclip: Attach files and embed them in your markdown description
- :speech_balloon: Discuss with your team using comments
- :zap: Keep track of changes in the activity stream
- :rocket: Get your project organized
### Mobile apps

View File

@@ -17,7 +17,7 @@
- 🚀 Get your project organized
</description>
<version>1.2.0</version>
<version>1.1.0-beta1</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<namespace>Deck</namespace>
@@ -36,7 +36,7 @@
<database min-version="9.4">pgsql</database>
<database>sqlite</database>
<database min-version="5.5">mysql</database>
<nextcloud min-version="18" max-version="21" />
<nextcloud min-version="18" max-version="20" />
</dependencies>
<background-jobs>
<job>OCA\Deck\Cron\DeleteCron</job>

View File

@@ -47,6 +47,7 @@ return [
['name' => 'stack#delete', 'url' => '/stacks/{stackId}', 'verb' => 'DELETE'],
['name' => 'stack#deleted', 'url' => '/{boardId}/stacks/deleted', 'verb' => 'GET'],
['name' => 'stack#archived', 'url' => '/stacks/{boardId}/archived', 'verb' => 'GET'],
['name' => 'stack#clone', 'url' => '/stacks/{stackId}/clone', 'verb' => 'POST'],
// cards
['name' => 'card#read', 'url' => '/cards/{cardId}', 'verb' => 'GET'],
@@ -97,6 +98,7 @@ return [
['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' => 'stack_api#clone', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/clone', 'verb' => 'POST'],
['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'],

View File

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

View File

@@ -1,34 +1,5 @@
# Nextcloud APIs
## Capabilities
The [Nextcloud Capabilities API](https://docs.nextcloud.com/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html#capabilities-api) provides the following information for the Deck app:
- `version` Current version of the Deck app running
- `canCreateBoards` Ability of the current user to create new boards for themselves
```
{
"ocs": {
"meta": {
"status": "ok",
"statuscode": 200,
"message": "OK"
},
"data": {
"capabilities": {
"deck": {
"version": "0.8.0",
"canCreateBoards": true
},
}
}
}
}
```
## Available sharees
When sharing a board to a user, group or circle, the possible sharees can be obtained though the files_sharing API.

View File

@@ -5,7 +5,6 @@ The REST API provides access for authenticated users to their data inside the De
- All requests require a `OCS-APIRequest` HTTP header to be set to `true` and a `Content-Type` of `application/json`.
- The API is located at https://nextcloud.local/index.php/apps/deck/api/v1.0
- All request parameters are required, unless otherwise specified
## Naming
@@ -21,7 +20,7 @@ The REST API provides access for authenticated users to their data inside the De
### 400 Bad request
In case the request is invalid, e.g. because a parameter is missing or an invalid value has been transmitted, a 400 error will be returned:
In case the request is invalid, e.g. because a parameter is missing, a 400 error will be returned:
```json
{
@@ -41,12 +40,6 @@ In any case a user doesn't have access to a requested entity, a 403 error will b
}
```
## Formats
### Date
Datetime values in request data need to be provided in ISO-8601. Example: 2020-01-20T09:52:43+00:00
## Headers
### If-Modified-Since
@@ -58,7 +51,7 @@ The supported date formats are:
* (obsolete) RFC 850: `Sunday, 03-Aug-19 10:34:12 GMT`
* (obsolete) ANSI C asctime(): `Sun Aug 3 10:34:12 2019`
It is highly recommended to only use the IMF-fixdate format. Note that according to [RFC2616](https://tools.ietf.org/html/rfc2616#section-3.3) all HTTP date/time stamps MUST be represented in Greenwich Mean Time (GMT), without exception.
It is highly recommended to only use the IMF-fixdate format.
Example curl request:
@@ -69,31 +62,6 @@ curl -u admin:admin -X GET \
-H "If-Modified-Since: Mon, 05 Nov 2018 09:28:00 GMT"
```
### ETag
An ETag header is returned in order to determine if further child elements have been updated for the following endpoints:
- Fetch all user board `GET /api/v1.0/boards`
- Fetch a single board `GET /api/v1.0/boards/{boardId}`
- Fetch all stacks of a board `GET /api/v1.0/boards/{boardId}/stacks`
- Fetch a single stacks of a board `GET /api/v1.0/boards/{boardId}/stacks/{stackId}`
- Fetch a single card of a board `GET /api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}`
- Fetch attachments of a card `GET /api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments`
If a `If-None-Match` header is provided and the requested element has not changed a `304` Not Modified response will be returned.
Changes of child elements will propagate to their parents and also cause an update of the ETag which will be useful for determining if a sync is necessary on any client integration side. As an example, if a label is added to a card, the ETag of all related entities (the card, stack and board) will change.
If available the ETag will also be part of JSON response objects as shown below for a card:
```json
{
"id": 81,
"ETag": "bdb10fa2d2aeda092a2b6b469454dc90",
"title": "Test card"
}
```
# Changelog
## 1.0.0 (unreleased)
@@ -147,10 +115,6 @@ Returns an array of board items
"deletedAt": 0,
"id": 10,
"lastModified": 1586269585,
"settings": {
"notify-due": "off",
"calendar": true
}
}
]
```
@@ -229,10 +193,6 @@ Returns an array of board items
}
```
##### 403 Forbidden
A 403 response might be returned if the users ability to create new boards has been disabled by the administrator. For checking this before, see the `canCreateBoards` value in the [Nextcloud capabilties](./API-Nextcloud.md).
### GET /boards/{boardId} - Get board details
#### Request parameters
@@ -532,6 +492,93 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
##### 200 Success
### POST /boards/{boardId}/stacks/{stackId}/clone - Clone a stack
#### Request parameters
| Parameter | Type | Description |
| --------- | ------- | ------------------------------------------------------- |
| boardId | Integer | The id of the board where the stack should be cloned to |
| stackId | Integer | The id of the stack |
#### Response
It will return an object of the new stack containing the new cards as well.
```json
{
"title":"l1 (copy)",
"boardId":6,
"deletedAt":0,
"lastModified":0,
"cards":[
{
"title":"ME",
"description":"123",
"stackId":73,
"type":"plain",
"lastModified":1599028559,
"lastEditor":null,
"createdAt":1599028559,
"labels":[
],
"assignedUsers":[
],
"attachments":null,
"attachmentCount":0,
"owner":{
"primaryKey":"root",
"uid":"root",
"displayname":"root",
"type":0
},
"order":0,
"archived":false,
"duedate":null,
"deletedAt":0,
"commentsUnread":0,
"id":109,
"overdue":0
},
{
"title":"ka",
"description":"",
"stackId":73,
"type":"plain",
"lastModified":1599028559,
"lastEditor":null,
"createdAt":1599028559,
"labels":[
],
"assignedUsers":[
],
"attachments":null,
"attachmentCount":0,
"owner":{
"primaryKey":"root",
"uid":"root",
"displayname":"root",
"type":0
},
"order":1,
"archived":false,
"duedate":"2020-08-26T22:00:00+00:00",
"deletedAt":0,
"commentsUnread":0,
"id":110,
"overdue":3
}
],
"order":999,
"id":73
}
```
##### 200 Success
## Cards
### GET /boards/{boardId}/stacks/{stackId}/cards/{cardId} - Get card details
@@ -584,7 +631,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
"owner":"admin",
"order":999,
"archived":false,
"duedate": "2019-12-24T19:29:30+00:00",
"duedate":null,
"deletedAt":0,
"commentsUnread":0,
"id":10,
@@ -612,7 +659,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
| description | String | The markdown description of the card |
| type | String | Type of the card (for later use) use 'plain' for now |
| order | Integer | Order for sorting the stacks |
| duedate | timestamp | The ISO-8601 formatted duedate of the card or null |
| duedate | timestamp | The duedate of the card or null |
```
@@ -621,7 +668,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
"description": "A card description",
"type": "plain",
"order": 999,
"duedate": "2019-12-24T19:29:30+00:00",
"duedate": null,
}
```
@@ -992,77 +1039,6 @@ For now only `deck_file` is supported as an attachment type.
The following endpoints are available through the Nextcloud OCS endpoint, which is available at `/ocs/v2.php/apps/deck/api/v1.0/`.
This has the benefit that both the web UI as well as external integrations can use the same API.
## Config
Deck stores user and app configuration values globally and per board. The GET endpoint allows to fetch the current global configuration while board settings will be exposed through the board element on the regular API endpoints.
### GET /api/v1.0/config - Fetch app configuration values
#### Response
| 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)|
```
{
"ocs": {
"meta": {
"status": "ok",
"statuscode": 200,
"message": "OK"
},
"data": {
"calendar": true,
"groupLimit": [
{
"id": "admin",
"displayname": "admin"
}
]
}
}
}
```
### POST /api/v1.0/config/{id}/{key} - Set a config value
#### Request parameters
| Parameter | Type | Description |
| --------- | ------- | --------------------------------------- |
| id | Integer | The id of the board |
| key | String | The config key to set, prefixed with `board:{boardId}:` for board specific settings |
| value | String | The value that should be stored for the config key |
##### Board configuration
| Key | Value |
| --- | ----- |
| notify-due | `off`, `assigned` or `all` |
| calendar | Boolean |
#### Example request
```
curl -X POST 'https://admin:admin@nextcloud.local/ocs/v2.php/apps/deck/api/v1.0/config/calendar' -H 'Accept: application/json' -H "Content-Type: application/json" -H 'OCS-APIRequest: true' --data-raw '{"value":false}'
{
"ocs": {
"meta": {
"status": "ok",
"statuscode": 200,
"message": "OK"
},
"data": false
}
}
```
## Comments
### GET /cards/{cardId}/comments - List comments

View File

@@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
<path d="m8 2c-0.5523 0-1 0.4477-1 1 0 0.0472 0.021 0.0873 0.0273 0.1328-1.7366 0.4362-3.0273 1.9953-3.0273 3.8672v2l-1 1v1h10v-1l-1-1v-2c0-1.8719-1.291-3.431-3.0273-3.8672 0.0063-0.0455 0.0273-0.0856 0.0273-0.1328 0-0.5523-0.4477-1-1-1zm-2 10c0 1.1046 0.8954 2 2 2s2-0.8954 2-2z" fill="#000"/>
</svg>

Before

Width:  |  Height:  |  Size: 456 B

View File

@@ -20,15 +20,15 @@ OC.L10N.register(
"Delete" : "Skrap",
"Edit" : "Wysig",
"Title" : "Titel",
"Due date" : "Sperdatum",
"Description" : "Beskrywing",
"Comments" : "Kommentare",
"Select Date" : "Kies Datum",
"Modified" : "Gewysig",
"Created" : "Geskep",
"Due date" : "Sperdatum",
"Select Date" : "Kies Datum",
"Save" : "Stoor",
"Reply" : "Antwoord",
"Update" : "Werk by",
"Description" : "Beskrywing",
"seconds ago" : "sekondes gelede",
"Shared with you" : "Met u gedeel",
"An error occurred" : "'n Fout het voorgekom",

View File

@@ -18,15 +18,15 @@
"Delete" : "Skrap",
"Edit" : "Wysig",
"Title" : "Titel",
"Due date" : "Sperdatum",
"Description" : "Beskrywing",
"Comments" : "Kommentare",
"Select Date" : "Kies Datum",
"Modified" : "Gewysig",
"Created" : "Geskep",
"Due date" : "Sperdatum",
"Select Date" : "Kies Datum",
"Save" : "Stoor",
"Reply" : "Antwoord",
"Update" : "Werk by",
"Description" : "Beskrywing",
"seconds ago" : "sekondes gelede",
"Shared with you" : "Met u gedeel",
"An error occurred" : "'n Fout het voorgekom",

View File

@@ -40,6 +40,8 @@ OC.L10N.register(
"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- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً",
"Card details" : "تفاصيل البطاقة",
"Create new board" : "انشاء لوح جديد",
"new board" : "لوح جديد",
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح",
"Select board" : "حدد لوح",
@@ -55,6 +57,7 @@ OC.L10N.register(
"This board is read only" : "هذا اللوح بوضع القراءة فقط",
"Drop your files to upload" : "افلت الملفات لرفعها",
"Archived cards" : "البطاقات المؤرشفة",
"Add new list" : "اضف قائمة جديدة",
"List name" : "قامة اسماء",
"Apply filter" : "تطبيق التصفية",
"Filter by tag" : "تصفية بواسطة الوسم",
@@ -78,7 +81,6 @@ OC.L10N.register(
"Undo" : "تراجع",
"Deleted cards" : "البطاقات المحذوفة",
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
"Searching for users, groups and circles …" : "ابحث عن اعضاء، مجموعات أو حلقات ...",
"Board owner" : "منشئ اللوح",
"(Group)" : "(مجموعة)",
"(Circle)" : "(دائرة)",
@@ -98,11 +100,6 @@ OC.L10N.register(
"Add this attachment" : "إضافة هذا المرفق",
"Delete Attachment" : "مسح المرفق",
"Restore Attachment" : "استعادة المرفق",
"Attachments" : "المرفقات",
"Comments" : "تعليقات",
"Modified" : "عُدل",
"Created" : "أُنشئ",
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
"Assign to users" : "انسب الى المتسخدمين",
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
@@ -110,32 +107,38 @@ OC.L10N.register(
"Due date" : "تاريخ الانجاز",
"Set a due date" : "تعيين تاريخ الانجاز",
"Remove due date" : "ازالة تاريخ الانجاز",
"Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
"In reply to" : "يقوم بالرد على",
"Reply" : "رد",
"Update" : "تحديث",
"Description" : "الوصف",
"(Unsaved)" : "(غير محفوظ)",
"(Saving…)" : "(يُحفظ..)",
"Edit description" : "تعديل الوصف",
"View description" : "إظهار الوصف",
"Add Attachment" : "أضف ملحق",
"Attachments" : "المرفقات",
"Comments" : "تعليقات",
"Choose attachment" : "اختيار مرفق",
"Modified" : "عُدل",
"Created" : "أُنشئ",
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
"Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
"In reply to" : "يقوم بالرد على",
"Reply" : "رد",
"Update" : "تحديث",
"(group)" : "(مجموعة)",
"(circle)" : "(دائرة)",
"Assign to me" : "ينسب لي",
"Move card" : "حرك البطاقة",
"Delete card" : "حذف البطاقة",
"Move card" : "حرك البطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"seconds ago" : "ثوانٍ مضت",
"All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "شورك معك",
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
"Board details" : "تفاصيل لوح",
"New board title" : "عنوان لوح جديد",
"Edit board" : "تعديل اللوح",
"Board details" : "تفاصيل لوح",
"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?" : "مسح اللوح؟",

View File

@@ -38,6 +38,8 @@
"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- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً",
"Card details" : "تفاصيل البطاقة",
"Create new board" : "انشاء لوح جديد",
"new board" : "لوح جديد",
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح",
"Select board" : "حدد لوح",
@@ -53,6 +55,7 @@
"This board is read only" : "هذا اللوح بوضع القراءة فقط",
"Drop your files to upload" : "افلت الملفات لرفعها",
"Archived cards" : "البطاقات المؤرشفة",
"Add new list" : "اضف قائمة جديدة",
"List name" : "قامة اسماء",
"Apply filter" : "تطبيق التصفية",
"Filter by tag" : "تصفية بواسطة الوسم",
@@ -76,7 +79,6 @@
"Undo" : "تراجع",
"Deleted cards" : "البطاقات المحذوفة",
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
"Searching for users, groups and circles …" : "ابحث عن اعضاء، مجموعات أو حلقات ...",
"Board owner" : "منشئ اللوح",
"(Group)" : "(مجموعة)",
"(Circle)" : "(دائرة)",
@@ -96,11 +98,6 @@
"Add this attachment" : "إضافة هذا المرفق",
"Delete Attachment" : "مسح المرفق",
"Restore Attachment" : "استعادة المرفق",
"Attachments" : "المرفقات",
"Comments" : "تعليقات",
"Modified" : "عُدل",
"Created" : "أُنشئ",
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
"Assign to users" : "انسب الى المتسخدمين",
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
@@ -108,32 +105,38 @@
"Due date" : "تاريخ الانجاز",
"Set a due date" : "تعيين تاريخ الانجاز",
"Remove due date" : "ازالة تاريخ الانجاز",
"Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
"In reply to" : "يقوم بالرد على",
"Reply" : "رد",
"Update" : "تحديث",
"Description" : "الوصف",
"(Unsaved)" : "(غير محفوظ)",
"(Saving…)" : "(يُحفظ..)",
"Edit description" : "تعديل الوصف",
"View description" : "إظهار الوصف",
"Add Attachment" : "أضف ملحق",
"Attachments" : "المرفقات",
"Comments" : "تعليقات",
"Choose attachment" : "اختيار مرفق",
"Modified" : "عُدل",
"Created" : "أُنشئ",
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
"Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
"In reply to" : "يقوم بالرد على",
"Reply" : "رد",
"Update" : "تحديث",
"(group)" : "(مجموعة)",
"(circle)" : "(دائرة)",
"Assign to me" : "ينسب لي",
"Move card" : "حرك البطاقة",
"Delete card" : "حذف البطاقة",
"Move card" : "حرك البطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"seconds ago" : "ثوانٍ مضت",
"All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "شورك معك",
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
"Board details" : "تفاصيل لوح",
"New board title" : "عنوان لوح جديد",
"Edit board" : "تعديل اللوح",
"Board details" : "تفاصيل لوح",
"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?" : "مسح اللوح؟",

View File

@@ -27,6 +27,7 @@ OC.L10N.register(
"Edit" : "Editar",
"Title" : "Títulu",
"Members" : "Miembros",
"Description" : "Descripción",
"Attachments" : "Axuntos",
"Comments" : "Comentarios",
"Modified" : "Modificóse'l",
@@ -34,7 +35,6 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Rempuesta",
"Update" : "Anovar",
"Description" : "Descripción",
"(group)" : "(grupu)",
"seconds ago" : "hai segundos",
"Shared with you" : "Shared with you",

View File

@@ -25,6 +25,7 @@
"Edit" : "Editar",
"Title" : "Títulu",
"Members" : "Miembros",
"Description" : "Descripción",
"Attachments" : "Axuntos",
"Comments" : "Comentarios",
"Modified" : "Modificóse'l",
@@ -32,7 +33,6 @@
"Save" : "Guardar",
"Reply" : "Rempuesta",
"Update" : "Anovar",
"Description" : "Descripción",
"(group)" : "(grupu)",
"seconds ago" : "hai segundos",
"Shared with you" : "Shared with you",

View File

@@ -15,11 +15,11 @@ OC.L10N.register(
"Delete" : "Sil",
"Edit" : "Dəyişiklik et",
"Title" : "Başlıq",
"Description" : "Açıqlanma",
"Modified" : "Dəyişdirildi",
"Save" : "Saxla",
"Reply" : "Cavab",
"Update" : "Yenilənmə",
"Description" : "Açıqlanma",
"(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə",
"Shared with you" : "Shared with you",

View File

@@ -13,11 +13,11 @@
"Delete" : "Sil",
"Edit" : "Dəyişiklik et",
"Title" : "Başlıq",
"Description" : "Açıqlanma",
"Modified" : "Dəyişdirildi",
"Save" : "Saxla",
"Reply" : "Cavab",
"Update" : "Yenilənmə",
"Description" : "Açıqlanma",
"(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə",
"Shared with you" : "Shared with you",

View File

@@ -28,17 +28,17 @@ OC.L10N.register(
"Title" : "Име",
"Members" : "Членове",
"Upload attachment" : "Качване",
"Attachments" : "Прикачени файлове",
"Comments" : "Коментари",
"Modified" : "Промяна",
"Created" : "Създаден",
"Due date" : "Крайна дата",
"Remove due date" : "Премахни крайната дата",
"Description" : "Описание",
"Attachments" : "Прикачени файлове",
"Comments" : "Коментари",
"Select Date" : "Изберете дата",
"Modified" : "Промяна",
"Created" : "Създаден",
"Save" : "Запазване",
"Reply" : "Отговори",
"Update" : "Обновяване",
"Description" : "Описание",
"(group)" : "(група)",
"seconds ago" : "преди секунди",
"Shared with you" : "Споделени с вас",

View File

@@ -26,17 +26,17 @@
"Title" : "Име",
"Members" : "Членове",
"Upload attachment" : "Качване",
"Attachments" : "Прикачени файлове",
"Comments" : "Коментари",
"Modified" : "Промяна",
"Created" : "Създаден",
"Due date" : "Крайна дата",
"Remove due date" : "Премахни крайната дата",
"Description" : "Описание",
"Attachments" : "Прикачени файлове",
"Comments" : "Коментари",
"Select Date" : "Изберете дата",
"Modified" : "Промяна",
"Created" : "Създаден",
"Save" : "Запазване",
"Reply" : "Отговори",
"Update" : "Обновяване",
"Description" : "Описание",
"(group)" : "(група)",
"seconds ago" : "преди секунди",
"Shared with you" : "Споделени с вас",

View File

@@ -15,11 +15,11 @@ OC.L10N.register(
"Delete" : "মুছে",
"Edit" : "সম্পাদনা",
"Title" : "শিরোনাম",
"Description" : "বিবরণ",
"Modified" : "পরিবর্তিত",
"Save" : "সংরক্ষণ",
"Reply" : "জবাব",
"Update" : "পরিবর্ধন",
"Description" : "বিবরণ",
"(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে",
"Shared with you" : "Shared with you",

View File

@@ -13,11 +13,11 @@
"Delete" : "মুছে",
"Edit" : "সম্পাদনা",
"Title" : "শিরোনাম",
"Description" : "বিবরণ",
"Modified" : "পরিবর্তিত",
"Save" : "সংরক্ষণ",
"Reply" : "জবাব",
"Update" : "পরিবর্ধন",
"Description" : "বিবরণ",
"(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে",
"Shared with you" : "Shared with you",

View File

@@ -14,12 +14,12 @@ OC.L10N.register(
"Can share" : "Galout a ra rannañ",
"Delete" : "Dilemel",
"Edit" : "Cheñch",
"Description" : "Diskrivadur",
"Comments" : "Displegadennoù",
"Modified" : "Cheñchet",
"Save" : "Enrollañ",
"Reply" : "Respont",
"Update" : "Adnevesaat",
"Description" : "Diskrivadur",
"(group)" : "(strollad)",
"seconds ago" : "eilenn zo",
"Shared with you" : "Rannet ganeoc'h",

View File

@@ -12,12 +12,12 @@
"Can share" : "Galout a ra rannañ",
"Delete" : "Dilemel",
"Edit" : "Cheñch",
"Description" : "Diskrivadur",
"Comments" : "Displegadennoù",
"Modified" : "Cheñchet",
"Save" : "Enrollañ",
"Reply" : "Respont",
"Update" : "Adnevesaat",
"Description" : "Diskrivadur",
"(group)" : "(strollad)",
"seconds ago" : "eilenn zo",
"Shared with you" : "Rannet ganeoc'h",

View File

@@ -14,11 +14,11 @@ OC.L10N.register(
"Edit" : "Izmjeni",
"Title" : "Naslov",
"Members" : "Članovi",
"Description" : "Opis",
"Comments" : "Komentari",
"Modified" : "Izmijenjeno",
"Save" : "Spremi",
"Update" : "Ažuriraj",
"Description" : "Opis",
"Shared with you" : "Shared with you",
"Today" : "Danas",
"Tomorrow" : "Sutra",

View File

@@ -12,11 +12,11 @@
"Edit" : "Izmjeni",
"Title" : "Naslov",
"Members" : "Članovi",
"Description" : "Opis",
"Comments" : "Komentari",
"Modified" : "Izmijenjeno",
"Save" : "Spremi",
"Update" : "Ažuriraj",
"Description" : "Opis",
"Shared with you" : "Shared with you",
"Today" : "Danas",
"Tomorrow" : "Sutra",

View File

@@ -100,7 +100,8 @@ OC.L10N.register(
"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" : "Dades de la targeta",
"Add board" : "Afegeix una taula",
"Create new board" : "Crea un nou tauler",
"new board" : "nou tauler",
"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",
@@ -117,7 +118,7 @@ OC.L10N.register(
"This board is read only" : "Aquest tauler és només de lectura",
"Drop your files to upload" : "Deixeu anar els fitxers per penjar-los",
"Archived cards" : "Targetes arxivades",
"Add list" : "Afegeix una llista",
"Add new list" : "Afegeix una llista nova",
"List name" : "Nom de llista",
"Apply filter" : "Aplica el filtre",
"Filter by tag" : "Filtra per etiqueta",
@@ -146,8 +147,6 @@ OC.L10N.register(
"Undo" : "Desfés",
"Deleted cards" : "Targetes suprimides",
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
"Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles",
"No participants found" : "No s'han trobat participants",
"Board owner" : "Propietari del tauler",
"(Group)" : "(Grup)",
"(Circle)" : "(Cercle)",
@@ -155,15 +154,12 @@ OC.L10N.register(
"Can share" : "Pot compartir",
"Can manage" : "Pot gestionar",
"Delete" : "Eliminar",
"Failed to create share with {displayName}" : "Ha fallat la creació de la compartició amb {displayName}",
"Add a new list" : "Afegir una llista nova",
"Archive all cards" : "Arxiva totes les targetes",
"Delete list" : "Suprimeix la llista",
"Add card" : "Afegeix una targeta",
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
"Add a new card" : "Afegir una nova targeta",
"Card name" : "Nom de la targeta",
"List deleted" : "Llista suprimida",
"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",
@@ -175,12 +171,6 @@ OC.L10N.register(
"Restore Attachment" : "Restaura l'adjunt",
"Open in sidebar view" : "Obre a la vista de la barra lateral",
"Open in bigger view" : "Obre a la vista més gran",
"Attachments" : "Adjunts",
"Comments" : "Comentaris",
"Modified" : "Darrera modificació",
"Created" : "Creat",
"The title cannot be empty." : "El títol no pot estar buit",
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
"Assign to users" : "Assigna als usuaris",
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
@@ -188,13 +178,6 @@ OC.L10N.register(
"Due date" : "Per la data",
"Set a due date" : "Definir una data de venciment",
"Remove due date" : "Elimina la data de venciment",
"Select Date" : "Selecciona la data",
"Save" : "Desa",
"The comment cannot be empty." : "El comentari no pot estar buit.",
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
"In reply to" : "En resposta a",
"Reply" : "Respon",
"Update" : "Actualitza",
"Description" : "Descripció",
"(Unsaved)" : "(No desat)",
"(Saving…)" : "(Desant…)",
@@ -202,42 +185,44 @@ OC.L10N.register(
"Edit description" : "Edita descripció",
"View description" : "Veure descripció",
"Add Attachment" : "Afegeix un adjunt",
"Attachments" : "Adjunts",
"Comments" : "Comentaris",
"Choose attachment" : "Triar adjunt",
"Select Date" : "Selecciona la data",
"Modified" : "Darrera modificació",
"Created" : "Creat",
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
"Save" : "Desa",
"The comment cannot be empty." : "El comentari no pot estar buit.",
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
"In reply to" : "En resposta a",
"Reply" : "Respon",
"Update" : "Actualitza",
"(group)" : "(grup)",
"(circle)" : "(cercle)",
"Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix",
"Move card" : "Mou la targeta",
"Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta",
"Delete card" : "Suprimeix targeta",
"Move card" : "Mou la 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 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",
"New board title" : "Títol del nou tauler",
"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 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",
"Clone board " : "Clonar tauler ",
"Unarchive board " : "Desarxiva tauler ",
"Archive board " : "Arxiva tauler ",
"Delete board " : "Suprimeix tauler ",
"Board details" : "Detalls de la junta",
"Board {0} deleted" : "Sha suprimit el tauler {0}",
"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?" : "Suprimir el tauler?",
@@ -246,8 +231,8 @@ OC.L10N.register(
"Tomorrow" : "Demà",
"This week" : "Aquesta setmana",
"No due" : "Sense venciment",
"No upcoming cards" : "No hi ha targetes futures",
"upcoming cards" : "properes targetes",
"No upcoming cards" : "No hi ha targetes futures",
"Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta",
"Something went wrong" : "Alguna cosa ha anat malament",

View File

@@ -98,7 +98,8 @@
"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" : "Dades de la targeta",
"Add board" : "Afegeix una taula",
"Create new board" : "Crea un nou tauler",
"new board" : "nou tauler",
"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",
@@ -115,7 +116,7 @@
"This board is read only" : "Aquest tauler és només de lectura",
"Drop your files to upload" : "Deixeu anar els fitxers per penjar-los",
"Archived cards" : "Targetes arxivades",
"Add list" : "Afegeix una llista",
"Add new list" : "Afegeix una llista nova",
"List name" : "Nom de llista",
"Apply filter" : "Aplica el filtre",
"Filter by tag" : "Filtra per etiqueta",
@@ -144,8 +145,6 @@
"Undo" : "Desfés",
"Deleted cards" : "Targetes suprimides",
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
"Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles",
"No participants found" : "No s'han trobat participants",
"Board owner" : "Propietari del tauler",
"(Group)" : "(Grup)",
"(Circle)" : "(Cercle)",
@@ -153,15 +152,12 @@
"Can share" : "Pot compartir",
"Can manage" : "Pot gestionar",
"Delete" : "Eliminar",
"Failed to create share with {displayName}" : "Ha fallat la creació de la compartició amb {displayName}",
"Add a new list" : "Afegir una llista nova",
"Archive all cards" : "Arxiva totes les targetes",
"Delete list" : "Suprimeix la llista",
"Add card" : "Afegeix una targeta",
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
"Add a new card" : "Afegir una nova targeta",
"Card name" : "Nom de la targeta",
"List deleted" : "Llista suprimida",
"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",
@@ -173,12 +169,6 @@
"Restore Attachment" : "Restaura l'adjunt",
"Open in sidebar view" : "Obre a la vista de la barra lateral",
"Open in bigger view" : "Obre a la vista més gran",
"Attachments" : "Adjunts",
"Comments" : "Comentaris",
"Modified" : "Darrera modificació",
"Created" : "Creat",
"The title cannot be empty." : "El títol no pot estar buit",
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
"Assign to users" : "Assigna als usuaris",
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
@@ -186,13 +176,6 @@
"Due date" : "Per la data",
"Set a due date" : "Definir una data de venciment",
"Remove due date" : "Elimina la data de venciment",
"Select Date" : "Selecciona la data",
"Save" : "Desa",
"The comment cannot be empty." : "El comentari no pot estar buit.",
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
"In reply to" : "En resposta a",
"Reply" : "Respon",
"Update" : "Actualitza",
"Description" : "Descripció",
"(Unsaved)" : "(No desat)",
"(Saving…)" : "(Desant…)",
@@ -200,42 +183,44 @@
"Edit description" : "Edita descripció",
"View description" : "Veure descripció",
"Add Attachment" : "Afegeix un adjunt",
"Attachments" : "Adjunts",
"Comments" : "Comentaris",
"Choose attachment" : "Triar adjunt",
"Select Date" : "Selecciona la data",
"Modified" : "Darrera modificació",
"Created" : "Creat",
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
"Save" : "Desa",
"The comment cannot be empty." : "El comentari no pot estar buit.",
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
"In reply to" : "En resposta a",
"Reply" : "Respon",
"Update" : "Actualitza",
"(group)" : "(grup)",
"(circle)" : "(cercle)",
"Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix",
"Move card" : "Mou la targeta",
"Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta",
"Delete card" : "Suprimeix targeta",
"Move card" : "Mou la 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 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",
"New board title" : "Títol del nou tauler",
"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 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",
"Clone board " : "Clonar tauler ",
"Unarchive board " : "Desarxiva tauler ",
"Archive board " : "Arxiva tauler ",
"Delete board " : "Suprimeix tauler ",
"Board details" : "Detalls de la junta",
"Board {0} deleted" : "Sha suprimit el tauler {0}",
"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?" : "Suprimir el tauler?",
@@ -244,8 +229,8 @@
"Tomorrow" : "Demà",
"This week" : "Aquesta setmana",
"No due" : "Sense venciment",
"No upcoming cards" : "No hi ha targetes futures",
"upcoming cards" : "properes targetes",
"No upcoming cards" : "No hi ha targetes futures",
"Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta",
"Something went wrong" : "Alguna cosa ha anat malament",

View File

@@ -100,7 +100,8 @@ OC.L10N.register(
"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ě",
"Add board" : "Přidat tabuli",
"Create new board" : "Vytvořit novou tabuli",
"new board" : "nová tabule",
"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",
@@ -117,7 +118,7 @@ OC.L10N.register(
"This board is read only" : "Tato tabule je pouze pro čtení",
"Drop your files to upload" : "Přetáhněte sem soubory, které chcete nahrát",
"Archived cards" : "Archivované karty",
"Add list" : "Přidat seznam",
"Add new list" : "Přidat nový seznam",
"List name" : "Název seznamu",
"Apply filter" : "Uplatnit filtr",
"Filter by tag" : "Filtrovat podle příznaků",
@@ -146,8 +147,6 @@ OC.L10N.register(
"Undo" : "Vrátit zpět",
"Deleted cards" : "Smazané karty",
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
"Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…",
"No participants found" : "Nenalezeni žádní účastníci",
"Board owner" : "Vlastník tabule",
"(Group)" : "(Skupina)",
"(Circle)" : "(Okruh)",
@@ -155,7 +154,6 @@ OC.L10N.register(
"Can share" : "Může sdílet",
"Can manage" : "Může spravovat",
"Delete" : "Smazat",
"Failed to create share with {displayName}" : "Nepodařilo se vytvořit sdílení s {displayName}",
"Add a new list" : "Přidat nový sloupec",
"Archive all cards" : "Archivovat všechny karty",
"Delete list" : "Smazat seznam",
@@ -163,7 +161,6 @@ OC.L10N.register(
"Archive all cards in this list" : "Archivovat všechny karty v tomto seznamu",
"Add a new card" : "Přidat novou kartu",
"Card name" : "Název karty",
"List deleted" : "Seznam smazán",
"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",
@@ -175,12 +172,6 @@ OC.L10N.register(
"Restore Attachment" : "Obnovit přílohu",
"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",
"Comments" : "Komentáře",
"Modified" : "Změněno",
"Created" : "Vytvořeno",
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Assign to users" : "Přiřadit k uživatelům",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
@@ -188,13 +179,6 @@ OC.L10N.register(
"Due date" : "Termín",
"Set a due date" : "Vybrat termín",
"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 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",
"Update" : "Aktualizovat",
"Description" : "Popis",
"(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)",
@@ -202,29 +186,43 @@ OC.L10N.register(
"Edit description" : "Upravit popis",
"View description" : "Zobrazit popis",
"Add Attachment" : "Přidat přílohu",
"Attachments" : "Přílohy",
"Comments" : "Komentáře",
"Choose attachment" : "Zvolte přílohu",
"Select Date" : "Vybrat datum",
"Modified" : "Změněno",
"Created" : "Vytvořeno",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Save" : "Uložit",
"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",
"Update" : "Aktualizovat",
"(group)" : "(skupina)",
"(circle)" : "(okruh)",
"Assign to me" : "Přiřadit mě",
"Unassign myself" : "Zrušit přiřazení sobě",
"Move card" : "Přesunout kartu",
"Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu",
"Delete card" : "Smazat kartu",
"Move card" : "Přesunout 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 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 name" : "Název tabule",
"Board details" : "Podrobnosti o desce",
"New board title" : "Název nové tabule",
"Edit board" : "Upravit tabuli",
"Clone board " : "Klonovat tabuli ",
"Unarchive board " : "Vrátit tabuli zpět z archivu ",
"Archive board " : "Archivovat tabuli ",
"Delete board " : "Smazat tabuli",
"Board details" : "Podrobnosti o desce",
"Board {0} deleted" : "Tabule {0} smazána",
"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.",
@@ -234,8 +232,8 @@ OC.L10N.register(
"Tomorrow" : "Zítra",
"This week" : "Tento týden",
"No due" : "Žádný termín",
"No upcoming cards" : "Žádné nadcházející karty",
"upcoming cards" : "nadcházející karty",
"No upcoming cards" : "Žádné nadcházející karty",
"Link to a board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou",
"Something went wrong" : "Něco se pokazilo",

View File

@@ -98,7 +98,8 @@
"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ě",
"Add board" : "Přidat tabuli",
"Create new board" : "Vytvořit novou tabuli",
"new board" : "nová tabule",
"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",
@@ -115,7 +116,7 @@
"This board is read only" : "Tato tabule je pouze pro čtení",
"Drop your files to upload" : "Přetáhněte sem soubory, které chcete nahrát",
"Archived cards" : "Archivované karty",
"Add list" : "Přidat seznam",
"Add new list" : "Přidat nový seznam",
"List name" : "Název seznamu",
"Apply filter" : "Uplatnit filtr",
"Filter by tag" : "Filtrovat podle příznaků",
@@ -144,8 +145,6 @@
"Undo" : "Vrátit zpět",
"Deleted cards" : "Smazané karty",
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
"Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…",
"No participants found" : "Nenalezeni žádní účastníci",
"Board owner" : "Vlastník tabule",
"(Group)" : "(Skupina)",
"(Circle)" : "(Okruh)",
@@ -153,7 +152,6 @@
"Can share" : "Může sdílet",
"Can manage" : "Může spravovat",
"Delete" : "Smazat",
"Failed to create share with {displayName}" : "Nepodařilo se vytvořit sdílení s {displayName}",
"Add a new list" : "Přidat nový sloupec",
"Archive all cards" : "Archivovat všechny karty",
"Delete list" : "Smazat seznam",
@@ -161,7 +159,6 @@
"Archive all cards in this list" : "Archivovat všechny karty v tomto seznamu",
"Add a new card" : "Přidat novou kartu",
"Card name" : "Název karty",
"List deleted" : "Seznam smazán",
"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",
@@ -173,12 +170,6 @@
"Restore Attachment" : "Obnovit přílohu",
"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",
"Comments" : "Komentáře",
"Modified" : "Změněno",
"Created" : "Vytvořeno",
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Assign to users" : "Přiřadit k uživatelům",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
@@ -186,13 +177,6 @@
"Due date" : "Termín",
"Set a due date" : "Vybrat termín",
"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 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",
"Update" : "Aktualizovat",
"Description" : "Popis",
"(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)",
@@ -200,29 +184,43 @@
"Edit description" : "Upravit popis",
"View description" : "Zobrazit popis",
"Add Attachment" : "Přidat přílohu",
"Attachments" : "Přílohy",
"Comments" : "Komentáře",
"Choose attachment" : "Zvolte přílohu",
"Select Date" : "Vybrat datum",
"Modified" : "Změněno",
"Created" : "Vytvořeno",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Save" : "Uložit",
"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",
"Update" : "Aktualizovat",
"(group)" : "(skupina)",
"(circle)" : "(okruh)",
"Assign to me" : "Přiřadit mě",
"Unassign myself" : "Zrušit přiřazení sobě",
"Move card" : "Přesunout kartu",
"Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu",
"Delete card" : "Smazat kartu",
"Move card" : "Přesunout 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 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 name" : "Název tabule",
"Board details" : "Podrobnosti o desce",
"New board title" : "Název nové tabule",
"Edit board" : "Upravit tabuli",
"Clone board " : "Klonovat tabuli ",
"Unarchive board " : "Vrátit tabuli zpět z archivu ",
"Archive board " : "Archivovat tabuli ",
"Delete board " : "Smazat tabuli",
"Board details" : "Podrobnosti o desce",
"Board {0} deleted" : "Tabule {0} smazána",
"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.",
@@ -232,8 +230,8 @@
"Tomorrow" : "Zítra",
"This week" : "Tento týden",
"No due" : "Žádný termín",
"No upcoming cards" : "Žádné nadcházející karty",
"upcoming cards" : "nadcházející karty",
"No upcoming cards" : "Žádné nadcházející karty",
"Link to a board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou",
"Something went wrong" : "Něco se pokazilo",

View File

@@ -16,11 +16,11 @@ OC.L10N.register(
"Edit" : "Golygu",
"Title" : "Teitl",
"Upload attachment" : "Llwytho atodiad",
"Modified" : "Addaswyd",
"Description" : "Disgrifiad",
"Select Date" : "Dewis Dyddiad",
"Modified" : "Addaswyd",
"Save" : "Cadw",
"Update" : "Diweddaru",
"Description" : "Disgrifiad",
"seconds ago" : "eiliad yn ôl",
"Shared with you" : "Shared with you",
"An error occurred" : "Digwyddodd gwall",

View File

@@ -14,11 +14,11 @@
"Edit" : "Golygu",
"Title" : "Teitl",
"Upload attachment" : "Llwytho atodiad",
"Modified" : "Addaswyd",
"Description" : "Disgrifiad",
"Select Date" : "Dewis Dyddiad",
"Modified" : "Addaswyd",
"Save" : "Cadw",
"Update" : "Diweddaru",
"Description" : "Disgrifiad",
"seconds ago" : "eiliad yn ôl",
"Shared with you" : "Shared with you",
"An error occurred" : "Digwyddodd gwall",

View File

@@ -16,12 +16,11 @@ OC.L10N.register(
"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",
"No file was uploaded" : "Ingen fil uploadet",
"Missing a temporary folder" : "Manglende midlertidig mappe.",
"Add board" : "Tilføj liste",
"Create new board" : "Opret ny liste",
"Cancel" : "Annullér",
"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",
"Details" : "Detaljer",
@@ -37,27 +36,28 @@ OC.L10N.register(
"Title" : "Titel",
"Members" : "Medlemmer",
"Upload attachment" : "Upload vedhæftning",
"Attachments" : "Vedhæftede filer",
"Comments" : "Kommentarer",
"Modified" : "Ændret",
"Created" : "Oprettet",
"Due date" : "Forfaldsdato",
"Remove due date" : "Fjern forfaldsdato",
"Description" : "Beskrivelse",
"Formatting help" : "Hjælp til formatering",
"Attachments" : "Vedhæftede filer",
"Comments" : "Kommentarer",
"Select Date" : "Vælg dato",
"Modified" : "Ændret",
"Created" : "Oprettet",
"Save" : "Gem",
"Reply" : "Besvar",
"Update" : "Opdatér",
"Description" : "Beskrivelse",
"Formatting help" : "Hjælp til formatering",
"(group)" : "(gruppe)",
"Move card" : "Flyt kort",
"Archive card" : "Arkivér kort",
"Delete card" : "Slet kort",
"Move card" : "Flyt kort",
"seconds ago" : "sekunder siden",
"Archived boards" : "Arkiverede lister",
"Shared with you" : "Shared with you",
"Board details" : "Liste detaljer",
"New board title" : "Ny titel på liste",
"Edit board" : "Rediger liste",
"Board details" : "Liste detaljer",
"An error occurred" : "Der var en fejl",
"Today" : "I dag",
"Tomorrow" : "I morgen",

View File

@@ -14,12 +14,11 @@
"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",
"No file was uploaded" : "Ingen fil uploadet",
"Missing a temporary folder" : "Manglende midlertidig mappe.",
"Add board" : "Tilføj liste",
"Create new board" : "Opret ny liste",
"Cancel" : "Annullér",
"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",
"Details" : "Detaljer",
@@ -35,27 +34,28 @@
"Title" : "Titel",
"Members" : "Medlemmer",
"Upload attachment" : "Upload vedhæftning",
"Attachments" : "Vedhæftede filer",
"Comments" : "Kommentarer",
"Modified" : "Ændret",
"Created" : "Oprettet",
"Due date" : "Forfaldsdato",
"Remove due date" : "Fjern forfaldsdato",
"Description" : "Beskrivelse",
"Formatting help" : "Hjælp til formatering",
"Attachments" : "Vedhæftede filer",
"Comments" : "Kommentarer",
"Select Date" : "Vælg dato",
"Modified" : "Ændret",
"Created" : "Oprettet",
"Save" : "Gem",
"Reply" : "Besvar",
"Update" : "Opdatér",
"Description" : "Beskrivelse",
"Formatting help" : "Hjælp til formatering",
"(group)" : "(gruppe)",
"Move card" : "Flyt kort",
"Archive card" : "Arkivér kort",
"Delete card" : "Slet kort",
"Move card" : "Flyt kort",
"seconds ago" : "sekunder siden",
"Archived boards" : "Arkiverede lister",
"Shared with you" : "Shared with you",
"Board details" : "Liste detaljer",
"New board title" : "Ny titel på liste",
"Edit board" : "Rediger liste",
"Board details" : "Liste detaljer",
"An error occurred" : "Der var en fejl",
"Today" : "I dag",
"Tomorrow" : "I morgen",

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",
@@ -49,7 +49,7 @@ OC.L10N.register(
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} hat von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
"You have assigned {assigneduser} to card {card} on board {board}" : "Du hast {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hat {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Du hast die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Du hast die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} hat die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Du hast die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} hat die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
@@ -67,13 +67,13 @@ OC.L10N.register(
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
"Upcoming cards" : "Anstehende Karten",
"Upcoming cards" : "Kommende Karten",
"Personal" : "Persönlich",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Dir von %s zugewiesen.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Dir die Karte \"%s\" auf \"%s\" zugewiesen.",
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
"%s has mentioned you in a comment on \"%s\"." : "%s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Dich in einem Kommentar zu \"%s\" erwähnt.",
"%s has mentioned you in a comment on \"%s\"." : " %s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Dich in einem Kommentar zu “%s” erwähnt.",
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.",
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Dir geteilt.",
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
@@ -81,7 +81,7 @@ OC.L10N.register(
"To review" : "Zu überprüfen",
"Action needed" : "Handlung erforderlich",
"Later" : "Später",
"copy" : "Kopie",
"copy" : "Kopieren",
"To do" : "Offen",
"Doing" : "In Arbeit",
"Done" : "Erledigt",
@@ -90,7 +90,7 @@ OC.L10N.register(
"Example Task 1" : "Beispielaufgabe 1",
"The file was uploaded" : "Die Datei wurde hochgeladen",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
"The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden",
"No file was uploaded" : "Es wurde keine Datei hochgeladen",
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
@@ -98,9 +98,10 @@ OC.L10N.register(
"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",
"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",
"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- 🔖 Vergabe 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" : "Kartendetails",
"Add board" : "Board hinzufügen",
"Create new board" : "Neues Board",
"new board" : "Neues Board",
"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",
@@ -117,7 +118,7 @@ OC.L10N.register(
"This board is read only" : "Dieses Board ist schreibgeschützt",
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
"Archived cards" : "Archivierte Karten",
"Add list" : "Liste hinzufügen",
"Add new list" : "Neue Liste hinzufügen",
"List name" : "Listenname",
"Apply filter" : "Filter anwenden",
"Filter by tag" : "Nach Schlagwort filtern",
@@ -146,8 +147,6 @@ OC.L10N.register(
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen…",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"No participants found" : "Keine Teilnehmer gefunden",
"Board owner" : "Board-Besitzer",
"(Group)" : "(Gruppe)",
"(Circle)" : "(Kreis)",
@@ -155,7 +154,6 @@ OC.L10N.register(
"Can share" : "kann teilen",
"Can manage" : "kann verwalten",
"Delete" : "Löschen",
"Failed to create share with {displayName}" : "Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
"Add a new list" : "Eine neue Liste hinzufügen",
"Archive all cards" : "Alle Karten archivieren",
"Delete list" : "Liste löschen",
@@ -163,7 +161,6 @@ OC.L10N.register(
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
"Add a new card" : "Neue Karte hinzufügen",
"Card name" : "Kartenname",
"List deleted" : "Liste gelöscht",
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
@@ -175,12 +172,6 @@ OC.L10N.register(
"Restore Attachment" : "Anhang wiederherstellen",
"Open in sidebar view" : "In Seitenleiste öffnen",
"Open in bigger view" : "In größerer Ansicht öffnen",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Modified" : "Geändert",
"Created" : "Erstellt",
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
@@ -188,13 +179,6 @@ OC.L10N.register(
"Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen",
"Select Date" : "Datum auswählen",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
@@ -202,43 +186,44 @@ OC.L10N.register(
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Add Attachment" : "Anhang anhängen",
"Write a description …" : "Beschreibung schreiben …",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Select Date" : "Datum auswählen",
"Modified" : "Geändert",
"Created" : "Erstellt",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Move card" : "Karte verschieben",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"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 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." : "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",
"New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",
"Unarchive board" : "Board dearchivieren",
"Archive board" : "Board archivieren",
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
"Due date reminders" : "Fälligkeitserinnerungen",
"All cards" : "Alle Karten",
"Assigned cards" : "Zugewiesene Karten",
"No notifications" : "Keine Benachrichtigungen",
"Delete board" : "Board löschen",
"Clone board " : "Board duplizieren",
"Unarchive board " : "Board dearchivieren",
"Archive board " : "Board archivieren",
"Delete board " : "Board löschen",
"Board details" : "Board-Details",
"Board {0} deleted" : "Board {0} gelöscht",
"Only assigned cards" : "Nur zugewiesene Karten",
"No reminder" : "Keine Erinnerung",
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
@@ -247,8 +232,8 @@ OC.L10N.register(
"Tomorrow" : "Morgen",
"This week" : "Diese Woche",
"No due" : "Kein Fälligkeitsdatum",
"No upcoming cards" : "Keine anstehenden Karten",
"upcoming cards" : "Anstehende Karten",
"upcoming cards" : "Kommende Karten",
"No upcoming cards" : "Keine kommenden Karten",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen",

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",
@@ -47,7 +47,7 @@
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} hat von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
"You have assigned {assigneduser} to card {card} on board {board}" : "Du hast {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hat {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Du hast die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Du hast die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} hat die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Du hast die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} hat die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
@@ -65,13 +65,13 @@
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
"Upcoming cards" : "Anstehende Karten",
"Upcoming cards" : "Kommende Karten",
"Personal" : "Persönlich",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Dir von %s zugewiesen.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Dir die Karte \"%s\" auf \"%s\" zugewiesen.",
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
"%s has mentioned you in a comment on \"%s\"." : "%s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Dich in einem Kommentar zu \"%s\" erwähnt.",
"%s has mentioned you in a comment on \"%s\"." : " %s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Dich in einem Kommentar zu “%s” erwähnt.",
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.",
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Dir geteilt.",
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
@@ -79,7 +79,7 @@
"To review" : "Zu überprüfen",
"Action needed" : "Handlung erforderlich",
"Later" : "Später",
"copy" : "Kopie",
"copy" : "Kopieren",
"To do" : "Offen",
"Doing" : "In Arbeit",
"Done" : "Erledigt",
@@ -88,7 +88,7 @@
"Example Task 1" : "Beispielaufgabe 1",
"The file was uploaded" : "Die Datei wurde hochgeladen",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
"The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden",
"No file was uploaded" : "Es wurde keine Datei hochgeladen",
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
@@ -96,9 +96,10 @@
"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",
"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",
"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- 🔖 Vergabe 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" : "Kartendetails",
"Add board" : "Board hinzufügen",
"Create new board" : "Neues Board",
"new board" : "Neues Board",
"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",
@@ -115,7 +116,7 @@
"This board is read only" : "Dieses Board ist schreibgeschützt",
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
"Archived cards" : "Archivierte Karten",
"Add list" : "Liste hinzufügen",
"Add new list" : "Neue Liste hinzufügen",
"List name" : "Listenname",
"Apply filter" : "Filter anwenden",
"Filter by tag" : "Nach Schlagwort filtern",
@@ -144,8 +145,6 @@
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen…",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"No participants found" : "Keine Teilnehmer gefunden",
"Board owner" : "Board-Besitzer",
"(Group)" : "(Gruppe)",
"(Circle)" : "(Kreis)",
@@ -153,7 +152,6 @@
"Can share" : "kann teilen",
"Can manage" : "kann verwalten",
"Delete" : "Löschen",
"Failed to create share with {displayName}" : "Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
"Add a new list" : "Eine neue Liste hinzufügen",
"Archive all cards" : "Alle Karten archivieren",
"Delete list" : "Liste löschen",
@@ -161,7 +159,6 @@
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
"Add a new card" : "Neue Karte hinzufügen",
"Card name" : "Kartenname",
"List deleted" : "Liste gelöscht",
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
@@ -173,12 +170,6 @@
"Restore Attachment" : "Anhang wiederherstellen",
"Open in sidebar view" : "In Seitenleiste öffnen",
"Open in bigger view" : "In größerer Ansicht öffnen",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Modified" : "Geändert",
"Created" : "Erstellt",
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
@@ -186,13 +177,6 @@
"Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen",
"Select Date" : "Datum auswählen",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
@@ -200,43 +184,44 @@
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Add Attachment" : "Anhang anhängen",
"Write a description …" : "Beschreibung schreiben …",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Select Date" : "Datum auswählen",
"Modified" : "Geändert",
"Created" : "Erstellt",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Move card" : "Karte verschieben",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"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 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." : "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",
"New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",
"Unarchive board" : "Board dearchivieren",
"Archive board" : "Board archivieren",
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
"Due date reminders" : "Fälligkeitserinnerungen",
"All cards" : "Alle Karten",
"Assigned cards" : "Zugewiesene Karten",
"No notifications" : "Keine Benachrichtigungen",
"Delete board" : "Board löschen",
"Clone board " : "Board duplizieren",
"Unarchive board " : "Board dearchivieren",
"Archive board " : "Board archivieren",
"Delete board " : "Board löschen",
"Board details" : "Board-Details",
"Board {0} deleted" : "Board {0} gelöscht",
"Only assigned cards" : "Nur zugewiesene Karten",
"No reminder" : "Keine Erinnerung",
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
@@ -245,8 +230,8 @@
"Tomorrow" : "Morgen",
"This week" : "Diese Woche",
"No due" : "Kein Fälligkeitsdatum",
"No upcoming cards" : "Keine anstehenden Karten",
"upcoming cards" : "Anstehende Karten",
"upcoming cards" : "Kommende Karten",
"No upcoming cards" : "Keine kommenden Karten",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen",

View File

@@ -21,12 +21,12 @@ OC.L10N.register(
"{user} has created a new list {stack} on board {board}" : "{user} hat die neue Liste {stack} auf dem Board {board} erstellt",
"You have renamed list {before} to {stack} on board {board}" : "Sie haben die Liste {before} auf dem Board {board} in {stack} umbenannt",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} hat die Liste {before} in {stack} auf dem Board {board} umbenannt",
"You have deleted list {stack} on board {board}" : "Sie haben die Liste {stack} auf dem Board {board} gelöscht",
"You have deleted list {stack} on board {board}" : "Sie haben die Liste {stack} aus dem Board {board} entfernt",
"{user} has deleted list {stack} on board {board}" : "{user} hat die Liste {stack} aus dem Board {board} entfernt",
"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",
@@ -47,9 +47,9 @@ OC.L10N.register(
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} hat der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} hinzugefügt",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Sie haben von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} hat von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
"You have assigned {assigneduser} to card {card} on board {board}" : "Sie haben {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
"You have assigned {assigneduser} to card {card} on board {board}" : "Sie haben {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hat {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Sie haben die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Sie haben die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} hat die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Sie haben die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} hat die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
@@ -67,7 +67,7 @@ OC.L10N.register(
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
"Upcoming cards" : "Anstehende Karten",
"Upcoming cards" : "Kommende Karten",
"Personal" : "Persönlich",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Ihnen von %s zugewiesen.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Ihnen die Karte \"%s\" auf \"%s\" zugewiesen.",
@@ -81,7 +81,7 @@ OC.L10N.register(
"To review" : "Zu überprüfen",
"Action needed" : "Handlung erforderlich",
"Later" : "Später",
"copy" : "Kopie",
"copy" : "kopieren",
"To do" : "Offen",
"Doing" : "In Arbeit",
"Done" : "Erledigt",
@@ -98,9 +98,10 @@ OC.L10N.register(
"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",
"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",
"Add board" : "Board hinzufügen",
"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- 🔖 Zuweisung 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" : "Kartendetails",
"Create new board" : "Neues Board",
"new board" : "Neues Board",
"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",
@@ -117,7 +118,7 @@ OC.L10N.register(
"This board is read only" : "Dieses Board ist schreibgeschützt",
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
"Archived cards" : "Archivierte Karten",
"Add list" : "Liste hinzufügen",
"Add new list" : "Neue Liste hinzufügen",
"List name" : "Listenname",
"Apply filter" : "Filter anwenden",
"Filter by tag" : "Nach Schlagwort filtern",
@@ -134,9 +135,9 @@ OC.L10N.register(
"Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
"Loading board" : "Lade Board",
"Loading board" : "Board laden",
"No lists available" : "Keine Listen verfügbar",
"Create a new list to add cards to this board" : "Erstellen Sie eine neue Liste, um diesem Board Karten hinzuzufügen",
"Create a new list to add cards to this board" : "Erstelle eine neue Liste, um diesem Board Karten hinzuzufügen",
"Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen",
"Tags" : "Schlagworte",
@@ -146,8 +147,6 @@ OC.L10N.register(
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen…",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"No participants found" : "Keine Teilnehmer gefunden",
"Board owner" : "Board-Besitzer",
"(Group)" : "(Gruppe)",
"(Circle)" : "(Kreis)",
@@ -155,7 +154,6 @@ OC.L10N.register(
"Can share" : "kann teilen",
"Can manage" : "kann verwalten",
"Delete" : "Löschen",
"Failed to create share with {displayName}" : "Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
"Add a new list" : "Eine neue Liste hinzufügen",
"Archive all cards" : "Alle Karten archivieren",
"Delete list" : "Liste löschen",
@@ -163,7 +161,6 @@ OC.L10N.register(
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
"Add a new card" : "Neue Karte hinzufügen",
"Card name" : "Kartenname",
"List deleted" : "Liste gelöscht",
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
@@ -175,26 +172,13 @@ OC.L10N.register(
"Restore Attachment" : "Anhang wiederherstellen",
"Open in sidebar view" : "In Seitenleiste öffnen",
"Open in bigger view" : "In größerer Ansicht öffnen",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Modified" : "Geändert",
"Created" : "Erstellt",
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
"Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen",
"Select Date" : "Datum auswählen",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"Remove due date" : "Fälligkeitsdatum entfernen",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
@@ -202,53 +186,54 @@ OC.L10N.register(
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Add Attachment" : "Anhang anhängen",
"Write a description …" : "Beschreibung schreiben …",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Select Date" : "Datum auswählen",
"Modified" : "Geändert",
"Created" : "Erstellt",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Move card" : "Karte verschieben",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"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 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." : "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",
"New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",
"Unarchive board" : "Board dearchivieren",
"Archive board" : "Board archivieren",
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
"Due date reminders" : "Fälligkeitserinnerungen",
"All cards" : "Alle Karten",
"Assigned cards" : "Zugewiesene Karten",
"No notifications" : "Keine Benachrichtigungen",
"Delete board" : "Board löschen",
"Clone board " : "Board duplizieren",
"Unarchive board " : "Board dearchivieren",
"Archive board " : "Board archivieren",
"Delete board " : "Board löschen",
"Board details" : "Board-Details",
"Board {0} deleted" : "Board {0} gelöscht",
"Only assigned cards" : "Nur zugewiesene Karten",
"No reminder" : "Keine Erinnerung",
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all dessen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
"Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"This week" : "Diese Woche",
"No due" : "Kein Fälligkeitsdatum",
"No upcoming cards" : "Keine anstehenden Karten",
"upcoming cards" : "Anstehende Karten",
"upcoming cards" : "Kommende Karten",
"No upcoming cards" : "Keine kommenden Karten",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen",

View File

@@ -19,12 +19,12 @@
"{user} has created a new list {stack} on board {board}" : "{user} hat die neue Liste {stack} auf dem Board {board} erstellt",
"You have renamed list {before} to {stack} on board {board}" : "Sie haben die Liste {before} auf dem Board {board} in {stack} umbenannt",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} hat die Liste {before} in {stack} auf dem Board {board} umbenannt",
"You have deleted list {stack} on board {board}" : "Sie haben die Liste {stack} auf dem Board {board} gelöscht",
"You have deleted list {stack} on board {board}" : "Sie haben die Liste {stack} aus dem Board {board} entfernt",
"{user} has deleted list {stack} on board {board}" : "{user} hat die Liste {stack} aus dem Board {board} entfernt",
"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",
@@ -45,9 +45,9 @@
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} hat der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} hinzugefügt",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Sie haben von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} hat von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
"You have assigned {assigneduser} to card {card} on board {board}" : "Sie haben {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
"You have assigned {assigneduser} to card {card} on board {board}" : "Sie haben {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hat {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Sie haben die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Sie haben die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} hat die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Sie haben die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} hat die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
@@ -65,7 +65,7 @@
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
"Upcoming cards" : "Anstehende Karten",
"Upcoming cards" : "Kommende Karten",
"Personal" : "Persönlich",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Ihnen von %s zugewiesen.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Ihnen die Karte \"%s\" auf \"%s\" zugewiesen.",
@@ -79,7 +79,7 @@
"To review" : "Zu überprüfen",
"Action needed" : "Handlung erforderlich",
"Later" : "Später",
"copy" : "Kopie",
"copy" : "kopieren",
"To do" : "Offen",
"Doing" : "In Arbeit",
"Done" : "Erledigt",
@@ -96,9 +96,10 @@
"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",
"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",
"Add board" : "Board hinzufügen",
"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- 🔖 Zuweisung 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" : "Kartendetails",
"Create new board" : "Neues Board",
"new board" : "Neues Board",
"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",
@@ -115,7 +116,7 @@
"This board is read only" : "Dieses Board ist schreibgeschützt",
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
"Archived cards" : "Archivierte Karten",
"Add list" : "Liste hinzufügen",
"Add new list" : "Neue Liste hinzufügen",
"List name" : "Listenname",
"Apply filter" : "Filter anwenden",
"Filter by tag" : "Nach Schlagwort filtern",
@@ -132,9 +133,9 @@
"Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
"Loading board" : "Lade Board",
"Loading board" : "Board laden",
"No lists available" : "Keine Listen verfügbar",
"Create a new list to add cards to this board" : "Erstellen Sie eine neue Liste, um diesem Board Karten hinzuzufügen",
"Create a new list to add cards to this board" : "Erstelle eine neue Liste, um diesem Board Karten hinzuzufügen",
"Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen",
"Tags" : "Schlagworte",
@@ -144,8 +145,6 @@
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen…",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"No participants found" : "Keine Teilnehmer gefunden",
"Board owner" : "Board-Besitzer",
"(Group)" : "(Gruppe)",
"(Circle)" : "(Kreis)",
@@ -153,7 +152,6 @@
"Can share" : "kann teilen",
"Can manage" : "kann verwalten",
"Delete" : "Löschen",
"Failed to create share with {displayName}" : "Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
"Add a new list" : "Eine neue Liste hinzufügen",
"Archive all cards" : "Alle Karten archivieren",
"Delete list" : "Liste löschen",
@@ -161,7 +159,6 @@
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
"Add a new card" : "Neue Karte hinzufügen",
"Card name" : "Kartenname",
"List deleted" : "Liste gelöscht",
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
@@ -173,26 +170,13 @@
"Restore Attachment" : "Anhang wiederherstellen",
"Open in sidebar view" : "In Seitenleiste öffnen",
"Open in bigger view" : "In größerer Ansicht öffnen",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Modified" : "Geändert",
"Created" : "Erstellt",
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
"Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen",
"Select Date" : "Datum auswählen",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"Remove due date" : "Fälligkeitsdatum entfernen",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
@@ -200,53 +184,54 @@
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Add Attachment" : "Anhang anhängen",
"Write a description …" : "Beschreibung schreiben …",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Select Date" : "Datum auswählen",
"Modified" : "Geändert",
"Created" : "Erstellt",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Move card" : "Karte verschieben",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"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 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." : "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",
"New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",
"Unarchive board" : "Board dearchivieren",
"Archive board" : "Board archivieren",
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
"Due date reminders" : "Fälligkeitserinnerungen",
"All cards" : "Alle Karten",
"Assigned cards" : "Zugewiesene Karten",
"No notifications" : "Keine Benachrichtigungen",
"Delete board" : "Board löschen",
"Clone board " : "Board duplizieren",
"Unarchive board " : "Board dearchivieren",
"Archive board " : "Board archivieren",
"Delete board " : "Board löschen",
"Board details" : "Board-Details",
"Board {0} deleted" : "Board {0} gelöscht",
"Only assigned cards" : "Nur zugewiesene Karten",
"No reminder" : "Keine Erinnerung",
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all dessen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
"Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"This week" : "Diese Woche",
"No due" : "Kein Fälligkeitsdatum",
"No upcoming cards" : "Keine anstehenden Karten",
"upcoming cards" : "Anstehende Karten",
"upcoming cards" : "Kommende Karten",
"No upcoming cards" : "Keine kommenden Karten",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen",

View File

@@ -99,7 +99,8 @@ OC.L10N.register(
"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" : "Λεπτομέρειες καρτέλας",
"Add board" : "Προσθήκη πίνακα",
"Create new board" : "Δημιουργία νέου πίνακα",
"new board" : "νέος πίνακας",
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε έργο",
"Search by board title" : "Αναζήτηση με το όνομα πίνακα",
"Select board" : "Επιλογή πίνακα",
@@ -116,7 +117,7 @@ OC.L10N.register(
"This board is read only" : "Ο πίνακας είναι μόνο για ανάγνωση",
"Drop your files to upload" : "Αποθέστε τα αρχεία σας για ανέβασμα",
"Archived cards" : "Αρχειοθετημένες κάρτες",
"Add list" : "Προσθήκη λίστας",
"Add new list" : "Προσθήκη νέας λιστάς",
"List name" : "Λίστα ονομάτων",
"Apply filter" : "Εφαρμογή φίλτρου",
"Filter by tag" : "Φίλτρο ανά ετικέτα",
@@ -167,11 +168,6 @@ OC.L10N.register(
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
"Delete Attachment" : "Διαγραφή Συνημμένου",
"Restore Attachment" : "Επαναφορά Συνημμένου",
"Attachments" : "Συνημμένα",
"Comments" : "Σχόλια",
"Modified" : "Τροποποιήθηκε",
"Created" : "Δημιουργήθηκε",
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
"Assign to users" : "Αναθέστε στους χρήστες",
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
@@ -179,13 +175,6 @@ OC.L10N.register(
"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…)" : "(Αποθήκευση...)",
@@ -193,15 +182,27 @@ OC.L10N.register(
"Edit description" : "Επεξεργασία περιγραφής",
"View description" : "Εμφάνιση περιγραφής",
"Add Attachment" : "Προσθήκη συνημμένου",
"Attachments" : "Συνημμένα",
"Comments" : "Σχόλια",
"Choose attachment" : "Επιλογή συνημμένου",
"Select Date" : "Επέλεξε Ημέρα",
"Modified" : "Τροποποιήθηκε",
"Created" : "Δημιουργήθηκε",
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"Save" : "Αποθήκευση",
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
"In reply to" : "Ως απάντηση σε",
"Reply" : "Απάντηση",
"Update" : "Ενημέρωση",
"(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)",
"Assign to me" : "Ανάθεση σε εμένα",
"Unassign myself" : "Αποδέσμευσή μου",
"Move card" : "Μετακίνηση κάρτας",
"Unarchive card" : "Αναίρεση αρχειοθέτησης κάρτας",
"Archive card" : "Αρχειοθέτηση κάρτας",
"Delete card" : "Διαγραφή κάρτας",
"Move card" : "Μετακίνηση κάρτας",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Select a list" : "Επιλέξτε μια λίστα",
"seconds ago" : " δευτερόλεπτα πριν ",
@@ -210,8 +211,13 @@ OC.L10N.register(
"Shared with you" : "Διαμοιρασμένα μαζί σας",
"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" : "Λεπτομέριες πίνακα",
"New board title" : "Νέος τίτλος πίνακα",
"Edit board" : "Επεξεργασία πίνακα",
"Clone board " : "Κλωνοποίηση πίνακα",
"Unarchive board " : "Αναίρεση αρχειοθέτησης πίνακα",
"Archive board " : "Αρχειοθέτηση πίνακα",
"Delete board " : "Διαγραφή πίνακα",
"Board details" : "Λεπτομέριες πίνακα",
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
"An error occurred" : "Παρουσιάστηκε σφάλμα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",

View File

@@ -97,7 +97,8 @@
"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" : "Λεπτομέρειες καρτέλας",
"Add board" : "Προσθήκη πίνακα",
"Create new board" : "Δημιουργία νέου πίνακα",
"new board" : "νέος πίνακας",
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε έργο",
"Search by board title" : "Αναζήτηση με το όνομα πίνακα",
"Select board" : "Επιλογή πίνακα",
@@ -114,7 +115,7 @@
"This board is read only" : "Ο πίνακας είναι μόνο για ανάγνωση",
"Drop your files to upload" : "Αποθέστε τα αρχεία σας για ανέβασμα",
"Archived cards" : "Αρχειοθετημένες κάρτες",
"Add list" : "Προσθήκη λίστας",
"Add new list" : "Προσθήκη νέας λιστάς",
"List name" : "Λίστα ονομάτων",
"Apply filter" : "Εφαρμογή φίλτρου",
"Filter by tag" : "Φίλτρο ανά ετικέτα",
@@ -165,11 +166,6 @@
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
"Delete Attachment" : "Διαγραφή Συνημμένου",
"Restore Attachment" : "Επαναφορά Συνημμένου",
"Attachments" : "Συνημμένα",
"Comments" : "Σχόλια",
"Modified" : "Τροποποιήθηκε",
"Created" : "Δημιουργήθηκε",
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
"Assign to users" : "Αναθέστε στους χρήστες",
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
@@ -177,13 +173,6 @@
"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…)" : "(Αποθήκευση...)",
@@ -191,15 +180,27 @@
"Edit description" : "Επεξεργασία περιγραφής",
"View description" : "Εμφάνιση περιγραφής",
"Add Attachment" : "Προσθήκη συνημμένου",
"Attachments" : "Συνημμένα",
"Comments" : "Σχόλια",
"Choose attachment" : "Επιλογή συνημμένου",
"Select Date" : "Επέλεξε Ημέρα",
"Modified" : "Τροποποιήθηκε",
"Created" : "Δημιουργήθηκε",
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"Save" : "Αποθήκευση",
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
"In reply to" : "Ως απάντηση σε",
"Reply" : "Απάντηση",
"Update" : "Ενημέρωση",
"(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)",
"Assign to me" : "Ανάθεση σε εμένα",
"Unassign myself" : "Αποδέσμευσή μου",
"Move card" : "Μετακίνηση κάρτας",
"Unarchive card" : "Αναίρεση αρχειοθέτησης κάρτας",
"Archive card" : "Αρχειοθέτηση κάρτας",
"Delete card" : "Διαγραφή κάρτας",
"Move card" : "Μετακίνηση κάρτας",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Select a list" : "Επιλέξτε μια λίστα",
"seconds ago" : " δευτερόλεπτα πριν ",
@@ -208,8 +209,13 @@
"Shared with you" : "Διαμοιρασμένα μαζί σας",
"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" : "Λεπτομέριες πίνακα",
"New board title" : "Νέος τίτλος πίνακα",
"Edit board" : "Επεξεργασία πίνακα",
"Clone board " : "Κλωνοποίηση πίνακα",
"Unarchive board " : "Αναίρεση αρχειοθέτησης πίνακα",
"Archive board " : "Αρχειοθέτηση πίνακα",
"Delete board " : "Διαγραφή πίνακα",
"Board details" : "Λεπτομέριες πίνακα",
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
"An error occurred" : "Παρουσιάστηκε σφάλμα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",

View File

@@ -19,7 +19,7 @@ OC.L10N.register(
"Missing a temporary folder" : "Missing a temporary folder",
"Could not write file to disk" : "Could not write file to disk",
"A PHP extension stopped the file upload" : "A PHP extension stopped the file upload",
"Add board" : "Add board",
"Create new board" : "Create new board",
"Cancel" : "Cancel",
"File already exists" : "File already exists",
"Do you want to overwrite it?" : "Do you want to overwrite it?",
@@ -38,25 +38,26 @@ OC.L10N.register(
"Title" : "Title",
"Members" : "Members",
"Upload attachment" : "Upload attachment",
"Due date" : "Due date",
"Remove due date" : "Remove due date",
"Description" : "Description",
"Formatting help" : "Formatting help",
"Attachments" : "Attachments",
"Comments" : "Comments",
"Modified" : "Modified",
"Created" : "Created",
"Due date" : "Due date",
"Remove due date" : "Remove due date",
"Save" : "Save",
"Reply" : "Reply",
"Update" : "Update",
"Description" : "Description",
"Formatting help" : "Formatting help",
"(group)" : "(group)",
"Archive card" : "Archive card",
"Delete card" : "Delete card",
"seconds ago" : "seconds ago",
"Archived boards" : "Archived boards",
"Shared with you" : "Shared with you",
"Board details" : "Board details",
"New board title" : "New board title",
"Edit board" : "Edit board",
"Board details" : "Board details",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
"This week" : "This week"

View File

@@ -17,7 +17,7 @@
"Missing a temporary folder" : "Missing a temporary folder",
"Could not write file to disk" : "Could not write file to disk",
"A PHP extension stopped the file upload" : "A PHP extension stopped the file upload",
"Add board" : "Add board",
"Create new board" : "Create new board",
"Cancel" : "Cancel",
"File already exists" : "File already exists",
"Do you want to overwrite it?" : "Do you want to overwrite it?",
@@ -36,25 +36,26 @@
"Title" : "Title",
"Members" : "Members",
"Upload attachment" : "Upload attachment",
"Due date" : "Due date",
"Remove due date" : "Remove due date",
"Description" : "Description",
"Formatting help" : "Formatting help",
"Attachments" : "Attachments",
"Comments" : "Comments",
"Modified" : "Modified",
"Created" : "Created",
"Due date" : "Due date",
"Remove due date" : "Remove due date",
"Save" : "Save",
"Reply" : "Reply",
"Update" : "Update",
"Description" : "Description",
"Formatting help" : "Formatting help",
"(group)" : "(group)",
"Archive card" : "Archive card",
"Delete card" : "Delete card",
"seconds ago" : "seconds ago",
"Archived boards" : "Archived boards",
"Shared with you" : "Shared with you",
"Board details" : "Board details",
"New board title" : "New board title",
"Edit board" : "Edit board",
"Board details" : "Board details",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
"This week" : "This week"

View File

@@ -73,6 +73,7 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "PHP-modulo haltigis la dosieralŝuton",
"No file uploaded or file size exceeds maximum of %s" : "Neniu dosiero alŝutita, aŭ dosiergrando transpasas la maksimumon %s",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Kartaro („Deck“) estas kanban-eca organiza ilo por mastrumi sian vivon kaj teaman projektaron per Nextcloud.\n\n\n- 📥 Aldonu viajn taskojn al kartoj, kaj organizu ilin \n- 📄 Skribu pliajn notojn per marklingvo „Markdown“\n- 🔖 Uzu etikedojn por pli bone organiziĝi\n- 👥 Kunhavigu kun viaj teamo, amikoj, familio\n- 📎 Aldonu dosierojn, kaj enmetu ilin en via „Markdown“-a priskribo\n- 💬 Diskutu kun via teamo pere de la komentoj\n- ⚡ Sekvu la ŝanĝojn per la aktivaĵa fluo\n- 🚀 Organizu vian projekton",
"Create new board" : "Krei novan tabulon",
"Select the board to link to a project" : "Elekti la tabulon ligotan al projekto",
"Select board" : "Elekti tabulon",
"Cancel" : "Nuligi",
@@ -97,18 +98,18 @@ OC.L10N.register(
"Title" : "Titolo",
"Members" : "Membroj",
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
"Attachments" : "Dosieraj aldonaĵoj",
"Comments" : "Komentoj",
"Modified" : "Modifita",
"Created" : "Kreita",
"Due date" : "Limdato",
"Remove due date" : "Viŝi limdaton",
"Description" : "Priskribo",
"Formatting help" : "Helpo pri tekstaranĝo",
"Attachments" : "Dosieraj aldonaĵoj",
"Comments" : "Komentoj",
"Select Date" : "Elekti daton",
"Modified" : "Modifita",
"Created" : "Kreita",
"Save" : "Konservi",
"Reply" : "Respondi",
"Update" : "Ĝisdatigi",
"Description" : "Priskribo",
"Formatting help" : "Helpo pri tekstaranĝo",
"(group)" : "(grupo)",
"Unarchive card" : "Malarĥivigi karton",
"Archive card" : "Arĥivigi karton",
@@ -117,6 +118,7 @@ OC.L10N.register(
"Archived boards" : "Arĥivigitaj tabuloj",
"Shared with you" : "Kunhavata kun vi",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limigo de Kartaro („Deck“) baros uzantojn, kiuj ne estas en tiuj grupoj, krei iliajn proprajn tabulojn. Uzantoj tamen eblos labori kun tabuloj kunhavigitaj kun ili.",
"New board title" : "Nova tabultitolo",
"Edit board" : "Modifi tabulon",
"An error occurred" : "Eraro okazis",
"Today" : "Hodiaŭ",

View File

@@ -71,6 +71,7 @@
"A PHP extension stopped the file upload" : "PHP-modulo haltigis la dosieralŝuton",
"No file uploaded or file size exceeds maximum of %s" : "Neniu dosiero alŝutita, aŭ dosiergrando transpasas la maksimumon %s",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Kartaro („Deck“) estas kanban-eca organiza ilo por mastrumi sian vivon kaj teaman projektaron per Nextcloud.\n\n\n- 📥 Aldonu viajn taskojn al kartoj, kaj organizu ilin \n- 📄 Skribu pliajn notojn per marklingvo „Markdown“\n- 🔖 Uzu etikedojn por pli bone organiziĝi\n- 👥 Kunhavigu kun viaj teamo, amikoj, familio\n- 📎 Aldonu dosierojn, kaj enmetu ilin en via „Markdown“-a priskribo\n- 💬 Diskutu kun via teamo pere de la komentoj\n- ⚡ Sekvu la ŝanĝojn per la aktivaĵa fluo\n- 🚀 Organizu vian projekton",
"Create new board" : "Krei novan tabulon",
"Select the board to link to a project" : "Elekti la tabulon ligotan al projekto",
"Select board" : "Elekti tabulon",
"Cancel" : "Nuligi",
@@ -95,18 +96,18 @@
"Title" : "Titolo",
"Members" : "Membroj",
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
"Attachments" : "Dosieraj aldonaĵoj",
"Comments" : "Komentoj",
"Modified" : "Modifita",
"Created" : "Kreita",
"Due date" : "Limdato",
"Remove due date" : "Viŝi limdaton",
"Description" : "Priskribo",
"Formatting help" : "Helpo pri tekstaranĝo",
"Attachments" : "Dosieraj aldonaĵoj",
"Comments" : "Komentoj",
"Select Date" : "Elekti daton",
"Modified" : "Modifita",
"Created" : "Kreita",
"Save" : "Konservi",
"Reply" : "Respondi",
"Update" : "Ĝisdatigi",
"Description" : "Priskribo",
"Formatting help" : "Helpo pri tekstaranĝo",
"(group)" : "(grupo)",
"Unarchive card" : "Malarĥivigi karton",
"Archive card" : "Arĥivigi karton",
@@ -115,6 +116,7 @@
"Archived boards" : "Arĥivigitaj tabuloj",
"Shared with you" : "Kunhavata kun vi",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limigo de Kartaro („Deck“) baros uzantojn, kiuj ne estas en tiuj grupoj, krei iliajn proprajn tabulojn. Uzantoj tamen eblos labori kun tabuloj kunhavigitaj kun ili.",
"New board title" : "Nova tabultitolo",
"Edit board" : "Modifi tabulon",
"An error occurred" : "Eraro okazis",
"Today" : "Hodiaŭ",

View File

@@ -67,7 +67,6 @@ OC.L10N.register(
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Cambios en la <strong>app Deck</strong>",
"A <strong>comment</strong> was created on a card" : "Un <strong>comment</strong> ha sido creado en una tarjeta",
"Upcoming cards" : "Próximas tarjetas",
"Personal" : "Personal",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La tarjeta \"%s\" en \"%s\" te ha sido asignada por %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} te ha asignado la tarjeta \"%s\" en \"%s\".",
@@ -100,7 +99,8 @@ OC.L10N.register(
"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",
"Add board" : "Añadir tablero",
"Create new board" : "Crear nuevo tablero",
"new board" : "nuevo tablero",
"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",
@@ -117,7 +117,7 @@ OC.L10N.register(
"This board is read only" : "Este tablero es de sólo lectura",
"Drop your files to upload" : "Arrastra tus archivos para subir",
"Archived cards" : "Tarjetas archivadas",
"Add list" : "Agregar lista",
"Add new list" : "Añadir nueva lista",
"List name" : "Nombre de la lista",
"Apply filter" : "Aplicar filtro",
"Filter by tag" : "Filtrar por etiqueta",
@@ -146,8 +146,6 @@ OC.L10N.register(
"Undo" : "Deshacer",
"Deleted cards" : "Cartas eliminadas",
"Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo ...",
"Searching for users, groups and circles …" : "Buscando usuarios, grupos o círculos...",
"No participants found" : "No se encontraron participantes",
"Board owner" : "Propietario del tablero",
"(Group)" : "(Grupo)",
"(Circle)" : "(Circle)",
@@ -155,15 +153,12 @@ OC.L10N.register(
"Can share" : "Puede compartir",
"Can manage" : "Puede gestionar",
"Delete" : "Eliminar",
"Failed to create share with {displayName}" : "Fallo al crear el recurso compartido denominado {displayName}",
"Add a new list" : "Añadir una lista nueva",
"Archive all cards" : "Archivar todas las tarjetas",
"Delete list" : "Eliminar lista",
"Add card" : "Añadir tarjeta",
"Archive all cards in this list" : "Archivar todas las tarjetas en esta lista",
"Add a new card" : "Añadir una nueva tarjeta",
"Card name" : "Nombre de la tarjeta",
"List deleted" : "Lista borrada",
"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 ",
@@ -173,14 +168,6 @@ OC.L10N.register(
"Add this attachment" : "Añadir este adjunto",
"Delete Attachment" : "Borrar adjunto",
"Restore Attachment" : "Restaurar Adjunto",
"Open in sidebar view" : "Abrir en vista de barra lateral",
"Open in bigger view" : "Abrir en vista más grande",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"The title cannot be empty." : "El título no puede estar vacío.",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -188,13 +175,6 @@ OC.L10N.register(
"Due date" : "Fecha límite",
"Set a due date" : "Fijar una fecha límite",
"Remove due date" : "Eliminar fecha límite",
"Select Date" : "Seleccione la fecha",
"Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.",
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
"In reply to" : "En respuesta a",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)",
@@ -202,42 +182,43 @@ OC.L10N.register(
"Edit description" : "Editar descripción",
"View description" : "Ver descripción",
"Add Attachment" : "Añadir adjunto",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Choose attachment" : "Escoger adjunto",
"Select Date" : "Seleccione la fecha",
"Modified" : "Modificado",
"Created" : "Creado",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.",
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
"In reply to" : "En respuesta a",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(circle)",
"Assign to me" : "Asignarme a mí",
"Unassign myself" : "Desasignarme a mí mismo",
"Move card" : "Mover tarjeta",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta",
"Move card" : "Mover 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 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",
"New board title" : "Nuevo título de 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",
"Clone board " : "Clonar tablero",
"Unarchive board " : "Desarchivar tablero",
"Archive board " : "Archivar tablero",
"Delete board " : "Eliminar tablero",
"Board details" : "Detalles del 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?",
@@ -246,8 +227,6 @@ OC.L10N.register(
"Tomorrow" : "Mañana",
"This week" : "Esta semana",
"No due" : "Sin finalizar",
"No upcoming cards" : "No hay tarjetas próximas",
"upcoming cards" : "próximas tarjetas",
"Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta",
"Something went wrong" : "Algo ha ido mal",

View File

@@ -65,7 +65,6 @@
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Cambios en la <strong>app Deck</strong>",
"A <strong>comment</strong> was created on a card" : "Un <strong>comment</strong> ha sido creado en una tarjeta",
"Upcoming cards" : "Próximas tarjetas",
"Personal" : "Personal",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La tarjeta \"%s\" en \"%s\" te ha sido asignada por %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} te ha asignado la tarjeta \"%s\" en \"%s\".",
@@ -98,7 +97,8 @@
"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",
"Add board" : "Añadir tablero",
"Create new board" : "Crear nuevo tablero",
"new board" : "nuevo tablero",
"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",
@@ -115,7 +115,7 @@
"This board is read only" : "Este tablero es de sólo lectura",
"Drop your files to upload" : "Arrastra tus archivos para subir",
"Archived cards" : "Tarjetas archivadas",
"Add list" : "Agregar lista",
"Add new list" : "Añadir nueva lista",
"List name" : "Nombre de la lista",
"Apply filter" : "Aplicar filtro",
"Filter by tag" : "Filtrar por etiqueta",
@@ -144,8 +144,6 @@
"Undo" : "Deshacer",
"Deleted cards" : "Cartas eliminadas",
"Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo ...",
"Searching for users, groups and circles …" : "Buscando usuarios, grupos o círculos...",
"No participants found" : "No se encontraron participantes",
"Board owner" : "Propietario del tablero",
"(Group)" : "(Grupo)",
"(Circle)" : "(Circle)",
@@ -153,15 +151,12 @@
"Can share" : "Puede compartir",
"Can manage" : "Puede gestionar",
"Delete" : "Eliminar",
"Failed to create share with {displayName}" : "Fallo al crear el recurso compartido denominado {displayName}",
"Add a new list" : "Añadir una lista nueva",
"Archive all cards" : "Archivar todas las tarjetas",
"Delete list" : "Eliminar lista",
"Add card" : "Añadir tarjeta",
"Archive all cards in this list" : "Archivar todas las tarjetas en esta lista",
"Add a new card" : "Añadir una nueva tarjeta",
"Card name" : "Nombre de la tarjeta",
"List deleted" : "Lista borrada",
"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 ",
@@ -171,14 +166,6 @@
"Add this attachment" : "Añadir este adjunto",
"Delete Attachment" : "Borrar adjunto",
"Restore Attachment" : "Restaurar Adjunto",
"Open in sidebar view" : "Abrir en vista de barra lateral",
"Open in bigger view" : "Abrir en vista más grande",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"The title cannot be empty." : "El título no puede estar vacío.",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -186,13 +173,6 @@
"Due date" : "Fecha límite",
"Set a due date" : "Fijar una fecha límite",
"Remove due date" : "Eliminar fecha límite",
"Select Date" : "Seleccione la fecha",
"Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.",
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
"In reply to" : "En respuesta a",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)",
@@ -200,42 +180,43 @@
"Edit description" : "Editar descripción",
"View description" : "Ver descripción",
"Add Attachment" : "Añadir adjunto",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Choose attachment" : "Escoger adjunto",
"Select Date" : "Seleccione la fecha",
"Modified" : "Modificado",
"Created" : "Creado",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.",
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
"In reply to" : "En respuesta a",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(circle)",
"Assign to me" : "Asignarme a mí",
"Unassign myself" : "Desasignarme a mí mismo",
"Move card" : "Mover tarjeta",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta",
"Move card" : "Mover 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 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",
"New board title" : "Nuevo título de 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",
"Clone board " : "Clonar tablero",
"Unarchive board " : "Desarchivar tablero",
"Archive board " : "Archivar tablero",
"Delete board " : "Eliminar tablero",
"Board details" : "Detalles del 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?",
@@ -244,8 +225,6 @@
"Tomorrow" : "Mañana",
"This week" : "Esta semana",
"No due" : "Sin finalizar",
"No upcoming cards" : "No hay tarjetas próximas",
"upcoming cards" : "próximas tarjetas",
"Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta",
"Something went wrong" : "Algo ha ido mal",

View File

@@ -15,6 +15,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -33,22 +34,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -13,6 +13,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -31,22 +32,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -12,6 +12,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
"No file was uploaded" : "No se subió ningún archivo ",
"Missing a temporary folder" : "Falta un directorio temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Show archived cards" : "Mostrar tarjetas archivadas",
@@ -25,20 +26,21 @@ OC.L10N.register(
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Select Date" : "Seleccionar fecha",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Select Date" : "Seleccionar fecha",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "segundos",
"Shared with you" : "Compartido con usted",
"New board title" : "Nuevo título de tablero",
"Board details" : "Detalles del tablero",
"An error occurred" : "Ocurrió un error",
"Today" : "Hoy",

View File

@@ -10,6 +10,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
"No file was uploaded" : "No se subió ningún archivo ",
"Missing a temporary folder" : "Falta un directorio temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Show archived cards" : "Mostrar tarjetas archivadas",
@@ -23,20 +24,21 @@
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Select Date" : "Seleccionar fecha",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Select Date" : "Seleccionar fecha",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "segundos",
"Shared with you" : "Compartido con usted",
"New board title" : "Nuevo título de tablero",
"Board details" : "Detalles del tablero",
"An error occurred" : "Ocurrió un error",
"Today" : "Hoy",

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -36,22 +37,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -17,6 +17,7 @@
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -34,22 +35,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -20,6 +20,7 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -37,22 +38,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -18,6 +18,7 @@
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -35,22 +36,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -36,22 +37,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -17,6 +17,7 @@
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -34,22 +35,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -36,22 +37,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -17,6 +17,7 @@
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -34,22 +35,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -36,22 +37,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -17,6 +17,7 @@
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -34,22 +35,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -36,22 +37,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -17,6 +17,7 @@
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -34,22 +35,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -15,6 +15,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -32,22 +33,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -13,6 +13,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -30,22 +31,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -37,23 +38,24 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"An error occurred" : "Ha ocurrido un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",

View File

@@ -17,6 +17,7 @@
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -35,23 +36,24 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"An error occurred" : "Ha ocurrido un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",

View File

@@ -15,6 +15,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -32,22 +33,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -13,6 +13,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -30,22 +31,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -15,6 +15,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -32,22 +33,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -13,6 +13,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -30,22 +31,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -15,6 +15,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -32,22 +33,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -13,6 +13,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -30,22 +31,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -15,6 +15,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -32,22 +33,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -13,6 +13,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -30,22 +31,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -16,6 +16,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -33,22 +34,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"An error occurred" : "Se presentó un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",

View File

@@ -14,6 +14,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -31,22 +32,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"An error occurred" : "Se presentó un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -36,22 +37,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -17,6 +17,7 @@
"Missing a temporary folder" : "Falta una carpeta temporal",
"Could not write file to disk" : "No fue posible escribir a disco",
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -34,22 +35,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -15,6 +15,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -32,22 +33,23 @@ OC.L10N.register(
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -13,6 +13,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded" : "No se cargó el archivo",
"Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
@@ -30,22 +31,23 @@
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana"

View File

@@ -18,16 +18,15 @@ OC.L10N.register(
"Delete" : "Kustuta",
"Edit" : "Redigeeri",
"Title" : "Pealkiri",
"Due date" : "Tähtaeg",
"Description" : "Kirjeldus",
"Comments" : "Kommentaarid",
"Modified" : "Muudetud",
"Created" : "Loodud",
"Due date" : "Tähtaeg",
"Save" : "Salvesta",
"Reply" : "Vasta",
"Update" : "Uuenda",
"Description" : "Kirjeldus",
"(group)" : "(grupp)",
"Delete card" : "Kustuta kaart",
"seconds ago" : "sekundit tagasi",
"Shared with you" : "Sinuga jagatud",
"An error occurred" : "Tekkis tõrge",

View File

@@ -16,16 +16,15 @@
"Delete" : "Kustuta",
"Edit" : "Redigeeri",
"Title" : "Pealkiri",
"Due date" : "Tähtaeg",
"Description" : "Kirjeldus",
"Comments" : "Kommentaarid",
"Modified" : "Muudetud",
"Created" : "Loodud",
"Due date" : "Tähtaeg",
"Save" : "Salvesta",
"Reply" : "Vasta",
"Update" : "Uuenda",
"Description" : "Kirjeldus",
"(group)" : "(grupp)",
"Delete card" : "Kustuta kaart",
"seconds ago" : "sekundit tagasi",
"Shared with you" : "Sinuga jagatud",
"An error occurred" : "Tekkis tõrge",

View File

@@ -100,7 +100,8 @@ OC.L10N.register(
"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",
"Add board" : "Gehitu mahaia",
"Create new board" : "Sortu mahai berri bat",
"new board" : "mahai berria",
"Select the board to link to a project" : "Hautatu mahaia proiektu bati estekatzeko",
"Search by board title" : "Bilatu mahai izenez",
"Select board" : "Hautatu mahaia",
@@ -117,7 +118,7 @@ OC.L10N.register(
"This board is read only" : "Mahai hau irakurtzeko soilik da",
"Drop your files to upload" : "Jaregin zure fitxategiak kargatzeko",
"Archived cards" : "Artxibatutako txartelak",
"Add list" : "Gehitu zerrenda",
"Add new list" : "Gehitu zerrenda berria",
"List name" : "Zerrendaren izena",
"Apply filter" : "Ezarri iragazkia",
"Filter by tag" : "Iragazi etiketaz",
@@ -146,8 +147,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)",
@@ -155,7 +154,6 @@ 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",
@@ -171,12 +169,6 @@ OC.L10N.register(
"Add this attachment" : "Gehitu eranskin hau",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"Attachments" : "Eranskinak",
"Comments" : "Iruzkinak",
"Modified" : "Aldatua",
"Created" : "Sortua",
"The title cannot be empty." : "Izenburua ezin da hutsik egon.",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
"Assign to users" : "Esleitu erabiltzaileei",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
@@ -184,13 +176,6 @@ OC.L10N.register(
"Due date" : "Epe-muga",
"Set a due date" : "Ezarri epe-muga",
"Remove due date" : "Ezabatu epe-muga",
"Select Date" : "Hautatu data",
"Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
"In reply to" : "Honi erantzunez",
"Reply" : "Erantzun",
"Update" : "Eguneratu",
"Description" : "Deskribapena",
"(Unsaved)" : "(Gorde gabe)",
"(Saving…)" : "(Gordetzen...)",
@@ -198,29 +183,43 @@ OC.L10N.register(
"Edit description" : "Editatu azalpena",
"View description" : "Ikusi deskribapena",
"Add Attachment" : "Gehitu eranskina",
"Attachments" : "Eranskinak",
"Comments" : "Iruzkinak",
"Choose attachment" : "Aukeratu eranskina",
"Select Date" : "Hautatu data",
"Modified" : "Aldatua",
"Created" : "Sortua",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
"In reply to" : "Honi erantzunez",
"Reply" : "Erantzun",
"Update" : "Eguneratu",
"(group)" : "(taldea)",
"(circle)" : "(zirkulua)",
"Assign to me" : "Esleitu niri",
"Unassign myself" : "Niri esleitzeari utzi",
"Move card" : "Mugitu txartela",
"Unarchive card" : "Berreskuratu txartela artxibotik",
"Archive card" : "Artxibatu txartela",
"Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu 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",
"Shared with you" : "Zurekin partekatua",
"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",
"New board title" : "Mahai berriaren izenburua",
"Edit board" : "Editatu mahaia",
"Clone board " : "Klonatu mahaia",
"Unarchive board " : "Berreskuratu mahaia artxibotik",
"Archive board " : "Artxibatu mahaia",
"Delete board " : "Ezabatu mahaia",
"Board details" : "Mahaiaren xehetasunak",
"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?",
@@ -229,8 +228,8 @@ OC.L10N.register(
"Tomorrow" : "Bihar",
"This week" : "Aste honetan",
"No due" : "Epemugarik ez",
"No upcoming cards" : "Ez dago hurrengo txartelik",
"upcoming cards" : "hurrengo txartelak",
"No upcoming cards" : "Ez dago hurrengo txartelik",
"Link to a board" : "Estekatu mahai batera",
"Link to a card" : "Estekatu txartel batera",
"Something went wrong" : "Zerbait gaizki joan da",

View File

@@ -98,7 +98,8 @@
"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",
"Add board" : "Gehitu mahaia",
"Create new board" : "Sortu mahai berri bat",
"new board" : "mahai berria",
"Select the board to link to a project" : "Hautatu mahaia proiektu bati estekatzeko",
"Search by board title" : "Bilatu mahai izenez",
"Select board" : "Hautatu mahaia",
@@ -115,7 +116,7 @@
"This board is read only" : "Mahai hau irakurtzeko soilik da",
"Drop your files to upload" : "Jaregin zure fitxategiak kargatzeko",
"Archived cards" : "Artxibatutako txartelak",
"Add list" : "Gehitu zerrenda",
"Add new list" : "Gehitu zerrenda berria",
"List name" : "Zerrendaren izena",
"Apply filter" : "Ezarri iragazkia",
"Filter by tag" : "Iragazi etiketaz",
@@ -144,8 +145,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)",
@@ -153,7 +152,6 @@
"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",
@@ -169,12 +167,6 @@
"Add this attachment" : "Gehitu eranskin hau",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"Attachments" : "Eranskinak",
"Comments" : "Iruzkinak",
"Modified" : "Aldatua",
"Created" : "Sortua",
"The title cannot be empty." : "Izenburua ezin da hutsik egon.",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
"Assign to users" : "Esleitu erabiltzaileei",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
@@ -182,13 +174,6 @@
"Due date" : "Epe-muga",
"Set a due date" : "Ezarri epe-muga",
"Remove due date" : "Ezabatu epe-muga",
"Select Date" : "Hautatu data",
"Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
"In reply to" : "Honi erantzunez",
"Reply" : "Erantzun",
"Update" : "Eguneratu",
"Description" : "Deskribapena",
"(Unsaved)" : "(Gorde gabe)",
"(Saving…)" : "(Gordetzen...)",
@@ -196,29 +181,43 @@
"Edit description" : "Editatu azalpena",
"View description" : "Ikusi deskribapena",
"Add Attachment" : "Gehitu eranskina",
"Attachments" : "Eranskinak",
"Comments" : "Iruzkinak",
"Choose attachment" : "Aukeratu eranskina",
"Select Date" : "Hautatu data",
"Modified" : "Aldatua",
"Created" : "Sortua",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
"In reply to" : "Honi erantzunez",
"Reply" : "Erantzun",
"Update" : "Eguneratu",
"(group)" : "(taldea)",
"(circle)" : "(zirkulua)",
"Assign to me" : "Esleitu niri",
"Unassign myself" : "Niri esleitzeari utzi",
"Move card" : "Mugitu txartela",
"Unarchive card" : "Berreskuratu txartela artxibotik",
"Archive card" : "Artxibatu txartela",
"Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu 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",
"Shared with you" : "Zurekin partekatua",
"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",
"New board title" : "Mahai berriaren izenburua",
"Edit board" : "Editatu mahaia",
"Clone board " : "Klonatu mahaia",
"Unarchive board " : "Berreskuratu mahaia artxibotik",
"Archive board " : "Artxibatu mahaia",
"Delete board " : "Ezabatu mahaia",
"Board details" : "Mahaiaren xehetasunak",
"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?",
@@ -227,8 +226,8 @@
"Tomorrow" : "Bihar",
"This week" : "Aste honetan",
"No due" : "Epemugarik ez",
"No upcoming cards" : "Ez dago hurrengo txartelik",
"upcoming cards" : "hurrengo txartelak",
"No upcoming cards" : "Ez dago hurrengo txartelik",
"Link to a board" : "Estekatu mahai batera",
"Link to a card" : "Estekatu txartel batera",
"Something went wrong" : "Zerbait gaizki joan da",

View File

@@ -39,7 +39,8 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "یک افزونه پی‌اچ‌پی مانع بارگذاری پرونده شد",
"No file uploaded or file size exceeds maximum of %s" : "پرونده‌ای بارگذاری نشد و یا حجم پرونده بیش از بیشینه مجاز %s بود",
"Card details" : "جزئیات کارت",
"Add board" : "تخته را اضافه کنید",
"Create new board" : "ایجاد تختهٔ جدید",
"new board" : "تختهٔ جدید",
"Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Search by board title" : "جستجو بر اساس عنوان تخته",
"Select board" : "انتخاب تخته",
@@ -56,7 +57,7 @@ OC.L10N.register(
"This board is read only" : "تخته، فقط خواندنی است",
"Drop your files to upload" : "برای بارگذاری، پرونده‌ها را اینجا رها کنید",
"Archived cards" : "کارت‌های بایگانی‌شده",
"Add list" : "افزودن فهرست",
"Add new list" : "افزودن فهرست جدید",
"List name" : "نام فهرست",
"Apply filter" : "اعمال پالایه",
"Filter by tag" : "پالایش برحسب برچسب",
@@ -97,19 +98,7 @@ OC.L10N.register(
"Add this attachment" : "افزودن این پیوست",
"Delete Attachment" : "حذف پیوست",
"Restore Attachment" : "بازیابی پیوست",
"Attachments" : "پیوست‌ها",
"Comments" : "نظرات",
"Modified" : "تغییر یافته",
"Created" : "ایجاد شده",
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
"Due date" : "موعد مقرر",
"Select Date" : "تاریخ را انتخاب کنید",
"Save" : "ذخیره",
"The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.",
"The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.",
"In reply to" : "در پاسخ به",
"Reply" : "پاسخ",
"Update" : "به‌روزرسانی",
"Description" : "توضیحات",
"(Unsaved)" : "(ذخیره نشده)",
"(Saving…)" : "(در حال ذخیره...)",
@@ -117,17 +106,30 @@ OC.L10N.register(
"Edit description" : "ویرایش توضیحات",
"View description" : "نمایش توضیحات",
"Add Attachment" : "افزودن پیوست",
"Attachments" : "پیوست‌ها",
"Comments" : "نظرات",
"Choose attachment" : "انتخاب پیوست",
"Select Date" : "تاریخ را انتخاب کنید",
"Modified" : "تغییر یافته",
"Created" : "ایجاد شده",
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
"Save" : "ذخیره",
"The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.",
"The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.",
"In reply to" : "در پاسخ به",
"Reply" : "پاسخ",
"Update" : "به‌روزرسانی",
"(group)" : "(گروه)",
"(circle)" : "(حلقه)",
"Move card" : "انتقال کارت",
"Archive card" : "کارت بایگانی",
"Delete card" : "حذف کارت",
"Move card" : "انتقال کارت",
"Move card to another board" : "انتقال کارت به تخته‌ای دیگر",
"seconds ago" : "ثانیه‌هایی پیش",
"All boards" : "همه تخته‌ها",
"Archived boards" : "تخته‌های بایگانی شده",
"Shared with you" : "با شما به اشتراک گذاشته شده است",
"New board title" : "عنوان تختهٔ جدید",
"Edit board" : "ویرایش تخته",
"An error occurred" : "خطایی روی داد",
"Today" : "Today",

View File

@@ -37,7 +37,8 @@
"A PHP extension stopped the file upload" : "یک افزونه پی‌اچ‌پی مانع بارگذاری پرونده شد",
"No file uploaded or file size exceeds maximum of %s" : "پرونده‌ای بارگذاری نشد و یا حجم پرونده بیش از بیشینه مجاز %s بود",
"Card details" : "جزئیات کارت",
"Add board" : "تخته را اضافه کنید",
"Create new board" : "ایجاد تختهٔ جدید",
"new board" : "تختهٔ جدید",
"Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Search by board title" : "جستجو بر اساس عنوان تخته",
"Select board" : "انتخاب تخته",
@@ -54,7 +55,7 @@
"This board is read only" : "تخته، فقط خواندنی است",
"Drop your files to upload" : "برای بارگذاری، پرونده‌ها را اینجا رها کنید",
"Archived cards" : "کارت‌های بایگانی‌شده",
"Add list" : "افزودن فهرست",
"Add new list" : "افزودن فهرست جدید",
"List name" : "نام فهرست",
"Apply filter" : "اعمال پالایه",
"Filter by tag" : "پالایش برحسب برچسب",
@@ -95,19 +96,7 @@
"Add this attachment" : "افزودن این پیوست",
"Delete Attachment" : "حذف پیوست",
"Restore Attachment" : "بازیابی پیوست",
"Attachments" : "پیوست‌ها",
"Comments" : "نظرات",
"Modified" : "تغییر یافته",
"Created" : "ایجاد شده",
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
"Due date" : "موعد مقرر",
"Select Date" : "تاریخ را انتخاب کنید",
"Save" : "ذخیره",
"The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.",
"The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.",
"In reply to" : "در پاسخ به",
"Reply" : "پاسخ",
"Update" : "به‌روزرسانی",
"Description" : "توضیحات",
"(Unsaved)" : "(ذخیره نشده)",
"(Saving…)" : "(در حال ذخیره...)",
@@ -115,17 +104,30 @@
"Edit description" : "ویرایش توضیحات",
"View description" : "نمایش توضیحات",
"Add Attachment" : "افزودن پیوست",
"Attachments" : "پیوست‌ها",
"Comments" : "نظرات",
"Choose attachment" : "انتخاب پیوست",
"Select Date" : "تاریخ را انتخاب کنید",
"Modified" : "تغییر یافته",
"Created" : "ایجاد شده",
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
"Save" : "ذخیره",
"The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.",
"The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.",
"In reply to" : "در پاسخ به",
"Reply" : "پاسخ",
"Update" : "به‌روزرسانی",
"(group)" : "(گروه)",
"(circle)" : "(حلقه)",
"Move card" : "انتقال کارت",
"Archive card" : "کارت بایگانی",
"Delete card" : "حذف کارت",
"Move card" : "انتقال کارت",
"Move card to another board" : "انتقال کارت به تخته‌ای دیگر",
"seconds ago" : "ثانیه‌هایی پیش",
"All boards" : "همه تخته‌ها",
"Archived boards" : "تخته‌های بایگانی شده",
"Shared with you" : "با شما به اشتراک گذاشته شده است",
"New board title" : "عنوان تختهٔ جدید",
"Edit board" : "ویرایش تخته",
"An error occurred" : "خطایی روی داد",
"Today" : "Today",

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\".",
@@ -86,7 +72,8 @@ OC.L10N.register(
"No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "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",
"Create new board" : "Luo uusi taulu",
"new board" : "uusi taulu",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Select board" : "Valitse taulu",
"Select the card to link to a project" : "Valitse projektiin linkitettävä kortti",
@@ -102,15 +89,11 @@ OC.L10N.register(
"This board is read only" : "Tämä taulu on kirjoitussuojattu",
"Drop your files to upload" : "Pudota tiedostot lähettääksesi ne",
"Archived cards" : "Arkistoidut kortit",
"Add list" : "Lisää lista",
"Add new list" : "Lisää uusi lista",
"List name" : "Listan nimi",
"Apply filter" : "Toteuta suodatus",
"Filter by tag" : "Suodata tunnisteen perusteella",
"Filter by assigned user" : "Suodata määritetyn käyttäjän mukaan",
"Unassigned" : "Määrittämätön",
"Filter by due date" : "Suodata määräpäivän mukaan",
"Overdue" : "Myöhässä",
"Next 24 hours" : "Seuraavat 24 tuntia",
"Next 7 days" : "Seuraavat 7 päivää",
"Next 30 days" : "Seuraavat 30 päivää",
"No due date" : "Ei eräpäivää",
@@ -119,18 +102,14 @@ OC.L10N.register(
"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)",
@@ -138,74 +117,50 @@ 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",
"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",
"Attachments" : "Liitteet",
"Comments" : "Kommentit",
"Modified" : "Muokattu",
"Created" : "Luotu",
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
"Assign a tag to this card…" : "Lisää kortille tunniste...",
"Due date" : "Eräpäivä",
"Set a due date" : "Aseta eräpäivä",
"Remove due date" : "Poista eräpäivä",
"Description" : "Kuvaus",
"Formatting help" : "Muotoiluapu",
"Attachments" : "Liitteet",
"Comments" : "Kommentit",
"Select Date" : "Valitse päivä",
"Modified" : "Muokattu",
"Created" : "Luotu",
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
"Save" : "Tallenna",
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
"Reply" : "Vastaa",
"Update" : "Päivitä",
"Description" : "Kuvaus",
"(Saving…)" : "(Tallennetaan…)",
"Formatting help" : "Muotoiluapu",
"Edit description" : "Muokkaa kuvausta",
"View description" : "Näytä kuvaus",
"Add Attachment" : "Lisää liite",
"Choose attachment" : "Valitse liite",
"(group)" : "(ryhmä)",
"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",
"Select a list" : "Valitse lista ",
"Card deleted" : "Kortti poistettu",
"Move card" : "Siirrä kortti",
"seconds ago" : "sekuntia sitten",
"All boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut",
"Shared with you" : "Jaettu kanssasi",
"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 name" : "Taulun nimi",
"Board details" : "Taulun tiedot",
"New board title" : "Uusi taulun otsikko",
"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",
"Board details" : "Taulun tiedot",
"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",
"Something went wrong" : "Jokin meni vikaan",

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\".",
@@ -84,7 +70,8 @@
"No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "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",
"Create new board" : "Luo uusi taulu",
"new board" : "uusi taulu",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Select board" : "Valitse taulu",
"Select the card to link to a project" : "Valitse projektiin linkitettävä kortti",
@@ -100,15 +87,11 @@
"This board is read only" : "Tämä taulu on kirjoitussuojattu",
"Drop your files to upload" : "Pudota tiedostot lähettääksesi ne",
"Archived cards" : "Arkistoidut kortit",
"Add list" : "Lisää lista",
"Add new list" : "Lisää uusi lista",
"List name" : "Listan nimi",
"Apply filter" : "Toteuta suodatus",
"Filter by tag" : "Suodata tunnisteen perusteella",
"Filter by assigned user" : "Suodata määritetyn käyttäjän mukaan",
"Unassigned" : "Määrittämätön",
"Filter by due date" : "Suodata määräpäivän mukaan",
"Overdue" : "Myöhässä",
"Next 24 hours" : "Seuraavat 24 tuntia",
"Next 7 days" : "Seuraavat 7 päivää",
"Next 30 days" : "Seuraavat 30 päivää",
"No due date" : "Ei eräpäivää",
@@ -117,18 +100,14 @@
"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)",
@@ -136,74 +115,50 @@
"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",
"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",
"Attachments" : "Liitteet",
"Comments" : "Kommentit",
"Modified" : "Muokattu",
"Created" : "Luotu",
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
"Assign a tag to this card…" : "Lisää kortille tunniste...",
"Due date" : "Eräpäivä",
"Set a due date" : "Aseta eräpäivä",
"Remove due date" : "Poista eräpäivä",
"Description" : "Kuvaus",
"Formatting help" : "Muotoiluapu",
"Attachments" : "Liitteet",
"Comments" : "Kommentit",
"Select Date" : "Valitse päivä",
"Modified" : "Muokattu",
"Created" : "Luotu",
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
"Save" : "Tallenna",
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
"Reply" : "Vastaa",
"Update" : "Päivitä",
"Description" : "Kuvaus",
"(Saving…)" : "(Tallennetaan…)",
"Formatting help" : "Muotoiluapu",
"Edit description" : "Muokkaa kuvausta",
"View description" : "Näytä kuvaus",
"Add Attachment" : "Lisää liite",
"Choose attachment" : "Valitse liite",
"(group)" : "(ryhmä)",
"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",
"Select a list" : "Valitse lista ",
"Card deleted" : "Kortti poistettu",
"Move card" : "Siirrä kortti",
"seconds ago" : "sekuntia sitten",
"All boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut",
"Shared with you" : "Jaettu kanssasi",
"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 name" : "Taulun nimi",
"Board details" : "Taulun tiedot",
"New board title" : "Uusi taulun otsikko",
"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",
"Board details" : "Taulun tiedot",
"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",
"Something went wrong" : "Jokin meni vikaan",

View File

@@ -100,7 +100,8 @@ OC.L10N.register(
"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",
"Add board" : "Ajouter un tableau",
"Create new board" : "Créer un nouveau tableau",
"new board" : "nouveau tableau",
"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",
@@ -117,7 +118,7 @@ OC.L10N.register(
"This board is read only" : "Ce tableau est en lecture seule",
"Drop your files to upload" : "Glissez vos fichiers pour les envoyer",
"Archived cards" : "Cartes archivées",
"Add list" : "Ajouter une liste",
"Add new list" : "Ajouter une nouvelle liste",
"List name" : "Nom de la liste",
"Apply filter" : "Filtrer",
"Filter by tag" : "Filtrer par étiquette",
@@ -146,8 +147,6 @@ OC.L10N.register(
"Undo" : "Annuler",
"Deleted cards" : "Cartes supprimées",
"Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…",
"Searching for users, groups and circles …" : "Recherche d'utilisateurs, de groupes et de cercles ...",
"No participants found" : "Aucun participant trouvé",
"Board owner" : "Propriétaire du tableau",
"(Group)" : "(Groupe)",
"(Circle)" : "(Cercle)",
@@ -155,15 +154,12 @@ OC.L10N.register(
"Can share" : "Peut partager",
"Can manage" : "Peut gérer",
"Delete" : "Supprimer",
"Failed to create share with {displayName}" : "Échec de la création du partage avec {displayName}",
"Add a new list" : "Ajouter une nouvelle liste",
"Archive all cards" : "Archiver toutes les cartes",
"Delete list" : "Supprimer la liste",
"Add card" : "Ajouter une carte",
"Archive all cards in this list" : "Archiver toutes les cartes de cette liste",
"Add a new card" : "Ajouter une nouvelle carte",
"Card name" : "Nom de la carte",
"List deleted" : "Liste supprimée",
"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",
@@ -175,12 +171,6 @@ OC.L10N.register(
"Restore Attachment" : "Restaurer la pièce jointe",
"Open in sidebar view" : "Ouvrir dans la barre latérale",
"Open in bigger view" : "Ouvrir dans la vue principale",
"Attachments" : "Pièces jointes",
"Comments" : "Commentaires",
"Modified" : "Modifié",
"Created" : "Créé",
"The title cannot be empty." : "Le titre ne peut pas être vide.",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
"Assign to users" : "Attribuer aux utilisateurs",
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
@@ -188,13 +178,6 @@ OC.L10N.register(
"Due date" : "Date d'échéance",
"Set a due date" : "Définir une date d'échéance",
"Remove due date" : "Supprimer la date d'échéance",
"Select Date" : "Sélectionnez une date",
"Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
"In reply to" : "En réponse à",
"Reply" : "Répondre",
"Update" : "Mettre à jour",
"Description" : "Description",
"(Unsaved)" : "(Non enregistré)",
"(Saving…)" : "(Enregistrement ...)",
@@ -202,36 +185,44 @@ OC.L10N.register(
"Edit description" : "Modifier la description",
"View description" : "Afficher la description",
"Add Attachment" : "Ajouter une pièce jointe",
"Attachments" : "Pièces jointes",
"Comments" : "Commentaires",
"Choose attachment" : "Choisir une pièce jointe",
"Select Date" : "Sélectionnez une date",
"Modified" : "Modifié",
"Created" : "Créé",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
"In reply to" : "En réponse à",
"Reply" : "Répondre",
"Update" : "Mettre à jour",
"(group)" : "(groupe)",
"(circle)" : "(cercle)",
"Assign to me" : "Me l'assigner",
"Unassign myself" : "Me le désassigner",
"Move card" : "Déplacer la carte",
"Unarchive card" : "Sortir la carte des archives",
"Archive card" : "Archiver la carte",
"Delete card" : "Supprimer la carte",
"Move card" : "Déplacer 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 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",
"New board title" : "Nouveau titre pour le tableau",
"Edit board" : "Modifier le tableau",
"Clone board" : "Dupliquer le tableau",
"Turn on due date reminders" : "Activer les rappels",
"Turn off due date reminders" : "Désactiver les rappels",
"Due date reminders" : "Rappels",
"No notifications" : "Aucune notification",
"Clone board " : "Dupliquer le tableau",
"Unarchive board " : "Sortir le tableau des archives",
"Archive board " : "Archiver le tableau",
"Delete board " : "Supprimer le tableau",
"Board details" : "Détails du tableau",
"Board {0} deleted" : "Tableau {0} supprimé",
"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.",
"Delete the board?" : "Supprimer le tableau ?",
@@ -240,8 +231,8 @@ OC.L10N.register(
"Tomorrow" : "Demain",
"This week" : "Cette semaine",
"No due" : "Sans échéance",
"No upcoming cards" : "Pas de cartes à venir",
"upcoming cards" : "cartes à venir",
"No upcoming cards" : "Pas de cartes à venir",
"Link to a board" : "Relier à un tableau",
"Link to a card" : "Relier à une carte",
"Something went wrong" : "Quelque chose s'est mal passé",

View File

@@ -98,7 +98,8 @@
"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",
"Add board" : "Ajouter un tableau",
"Create new board" : "Créer un nouveau tableau",
"new board" : "nouveau tableau",
"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",
@@ -115,7 +116,7 @@
"This board is read only" : "Ce tableau est en lecture seule",
"Drop your files to upload" : "Glissez vos fichiers pour les envoyer",
"Archived cards" : "Cartes archivées",
"Add list" : "Ajouter une liste",
"Add new list" : "Ajouter une nouvelle liste",
"List name" : "Nom de la liste",
"Apply filter" : "Filtrer",
"Filter by tag" : "Filtrer par étiquette",
@@ -144,8 +145,6 @@
"Undo" : "Annuler",
"Deleted cards" : "Cartes supprimées",
"Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…",
"Searching for users, groups and circles …" : "Recherche d'utilisateurs, de groupes et de cercles ...",
"No participants found" : "Aucun participant trouvé",
"Board owner" : "Propriétaire du tableau",
"(Group)" : "(Groupe)",
"(Circle)" : "(Cercle)",
@@ -153,15 +152,12 @@
"Can share" : "Peut partager",
"Can manage" : "Peut gérer",
"Delete" : "Supprimer",
"Failed to create share with {displayName}" : "Échec de la création du partage avec {displayName}",
"Add a new list" : "Ajouter une nouvelle liste",
"Archive all cards" : "Archiver toutes les cartes",
"Delete list" : "Supprimer la liste",
"Add card" : "Ajouter une carte",
"Archive all cards in this list" : "Archiver toutes les cartes de cette liste",
"Add a new card" : "Ajouter une nouvelle carte",
"Card name" : "Nom de la carte",
"List deleted" : "Liste supprimée",
"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",
@@ -173,12 +169,6 @@
"Restore Attachment" : "Restaurer la pièce jointe",
"Open in sidebar view" : "Ouvrir dans la barre latérale",
"Open in bigger view" : "Ouvrir dans la vue principale",
"Attachments" : "Pièces jointes",
"Comments" : "Commentaires",
"Modified" : "Modifié",
"Created" : "Créé",
"The title cannot be empty." : "Le titre ne peut pas être vide.",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
"Assign to users" : "Attribuer aux utilisateurs",
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
@@ -186,13 +176,6 @@
"Due date" : "Date d'échéance",
"Set a due date" : "Définir une date d'échéance",
"Remove due date" : "Supprimer la date d'échéance",
"Select Date" : "Sélectionnez une date",
"Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
"In reply to" : "En réponse à",
"Reply" : "Répondre",
"Update" : "Mettre à jour",
"Description" : "Description",
"(Unsaved)" : "(Non enregistré)",
"(Saving…)" : "(Enregistrement ...)",
@@ -200,36 +183,44 @@
"Edit description" : "Modifier la description",
"View description" : "Afficher la description",
"Add Attachment" : "Ajouter une pièce jointe",
"Attachments" : "Pièces jointes",
"Comments" : "Commentaires",
"Choose attachment" : "Choisir une pièce jointe",
"Select Date" : "Sélectionnez une date",
"Modified" : "Modifié",
"Created" : "Créé",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
"In reply to" : "En réponse à",
"Reply" : "Répondre",
"Update" : "Mettre à jour",
"(group)" : "(groupe)",
"(circle)" : "(cercle)",
"Assign to me" : "Me l'assigner",
"Unassign myself" : "Me le désassigner",
"Move card" : "Déplacer la carte",
"Unarchive card" : "Sortir la carte des archives",
"Archive card" : "Archiver la carte",
"Delete card" : "Supprimer la carte",
"Move card" : "Déplacer 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 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",
"New board title" : "Nouveau titre pour le tableau",
"Edit board" : "Modifier le tableau",
"Clone board" : "Dupliquer le tableau",
"Turn on due date reminders" : "Activer les rappels",
"Turn off due date reminders" : "Désactiver les rappels",
"Due date reminders" : "Rappels",
"No notifications" : "Aucune notification",
"Clone board " : "Dupliquer le tableau",
"Unarchive board " : "Sortir le tableau des archives",
"Archive board " : "Archiver le tableau",
"Delete board " : "Supprimer le tableau",
"Board details" : "Détails du tableau",
"Board {0} deleted" : "Tableau {0} supprimé",
"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.",
"Delete the board?" : "Supprimer le tableau ?",
@@ -238,8 +229,8 @@
"Tomorrow" : "Demain",
"This week" : "Cette semaine",
"No due" : "Sans échéance",
"No upcoming cards" : "Pas de cartes à venir",
"upcoming cards" : "cartes à venir",
"No upcoming cards" : "Pas de cartes à venir",
"Link to a board" : "Relier à un tableau",
"Link to a card" : "Relier à une carte",
"Something went wrong" : "Quelque chose s'est mal passé",

View File

@@ -100,7 +100,8 @@ OC.L10N.register(
"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",
"Add board" : "Engadir taboleiro",
"Create new board" : "Crear un novo taboleiro",
"new board" : "novo taboleiro",
"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",
@@ -117,7 +118,7 @@ OC.L10N.register(
"This board is read only" : "Este taboleiro é só de lectura",
"Drop your files to upload" : "Arrastre os seus ficheiros para envialos",
"Archived cards" : "Tarxetas arquivadas",
"Add list" : "Engadir unha lista",
"Add new list" : "Engadir unha lista nova",
"List name" : "Nome da lista",
"Apply filter" : "Aplicar filtro",
"Filter by tag" : "Filtrar pola etiqueta",
@@ -146,8 +147,6 @@ OC.L10N.register(
"Undo" : "Desfacer",
"Deleted cards" : "Eliminar tarxetas",
"Share board with a user, group or circle …" : "Compartir taboleiro cun usuario, grupo ou círculo…",
"Searching for users, groups and circles …" : "Buscando por usuarios, grupos e círculos…",
"No participants found" : "Non se atoparon participantes",
"Board owner" : "Propietariio do taboleiro",
"(Group)" : "(grupo)",
"(Circle)" : "(Círculo)",
@@ -155,7 +154,6 @@ OC.L10N.register(
"Can share" : "Pode compartir",
"Can manage" : "Pode xestionar",
"Delete" : "Eliminar",
"Failed to create share with {displayName}" : "Produciuse un fallo ao crear o uso compartido con {displayName}",
"Add a new list" : "Engadir unha lista nova",
"Archive all cards" : "Arquivar todas as tarxetas",
"Delete list" : "Eliminar lista",
@@ -163,7 +161,6 @@ OC.L10N.register(
"Archive all cards in this list" : "Arquivar todas as tarxetas desta lista",
"Add a new card" : "Engadir unha nova tarxeta",
"Card name" : "Nome da tarxeta",
"List deleted" : "Lista eliminada",
"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",
@@ -175,12 +172,6 @@ OC.L10N.register(
"Restore Attachment" : "Restaurar o anexo",
"Open in sidebar view" : "Abrir na vista da barra lateral",
"Open in bigger view" : "Abrir nunha vista máis grande",
"Attachments" : "Anexos",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"The title cannot be empty." : "O título non pode estar baleiro.",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -188,13 +179,6 @@ OC.L10N.register(
"Due date" : "Data de caducidade",
"Set a due date" : "Estabelecer a data de caducidade",
"Remove due date" : "Retirar a data de caducidade",
"Select Date" : "Seleccione a data",
"Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro",
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
"In reply to" : "En resposta a",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descrición",
"(Unsaved)" : "(Sen gardar)",
"(Saving…)" : "(Gardando…)",
@@ -202,43 +186,44 @@ 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…",
"Attachments" : "Anexos",
"Comments" : "Comentarios",
"Choose attachment" : "Escoller o anexo",
"Select Date" : "Seleccione a data",
"Modified" : "Modificado",
"Created" : "Creado",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro",
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
"In reply to" : "En resposta a",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(círculo)",
"Assign to me" : "Asignarme",
"Unassign myself" : "Desasignarme",
"Move card" : "Mover a tarxeta",
"Unarchive card" : "Desarquivar a tarxeta",
"Archive card" : "Arquivar a tarxeta",
"Delete card" : "Eliminar tarxeta",
"Move card" : "Mover a 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",
"seconds ago" : "segundos atrás",
"All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
"Shared with you" : "Compartido con vostede",
"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",
"New board title" : "Novo título 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",
"Clone board " : "Clonar taboleiro",
"Unarchive board " : "Desarquivar taboleiro",
"Archive board " : "Arquivar taboleiro",
"Delete board " : "Eliminar taboleiro",
"Board details" : "Detalles do 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?",
@@ -247,8 +232,8 @@ OC.L10N.register(
"Tomorrow" : "Mañá",
"This week" : "Esta semana",
"No due" : "Sen caducidade",
"No upcoming cards" : "Non hai tarxetas próximas",
"upcoming cards" : "tarxetas próximas",
"No upcoming cards" : "Non hai tarxetas próximas",
"Link to a board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta",
"Something went wrong" : "Algo foi mal",

View File

@@ -98,7 +98,8 @@
"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",
"Add board" : "Engadir taboleiro",
"Create new board" : "Crear un novo taboleiro",
"new board" : "novo taboleiro",
"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",
@@ -115,7 +116,7 @@
"This board is read only" : "Este taboleiro é só de lectura",
"Drop your files to upload" : "Arrastre os seus ficheiros para envialos",
"Archived cards" : "Tarxetas arquivadas",
"Add list" : "Engadir unha lista",
"Add new list" : "Engadir unha lista nova",
"List name" : "Nome da lista",
"Apply filter" : "Aplicar filtro",
"Filter by tag" : "Filtrar pola etiqueta",
@@ -144,8 +145,6 @@
"Undo" : "Desfacer",
"Deleted cards" : "Eliminar tarxetas",
"Share board with a user, group or circle …" : "Compartir taboleiro cun usuario, grupo ou círculo…",
"Searching for users, groups and circles …" : "Buscando por usuarios, grupos e círculos…",
"No participants found" : "Non se atoparon participantes",
"Board owner" : "Propietariio do taboleiro",
"(Group)" : "(grupo)",
"(Circle)" : "(Círculo)",
@@ -153,7 +152,6 @@
"Can share" : "Pode compartir",
"Can manage" : "Pode xestionar",
"Delete" : "Eliminar",
"Failed to create share with {displayName}" : "Produciuse un fallo ao crear o uso compartido con {displayName}",
"Add a new list" : "Engadir unha lista nova",
"Archive all cards" : "Arquivar todas as tarxetas",
"Delete list" : "Eliminar lista",
@@ -161,7 +159,6 @@
"Archive all cards in this list" : "Arquivar todas as tarxetas desta lista",
"Add a new card" : "Engadir unha nova tarxeta",
"Card name" : "Nome da tarxeta",
"List deleted" : "Lista eliminada",
"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",
@@ -173,12 +170,6 @@
"Restore Attachment" : "Restaurar o anexo",
"Open in sidebar view" : "Abrir na vista da barra lateral",
"Open in bigger view" : "Abrir nunha vista máis grande",
"Attachments" : "Anexos",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"The title cannot be empty." : "O título non pode estar baleiro.",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -186,13 +177,6 @@
"Due date" : "Data de caducidade",
"Set a due date" : "Estabelecer a data de caducidade",
"Remove due date" : "Retirar a data de caducidade",
"Select Date" : "Seleccione a data",
"Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro",
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
"In reply to" : "En resposta a",
"Reply" : "Responder",
"Update" : "Actualizar",
"Description" : "Descrición",
"(Unsaved)" : "(Sen gardar)",
"(Saving…)" : "(Gardando…)",
@@ -200,43 +184,44 @@
"Edit description" : "Editar a descrición",
"View description" : "Ver a descrición",
"Add Attachment" : "Engadir o anexo",
"Write a description …" : "Escriba unha descrición…",
"Attachments" : "Anexos",
"Comments" : "Comentarios",
"Choose attachment" : "Escoller o anexo",
"Select Date" : "Seleccione a data",
"Modified" : "Modificado",
"Created" : "Creado",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro",
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
"In reply to" : "En resposta a",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(círculo)",
"Assign to me" : "Asignarme",
"Unassign myself" : "Desasignarme",
"Move card" : "Mover a tarxeta",
"Unarchive card" : "Desarquivar a tarxeta",
"Archive card" : "Arquivar a tarxeta",
"Delete card" : "Eliminar tarxeta",
"Move card" : "Mover a 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",
"seconds ago" : "segundos atrás",
"All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
"Shared with you" : "Compartido con vostede",
"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",
"New board title" : "Novo título 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",
"Clone board " : "Clonar taboleiro",
"Unarchive board " : "Desarquivar taboleiro",
"Archive board " : "Arquivar taboleiro",
"Delete board " : "Eliminar taboleiro",
"Board details" : "Detalles do 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?",
@@ -245,8 +230,8 @@
"Tomorrow" : "Mañá",
"This week" : "Esta semana",
"No due" : "Sen caducidade",
"No upcoming cards" : "Non hai tarxetas próximas",
"upcoming cards" : "tarxetas próximas",
"No upcoming cards" : "Non hai tarxetas próximas",
"Link to a board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta",
"Something went wrong" : "Algo foi mal",

View File

@@ -56,7 +56,8 @@ OC.L10N.register(
"No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s",
"Personal planning and team project organization" : "ארגון אישי וקבוצתי של מיזמים",
"Card details" : "פרטי הכרטיס",
"Add board" : "הוספת לוח",
"Create new board" : "יצירת לוח חדש",
"new board" : "לוח חדש",
"Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם",
"Search by board title" : "חיפוש לפי כותרת לו",
"Select board" : "בחירת לוח",
@@ -73,7 +74,7 @@ OC.L10N.register(
"This board is read only" : "הלוח הזה הוא לקריאה בלבד",
"Drop your files to upload" : "יש לגרור לכאן קבצים כדי להעלות",
"Archived cards" : "כרטיסים בארכיון",
"Add list" : "הוספת רשימה",
"Add new list" : "הוספת רשימה חדשה",
"List name" : "שם הרשימה",
"Apply filter" : "החלת מסנן",
"Filter by tag" : "סינון לפי תגית",
@@ -118,11 +119,6 @@ OC.L10N.register(
"Add this attachment" : "הוספת קובץ מצורף זה",
"Delete Attachment" : "מחיקת קובץ מצורף",
"Restore Attachment" : "שחזור קובץ מצורף",
"Attachments" : "קבצים מצורפים",
"Comments" : "תגובות",
"Modified" : "מועד שינוי",
"Created" : "מועד היצירה",
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
"Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…",
"Assign to users" : "הקצאה למשתמשים",
"Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים",
@@ -130,13 +126,6 @@ OC.L10N.register(
"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…)" : "(מתבצעת שמירה…)",
@@ -144,14 +133,26 @@ OC.L10N.register(
"Edit description" : "עריכת תיאור",
"View description" : "הצגת תיאור",
"Add Attachment" : "הוספת קובץ מצורף",
"Attachments" : "קבצים מצורפים",
"Comments" : "תגובות",
"Choose attachment" : "בחירת קובץ מצורף",
"Select Date" : "בחירת תאריך",
"Modified" : "מועד שינוי",
"Created" : "מועד היצירה",
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
"Save" : "שמור",
"The comment cannot be empty." : "ההערה לא יכולה להיות ריקה.",
"The comment cannot be longer than 1000 characters." : "אורך ההערה לא יכול לחצות את רף 1000 התווים.",
"In reply to" : "בתגובה אל",
"Reply" : "תגובה",
"Update" : "עדכון",
"(group)" : "(קבוצה)",
"(circle)" : "(מעגל)",
"Assign to me" : "הקצאה אלי",
"Move card" : "העברת כרטיס",
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
"Archive card" : "העברת כרטיס לארכיון",
"Delete card" : "מחיקת כרטיס לארכיון",
"Move card" : "העברת כרטיס",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"seconds ago" : "לפני מספר שניות",
"All boards" : "כל הלוחות",
@@ -159,8 +160,13 @@ OC.L10N.register(
"Shared with you" : "משותף אתך",
"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" : "פרטי לוח",
"New board title" : "כותרת לוח חדשה",
"Edit board" : "עריכת לוח",
"Clone board " : "שכפול לוח",
"Unarchive board " : "הוצאת הלוח מהארכיון",
"Archive board " : "העברת הלוח לארכיון",
"Delete board " : "מחיקת לוח",
"Board details" : "פרטי לוח",
"Board {0} deleted" : "הלוח {0} נמחק",
"An error occurred" : "אירעה שגיאה",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",

View File

@@ -54,7 +54,8 @@
"No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s",
"Personal planning and team project organization" : "ארגון אישי וקבוצתי של מיזמים",
"Card details" : "פרטי הכרטיס",
"Add board" : "הוספת לוח",
"Create new board" : "יצירת לוח חדש",
"new board" : "לוח חדש",
"Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם",
"Search by board title" : "חיפוש לפי כותרת לו",
"Select board" : "בחירת לוח",
@@ -71,7 +72,7 @@
"This board is read only" : "הלוח הזה הוא לקריאה בלבד",
"Drop your files to upload" : "יש לגרור לכאן קבצים כדי להעלות",
"Archived cards" : "כרטיסים בארכיון",
"Add list" : "הוספת רשימה",
"Add new list" : "הוספת רשימה חדשה",
"List name" : "שם הרשימה",
"Apply filter" : "החלת מסנן",
"Filter by tag" : "סינון לפי תגית",
@@ -116,11 +117,6 @@
"Add this attachment" : "הוספת קובץ מצורף זה",
"Delete Attachment" : "מחיקת קובץ מצורף",
"Restore Attachment" : "שחזור קובץ מצורף",
"Attachments" : "קבצים מצורפים",
"Comments" : "תגובות",
"Modified" : "מועד שינוי",
"Created" : "מועד היצירה",
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
"Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…",
"Assign to users" : "הקצאה למשתמשים",
"Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים",
@@ -128,13 +124,6 @@
"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…)" : "(מתבצעת שמירה…)",
@@ -142,14 +131,26 @@
"Edit description" : "עריכת תיאור",
"View description" : "הצגת תיאור",
"Add Attachment" : "הוספת קובץ מצורף",
"Attachments" : "קבצים מצורפים",
"Comments" : "תגובות",
"Choose attachment" : "בחירת קובץ מצורף",
"Select Date" : "בחירת תאריך",
"Modified" : "מועד שינוי",
"Created" : "מועד היצירה",
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
"Save" : "שמור",
"The comment cannot be empty." : "ההערה לא יכולה להיות ריקה.",
"The comment cannot be longer than 1000 characters." : "אורך ההערה לא יכול לחצות את רף 1000 התווים.",
"In reply to" : "בתגובה אל",
"Reply" : "תגובה",
"Update" : "עדכון",
"(group)" : "(קבוצה)",
"(circle)" : "(מעגל)",
"Assign to me" : "הקצאה אלי",
"Move card" : "העברת כרטיס",
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
"Archive card" : "העברת כרטיס לארכיון",
"Delete card" : "מחיקת כרטיס לארכיון",
"Move card" : "העברת כרטיס",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"seconds ago" : "לפני מספר שניות",
"All boards" : "כל הלוחות",
@@ -157,8 +158,13 @@
"Shared with you" : "משותף אתך",
"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" : "פרטי לוח",
"New board title" : "כותרת לוח חדשה",
"Edit board" : "עריכת לוח",
"Clone board " : "שכפול לוח",
"Unarchive board " : "הוצאת הלוח מהארכיון",
"Archive board " : "העברת הלוח לארכיון",
"Delete board " : "מחיקת לוח",
"Board details" : "פרטי לוח",
"Board {0} deleted" : "הלוח {0} נמחק",
"An error occurred" : "אירעה שגיאה",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",

View File

@@ -99,7 +99,8 @@ OC.L10N.register(
"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",
"Add board" : "Dodaj ploču",
"Create new board" : "Stvori novu ploču",
"new board" : "nova ploča",
"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",
@@ -116,12 +117,11 @@ OC.L10N.register(
"This board is read only" : "Ova je ploča samo za čitanje",
"Drop your files to upload" : "Ispustite datoteke za otpremu",
"Archived cards" : "Arhivirane kartice",
"Add list" : "Dodaj popis",
"Add new list" : "Dodaj novi popis",
"List name" : "Naziv popisa",
"Apply filter" : "Primijeni filtar",
"Filter by tag" : "Filtriraj prema oznaci",
"Filter by assigned user" : "Filtriraj prema dodijeljenom korisniku",
"Unassigned" : "Nedodijeljeno",
"Filter by due date" : "Filtriraj prema datumu dospijeća",
"Overdue" : "Kasni",
"Next 24 hours" : "Sljedeća 24 sata",
@@ -134,8 +134,6 @@ OC.L10N.register(
"Toggle compact mode" : "Prebaci u kompaktni način rada",
"Details" : "Pojedinosti",
"Loading board" : "Učitavanje ploče",
"No lists available" : "Nema dostupnih popisa",
"Create a new list to add cards to this board" : "Stvorite novi popis kako biste dodali kartice na ovu ploču",
"Board not found" : "Ploča nije pronađena",
"Sharing" : "Dijeljenje",
"Tags" : "Oznake",
@@ -165,11 +163,6 @@ OC.L10N.register(
"Add this attachment" : "Dodajte ovaj privitak",
"Delete Attachment" : "Izbriši privitak",
"Restore Attachment" : "Vrati privitak",
"Attachments" : "Privici",
"Comments" : "Komentari",
"Modified" : "Promijenjeno",
"Created" : "Stvoreno",
"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",
"Assign to users/groups/circles" : "Dodijeli korisnicima/grupama/krugovima",
@@ -177,13 +170,6 @@ OC.L10N.register(
"Due date" : "Datum dospijeća",
"Set a due date" : "Postavi datum dospijeća",
"Remove due date" : "Ukloni datum dospijeća",
"Select Date" : "Odaberi datum",
"Save" : "Spremi",
"The comment cannot be empty." : "Komentar ne može biti prazan.",
"The comment cannot be longer than 1000 characters." : "Komentar ne može duži od 1000 znakova.",
"In reply to" : "Kao odgovor",
"Reply" : "Odgovori",
"Update" : "Ažuriraj",
"Description" : "Opis",
"(Unsaved)" : "(Nije spremljeno)",
"(Saving…)" : "(Spremanje…)",
@@ -191,15 +177,27 @@ OC.L10N.register(
"Edit description" : "Uredi opis",
"View description" : "Prikaži opis",
"Add Attachment" : "Dodaj privitak",
"Attachments" : "Privici",
"Comments" : "Komentari",
"Choose attachment" : "Odaberi privitak",
"Select Date" : "Odaberi datum",
"Modified" : "Promijenjeno",
"Created" : "Stvoreno",
"No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!",
"Save" : "Spremi",
"The comment cannot be empty." : "Komentar ne može biti prazan.",
"The comment cannot be longer than 1000 characters." : "Komentar ne može duži od 1000 znakova.",
"In reply to" : "Kao odgovor",
"Reply" : "Odgovori",
"Update" : "Ažuriraj",
"(group)" : "(grupa)",
"(circle)" : "(krug)",
"Assign to me" : "Dodijeli meni",
"Unassign myself" : "Ukloni sebe",
"Move card" : "Premjesti karticu",
"Unarchive card" : "Dearhiviraj karticu",
"Archive card" : "Arhiviraj karticu",
"Delete card" : "Izbriši karticu",
"Move card" : "Premjesti karticu",
"Move card to another board" : "Premjesti karticu na drugu ploču",
"Select a list" : "Odaberi popis",
"seconds ago" : "prije nekoliko sekundi",
@@ -208,8 +206,13 @@ OC.L10N.register(
"Shared with you" : "Podijeljeno s vama",
"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",
"New board title" : "Novi naslov ploče",
"Edit board" : "Uredi ploču",
"Clone board " : "Kloniraj ploču ",
"Unarchive board " : "Dearhiviraj ploču ",
"Archive board " : "Arhiviraj ploču ",
"Delete board " : "Izbriši ploču ",
"Board details" : "Pojedinosti o ploči",
"Board {0} deleted" : "Ploča {0} je izbrisana",
"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.",

View File

@@ -97,7 +97,8 @@
"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",
"Add board" : "Dodaj ploču",
"Create new board" : "Stvori novu ploču",
"new board" : "nova ploča",
"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",
@@ -114,12 +115,11 @@
"This board is read only" : "Ova je ploča samo za čitanje",
"Drop your files to upload" : "Ispustite datoteke za otpremu",
"Archived cards" : "Arhivirane kartice",
"Add list" : "Dodaj popis",
"Add new list" : "Dodaj novi popis",
"List name" : "Naziv popisa",
"Apply filter" : "Primijeni filtar",
"Filter by tag" : "Filtriraj prema oznaci",
"Filter by assigned user" : "Filtriraj prema dodijeljenom korisniku",
"Unassigned" : "Nedodijeljeno",
"Filter by due date" : "Filtriraj prema datumu dospijeća",
"Overdue" : "Kasni",
"Next 24 hours" : "Sljedeća 24 sata",
@@ -132,8 +132,6 @@
"Toggle compact mode" : "Prebaci u kompaktni način rada",
"Details" : "Pojedinosti",
"Loading board" : "Učitavanje ploče",
"No lists available" : "Nema dostupnih popisa",
"Create a new list to add cards to this board" : "Stvorite novi popis kako biste dodali kartice na ovu ploču",
"Board not found" : "Ploča nije pronađena",
"Sharing" : "Dijeljenje",
"Tags" : "Oznake",
@@ -163,11 +161,6 @@
"Add this attachment" : "Dodajte ovaj privitak",
"Delete Attachment" : "Izbriši privitak",
"Restore Attachment" : "Vrati privitak",
"Attachments" : "Privici",
"Comments" : "Komentari",
"Modified" : "Promijenjeno",
"Created" : "Stvoreno",
"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",
"Assign to users/groups/circles" : "Dodijeli korisnicima/grupama/krugovima",
@@ -175,13 +168,6 @@
"Due date" : "Datum dospijeća",
"Set a due date" : "Postavi datum dospijeća",
"Remove due date" : "Ukloni datum dospijeća",
"Select Date" : "Odaberi datum",
"Save" : "Spremi",
"The comment cannot be empty." : "Komentar ne može biti prazan.",
"The comment cannot be longer than 1000 characters." : "Komentar ne može duži od 1000 znakova.",
"In reply to" : "Kao odgovor",
"Reply" : "Odgovori",
"Update" : "Ažuriraj",
"Description" : "Opis",
"(Unsaved)" : "(Nije spremljeno)",
"(Saving…)" : "(Spremanje…)",
@@ -189,15 +175,27 @@
"Edit description" : "Uredi opis",
"View description" : "Prikaži opis",
"Add Attachment" : "Dodaj privitak",
"Attachments" : "Privici",
"Comments" : "Komentari",
"Choose attachment" : "Odaberi privitak",
"Select Date" : "Odaberi datum",
"Modified" : "Promijenjeno",
"Created" : "Stvoreno",
"No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!",
"Save" : "Spremi",
"The comment cannot be empty." : "Komentar ne može biti prazan.",
"The comment cannot be longer than 1000 characters." : "Komentar ne može duži od 1000 znakova.",
"In reply to" : "Kao odgovor",
"Reply" : "Odgovori",
"Update" : "Ažuriraj",
"(group)" : "(grupa)",
"(circle)" : "(krug)",
"Assign to me" : "Dodijeli meni",
"Unassign myself" : "Ukloni sebe",
"Move card" : "Premjesti karticu",
"Unarchive card" : "Dearhiviraj karticu",
"Archive card" : "Arhiviraj karticu",
"Delete card" : "Izbriši karticu",
"Move card" : "Premjesti karticu",
"Move card to another board" : "Premjesti karticu na drugu ploču",
"Select a list" : "Odaberi popis",
"seconds ago" : "prije nekoliko sekundi",
@@ -206,8 +204,13 @@
"Shared with you" : "Podijeljeno s vama",
"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",
"New board title" : "Novi naslov ploče",
"Edit board" : "Uredi ploču",
"Clone board " : "Kloniraj ploču ",
"Unarchive board " : "Dearhiviraj ploču ",
"Archive board " : "Arhiviraj ploču ",
"Delete board " : "Izbriši ploču ",
"Board details" : "Pojedinosti o ploči",
"Board {0} deleted" : "Ploča {0} je izbrisana",
"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.",

View File

@@ -75,7 +75,8 @@ OC.L10N.register(
"Personal planning and team project organization" : "Személyes tervezés és csapatos projektszervezés",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "A Kártyák egy kanban-stílusú szervezőeszköz, amely a személyes tervezést és a csapatok projektszervezését célozza, a Nextcloudba integrálva.\n\n\n- 📥 Saját feladatok kártyákhoz adása, és azok sorrendezése\n- 📄 További jegyzetek leírása markdownban\n- 🔖 Címkék hozzárendelése a még jobb rendszerezés miatt\n- 👥 Megosztás a csapattal, barátokkal vagy családdal\n- 📎 Fájlok hozzáadása mellékletként, vagy beágyazás a markdown leírásba\n- 💬 Megbeszélés a csapattal hozzászólások használatával\n- ⚡ A változások követése a tevékenységnaplóban\n- 🚀 Rendszerezze a projektjét",
"Card details" : "Kártya részletei",
"Add board" : "Tábla hozzáadása",
"Create new board" : "Új tábla létrehozása",
"new board" : "új tábla",
"Select the board to link to a project" : "Válasszon ki egy táblát, amely egy projektre fog hivatkozni",
"Search by board title" : "Keresés táblacím szerint",
"Select board" : "Válasszon táblát",
@@ -92,12 +93,11 @@ OC.L10N.register(
"This board is read only" : "Ez a tábla csak olvasható",
"Drop your files to upload" : "Dobja ide a fájljait a feltöltéshez",
"Archived cards" : "Archivált kártyák",
"Add list" : "Lista hozzáadása",
"Add new list" : "Új lista hozzáadása",
"List name" : "Listanév",
"Apply filter" : "Szűrő alkalmazása",
"Filter by tag" : "Szűrés címke szerint",
"Filter by assigned user" : "Szűrés hozzárendelt felhasználó szerint",
"Unassigned" : "Nem hozzárendelt",
"Filter by due date" : "Szűrés határidő szerint",
"Overdue" : "Lejárt",
"Next 24 hours" : "Következő 24 óra",
@@ -138,11 +138,6 @@ OC.L10N.register(
"Add this attachment" : "E melléklet hozzáadása",
"Delete Attachment" : "Melléklet törlése",
"Restore Attachment" : "Melléklet visszaállítása",
"Attachments" : "Mellékletek",
"Comments" : "Hozzászólások",
"Modified" : "Módosítva",
"Created" : "Létrehozva",
"No comments yet. Begin the discussion!" : "Még nincsenek hozzászólások. Kezdje el a beszélgetést!",
"Assign a tag to this card…" : "Címke rendelése ehhez a kártyához…",
"Assign to users" : "Felhasználókhoz rendelés",
"Assign to users/groups/circles" : "Felhasználókhoz/csoportokhoz/körökhöz rendelés",
@@ -150,13 +145,6 @@ OC.L10N.register(
"Due date" : "Határidő",
"Set a due date" : "Határidő beállítása",
"Remove due date" : "Határidő eltávolítása",
"Select Date" : "Dátum kiválasztása",
"Save" : "Mentés",
"The comment cannot be empty." : "A hozzászólás nem lehet üres.",
"The comment cannot be longer than 1000 characters." : "A megjegyzés nem lehet 1000 karakternél hosszabb.",
"In reply to" : "Válaszként erre:",
"Reply" : "Válasz",
"Update" : "Frissítés",
"Description" : "Leírás",
"(Unsaved)" : "(Nem mentett)",
"(Saving…)" : "(Mentés…)",
@@ -164,14 +152,26 @@ OC.L10N.register(
"Edit description" : "Leírás szerkesztése",
"View description" : "Leírás megtekintése",
"Add Attachment" : "Melléklet hozzáadása",
"Attachments" : "Mellékletek",
"Comments" : "Hozzászólások",
"Choose attachment" : "Válasszon mellékletet",
"Select Date" : "Dátum kiválasztása",
"Modified" : "Módosítva",
"Created" : "Létrehozva",
"No comments yet. Begin the discussion!" : "Még nincsenek hozzászólások. Kezdje el a beszélgetést!",
"Save" : "Mentés",
"The comment cannot be empty." : "A hozzászólás nem lehet üres.",
"The comment cannot be longer than 1000 characters." : "A megjegyzés nem lehet 1000 karakternél hosszabb.",
"In reply to" : "Válaszként erre:",
"Reply" : "Válasz",
"Update" : "Frissítés",
"(group)" : "(csoport)",
"(circle)" : "(kör)",
"Assign to me" : "Hozzám rendelés",
"Move card" : "Kártya áthelyezése",
"Unarchive card" : "Kártya archiválásának visszavonása",
"Archive card" : "Kártya archiválása",
"Delete card" : "Kártya törlése",
"Move card" : "Kártya áthelyezése",
"Move card to another board" : "Kártya áthelyezése egy másik táblára",
"seconds ago" : "másodperce",
"All boards" : "Az összes tábla",
@@ -179,8 +179,9 @@ OC.L10N.register(
"Shared with you" : "Megosztva Önnel",
"Limit deck usage of groups" : "A kártyák használatának csoportokra korlátozása",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "A Kártyák korlátozása blokkolja a saját táblák létrehozását azoknál a felhasználóknál, akik nem tagjai a megadott csoportoknak. A felhasználók továbbra is tudnak dolgozni a velük megosztott táblákon.",
"Board details" : "Tábla részletei",
"New board title" : "Új tábla címe",
"Edit board" : "Tábla szerkesztése",
"Board details" : "Tábla részletei",
"An error occurred" : "Hiba történt",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Biztos, hogy törli a(z) {title} táblát? Ez törölni fogja a tábla összes adatát.",
"Delete the board?" : "Törli a táblát?",

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