Compare commits

..

1 Commits

Author SHA1 Message Date
Luka Trovic
3b92f2760d fix: open card with direct link
Signed-off-by: Luka Trovic <luka@nextcloud.com>
2023-10-17 22:30:59 +02:00
290 changed files with 2303 additions and 7950 deletions

View File

@@ -46,6 +46,40 @@ updates:
- 3. to review
- dependencies
- package-ecosystem: npm
target-branch: stable25
versioning-strategy: lockfile-only
directory: "/"
schedule:
interval: weekly
day: saturday
time: "03:00"
timezone: Europe/Paris
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
open-pull-requests-limit: 30
labels:
- 3. to review
- dependencies
- package-ecosystem: npm
target-branch: stable24
versioning-strategy: lockfile-only
directory: "/"
schedule:
interval: weekly
day: saturday
time: "03:00"
timezone: Europe/Paris
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
open-pull-requests-limit: 30
labels:
- 3. to review
- dependencies
- package-ecosystem: composer
directory: "/"
schedule:

View File

@@ -18,13 +18,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Set up npm7
run: npm i -g npm@7
- name: Setup PHP
uses: shivammathur/setup-php@2.27.1
uses: shivammathur/setup-php@2.26.0
with:
php-version: '7.4'
tools: composer

View File

@@ -56,7 +56,7 @@ jobs:
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
# Skip if no package.json
if: ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v3
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}
@@ -66,7 +66,7 @@ jobs:
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
- name: Set up php ${{ env.PHP_VERSION }}
uses: shivammathur/setup-php@2.27.1 # v2
uses: shivammathur/setup-php@2.26.0 # v2
with:
php-version: ${{ env.PHP_VERSION }}
coverage: none

View File

@@ -23,7 +23,7 @@ jobs:
steps:
- name: Add reaction on start
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
uses: peter-evans/create-or-update-comment@c6c9a1a66007646a28c153e2a8580a5bad27bcfa # v3.0.2
with:
token: ${{ secrets.COMMAND_BOT_PAT }}
repository: ${{ github.event.repository.full_name }}
@@ -42,7 +42,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
- name: Add reaction on failure
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
uses: peter-evans/create-or-update-comment@c6c9a1a66007646a28c153e2a8580a5bad27bcfa # v3.0.2
if: failure()
with:
token: ${{ secrets.COMMAND_BOT_PAT }}

View File

@@ -23,11 +23,11 @@ jobs:
# containers: [1, 2, 3]
php-versions: [ '8.0' ]
databases: [ 'sqlite' ]
server-versions: [ 'stable28' ]
server-versions: [ 'master' ]
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
@@ -62,7 +62,7 @@ jobs:
path: apps/text
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@2.27.1
uses: shivammathur/setup-php@2.26.0
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, zip, gd, apcu

View File

@@ -28,7 +28,7 @@ jobs:
matrix:
php-versions: ['8.1']
databases: ['sqlite', 'mysql', 'pgsql']
server-versions: ['stable28']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
@@ -71,7 +71,7 @@ jobs:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@2.27.1
uses: shivammathur/setup-php@2.26.0
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, mysql, pdo_mysql, pgsql, pdo_pgsql, apcu
@@ -107,7 +107,7 @@ jobs:
- name: Query count
if: ${{ matrix.databases == 'mysql' }}
uses: actions/github-script@v7
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |

View File

@@ -48,7 +48,7 @@ jobs:
fallbackNpm: '^7'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v3
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}

View File

@@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v4 # v3.5.2
- name: Set up php
uses: shivammathur/setup-php@2.27.1 # v2
uses: shivammathur/setup-php@2.26.0 # v2
with:
php-version: 8.1
coverage: none

View File

@@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ "8.0", "8.1", "8.2", "8.3" ]
php-versions: [ "8.0", "8.1", "8.2" ]
name: php-lint
@@ -34,7 +34,7 @@ jobs:
uses: actions/checkout@v4 # v3.5.2
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@2.27.1 # v2
uses: shivammathur/setup-php@2.26.0 # v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none

View File

@@ -32,7 +32,7 @@ jobs:
fallbackNpm: '^7'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v3
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}

View File

@@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Set up npm7

View File

@@ -36,7 +36,7 @@ jobs:
fallbackNpm: '^7'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v3
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}

View File

@@ -26,9 +26,9 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['8.0', '8.1', '8.2', '8.3']
php-versions: ['8.0', '8.1', '8.2']
databases: ['sqlite', 'mysql', 'pgsql']
server-versions: ['stable28']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
@@ -70,7 +70,7 @@ jobs:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@2.27.1
uses: shivammathur/setup-php@2.26.0
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit

View File

@@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v4 # v3.5.2
- name: Set up php
uses: shivammathur/setup-php@2.27.1 # v2
uses: shivammathur/setup-php@2.26.0 # v2
with:
php-version: 8.1
coverage: none

View File

@@ -28,7 +28,7 @@ jobs:
submodules: true
- name: Set up php8.1
uses: shivammathur/setup-php@2.27.1 # v2
uses: shivammathur/setup-php@2.26.0 # v2
with:
php-version: 8.1
# https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation

View File

@@ -1,167 +1,6 @@
# Changelog
All notable changes to this project will be documented in this file.
## 1.12.0
### Added
- Added ability to mark a card as done @TehThanos [#4137](https://github.com/nextcloud/deck/pull/4137)
- Card Cover Images @jszeibert [#5035](https://github.com/nextcloud/deck/pull/5035)
- Upcoming/Today/Tomorrow dashboard widgets @BKapelari [#2658](https://github.com/nextcloud/deck/pull/2658)
- Enabled advanced fields option on tag color picker @faab007nl [#4362](https://github.com/nextcloud/deck/pull/4362)
- Remember last board, list for new card dialog @luka-nextcloud [#5046](https://github.com/nextcloud/deck/pull/5046)
- Add support for bidirectional text @jamazi [#5258](https://github.com/nextcloud/deck/pull/5258)
- Card layout polishing @juliushaertl [#5264](https://github.com/nextcloud/deck/pull/5264)
- feat: Move to contenteditable for inline title editing @juliushaertl [#5282](https://github.com/nextcloud/deck/pull/5282)
- scroll board by dragging @shoetten [#5293](https://github.com/nextcloud/deck/pull/5293)
- Keyboard shortcuts [#5358](https://github.com/nextcloud/deck/pull/5358)
### Fixed
- fix: allow null label colors in trello json importer [#5355](https://github.com/nextcloud/deck/pull/5355)
- fix: Get proper rich object for card actions [#5352](https://github.com/nextcloud/deck/pull/5352)
- fix: Use text content as result for comments @juliushaertl [#5294](https://github.com/nextcloud/deck/pull/5294)
- fix: Bring back due date indicator to compact mode @juliushaertl [#5292](https://github.com/nextcloud/deck/pull/5292)
- Fix small issues around delete/undo @juliushaertl [#5296](https://github.com/nextcloud/deck/pull/5296)
- fix(controls): use primary when filter is active @fitrahfm [#5299](https://github.com/nextcloud/deck/pull/5299)
- fix: Properly get done state for dav @juliushaertl [#5287](https://github.com/nextcloud/deck/pull/5287)
- Fix upcoming cards and label input @juliushaertl [#5290](https://github.com/nextcloud/deck/pull/5290)
- fix: Properly handle adding new tags through multiselect @juliushaertl [#5285](https://github.com/nextcloud/deck/pull/5285)
- fix: Avoid throwing errors if no token provided on close @juliushaertl [#5284](https://github.com/nextcloud/deck/pull/5284)
- fix: Expose card actions in the card menu (fix #3180) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Use full card menu everywhere (fix #3993) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Detect end of the activity responses (fix #3395) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Add title with absolute date time to activity (fix #4508, fix #2122) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Disable dragging archived cards (fix #3271) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Hide unavailable card menu entries for archived card view [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Use localCompare to sort labels (fix #2736) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: More fitting click target for title editing [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Always load proper dashboard js (fixes a log error) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Set fixed height for card modal (fix #4296) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Make sure to always update card description when navigating away (fix #5254 #2705) [#5280](https://github.com/nextcloud/deck/pull/5280)
- perf: Already pass board list as initial state @juliushaertl [#5281](https://github.com/nextcloud/deck/pull/5281)
- Deck card comment notification label improvement @Jerome-Herbinet [#4748](https://github.com/nextcloud/deck/pull/4748)
- update smart picker links @luka-nextcloud [#5047](https://github.com/nextcloud/deck/pull/5047)
- feat: Enhance dark mode @juliushaertl [#5045](https://github.com/nextcloud/deck/pull/5045)
- fix: export doesn't handle lists with no cards @magikmw [#5096](https://github.com/nextcloud/deck/pull/5096)
- add attributes aria-label= and title= to Filters & View Modes buttons @privatemaker [#5133](https://github.com/nextcloud/deck/pull/5133)
- fix: Check both card reference url patterns @juliushaertl [#5262](https://github.com/nextcloud/deck/pull/5262)
- fix: Avoid too large index on postgres as indexing just the last_editor column is enough @juliushaertl [#5260](https://github.com/nextcloud/deck/pull/5260)
- feat: error msg on CreateNewCardCustomPicker & only show available bo… @luka-nextcloud [#5029](https://github.com/nextcloud/deck/pull/5029)
- test: add cypress tests for create new deck card @luka-nextcloud [#5025](https://github.com/nextcloud/deck/pull/5025)
- Remove duplicate button @solracsf [#4850](https://github.com/nextcloud/deck/pull/4850)
- [stable27] fix cypress for new file picker [#5088](https://github.com/nextcloud/deck/pull/5088)
- Replace "Timeline" wording with "Activity" in order to be consistent with equivalent contexts throughout Nextcloud @Jerome-Herbinet [#5164](https://github.com/nextcloud/deck/pull/5164)
- Board creation limitation : More understandable wordings @Jerome-Herbinet [#5168](https://github.com/nextcloud/deck/pull/5168)
- ci(cypress): Fix file picker selector @juliushaertl [#5212](https://github.com/nextcloud/deck/pull/5212)
- Switch to native date picker @juliushaertl [#4668](https://github.com/nextcloud/deck/pull/4668)
- fixes minor spelling error @FundreasFrohsinn [#5216](https://github.com/nextcloud/deck/pull/5216)
- feat(card): tooltip for comment timestamp @fitrahfm [#5253](https://github.com/nextcloud/deck/pull/5253)
## 1.12.0-beta.5
### Added
- Keyboard shortcuts [#5358](https://github.com/nextcloud/deck/pull/5358)
### Fixed
- fix: allow null label colors in trello json importer [#5355](https://github.com/nextcloud/deck/pull/5355)
- fix: Get proper rich object for card actions [#5352](https://github.com/nextcloud/deck/pull/5352)
### Dependencies
- Update nextcloud/ocp dependency @nextcloud-command [#5343](https://github.com/nextcloud/deck/pull/5343)
- Chore(deps): Bump @babel/runtime from 7.23.4 to 7.23.5 @dependabot[bot] [#5338](https://github.com/nextcloud/deck/pull/5338)
## 1.12.0-beta.4
### Added
- scroll board by dragging @shoetten [#5293](https://github.com/nextcloud/deck/pull/5293)
### Fixed
- fix: Use text content as result for comments @juliushaertl [#5294](https://github.com/nextcloud/deck/pull/5294)
- fix: Bring back due date indicator to compact mode @juliushaertl [#5292](https://github.com/nextcloud/deck/pull/5292)
- Fix small issues around delete/undo @juliushaertl [#5296](https://github.com/nextcloud/deck/pull/5296)
- fix(controls): use primary when filter is active @fitrahfm [#5299](https://github.com/nextcloud/deck/pull/5299)
## 1.12.0-beta.3
### Added
- feat: Move to contenteditable for inline title editing @juliushaertl [#5282](https://github.com/nextcloud/deck/pull/5282)
### Fixed
- fix: Properly get done state for dav @juliushaertl [#5287](https://github.com/nextcloud/deck/pull/5287)
- Fix upcoming cards and label input @juliushaertl [#5290](https://github.com/nextcloud/deck/pull/5290)
## 1.12.0-beta.2
### Added
- Card layout polishing @juliushaertl [#5264](https://github.com/nextcloud/deck/pull/5264)
### Fixed
- fix: Properly handle adding new tags through multiselect @juliushaertl [#5285](https://github.com/nextcloud/deck/pull/5285)
- fix: Avoid throwing errors if no token provided on close @juliushaertl [#5284](https://github.com/nextcloud/deck/pull/5284)
- fix: Expose card actions in the card menu (fix #3180) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Use full card menu everywhere (fix #3993) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Detect end of the activity responses (fix #3395) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Add title with absolute date time to activity (fix #4508, fix #2122) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Disable dragging archived cards (fix #3271) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Hide unavailable card menu entries for archived card view [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Use localCompare to sort labels (fix #2736) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: More fitting click target for title editing [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Always load proper dashboard js (fixes a log error) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Set fixed height for card modal (fix #4296) [#5280](https://github.com/nextcloud/deck/pull/5280)
- fix: Make sure to always update card description when navigating away (fix #5254 #2705) [#5280](https://github.com/nextcloud/deck/pull/5280)
- perf: Already pass board list as initial state @juliushaertl [#5281](https://github.com/nextcloud/deck/pull/5281)
### Dependencies
- Fix npm audit @nextcloud-command [#5277](https://github.com/nextcloud/deck/pull/5277)
- Update nextcloud/ocp dependency @nextcloud-command [#5275](https://github.com/nextcloud/deck/pull/5275)
- Chore(deps): Bump @nextcloud/dialogs from 4.2.1 to 4.2.2 @dependabot[bot] [#5266](https://github.com/nextcloud/deck/pull/5266)
- Chore(deps-dev): Bump cypress from 13.4.0 to 13.5.0 @dependabot[bot] [#5267](https://github.com/nextcloud/deck/pull/5267)
- Chore(deps): Bump shivammathur/setup-php from 2.27.0 to 2.27.1 @dependabot[bot] [#5268](https://github.com/nextcloud/deck/pull/5268)
## 1.12.0-beta.1
### Added
- Added ability to mark a card as done @TehThanos [#4137](https://github.com/nextcloud/deck/pull/4137)
- Card Cover Images @jszeibert [#5035](https://github.com/nextcloud/deck/pull/5035)
- Upcoming/Today/Tomorrow dashboard widgets @BKapelari [#2658](https://github.com/nextcloud/deck/pull/2658)
- Enabled advanced fields option on tag color picker @faab007nl [#4362](https://github.com/nextcloud/deck/pull/4362)
- Remember last board, list for new card dialog @luka-nextcloud [#5046](https://github.com/nextcloud/deck/pull/5046)
- Add support for bidirectional text @jamazi [#5258](https://github.com/nextcloud/deck/pull/5258)
### Fixed
- Deck card comment notification label improvement @Jerome-Herbinet [#4748](https://github.com/nextcloud/deck/pull/4748)
- update smart picker links @luka-nextcloud [#5047](https://github.com/nextcloud/deck/pull/5047)
- feat: Enhance dark mode @juliushaertl [#5045](https://github.com/nextcloud/deck/pull/5045)
- fix: export doesn't handle lists with no cards @magikmw [#5096](https://github.com/nextcloud/deck/pull/5096)
- add attributes aria-label= and title= to Filters & View Modes buttons @privatemaker [#5133](https://github.com/nextcloud/deck/pull/5133)
- fix: Check both card reference url patterns @juliushaertl [#5262](https://github.com/nextcloud/deck/pull/5262)
- fix: Avoid too large index on postgres as indexing just the last_editor column is enough @juliushaertl [#5260](https://github.com/nextcloud/deck/pull/5260)
- feat: error msg on CreateNewCardCustomPicker & only show available bo… @luka-nextcloud [#5029](https://github.com/nextcloud/deck/pull/5029)
- test: add cypress tests for create new deck card @luka-nextcloud [#5025](https://github.com/nextcloud/deck/pull/5025)
- Remove duplicate button @solracsf [#4850](https://github.com/nextcloud/deck/pull/4850)
- [stable27] fix cypress for new file picker [#5088](https://github.com/nextcloud/deck/pull/5088)
- Replace "Timeline" wording with "Activity" in order to be consistent with equivalent contexts throughout Nextcloud @Jerome-Herbinet [#5164](https://github.com/nextcloud/deck/pull/5164)
- Board creation limitation : More understandable wordings @Jerome-Herbinet [#5168](https://github.com/nextcloud/deck/pull/5168)
- ci(cypress): Fix file picker selector @juliushaertl [#5212](https://github.com/nextcloud/deck/pull/5212)
- Switch to native date picker @juliushaertl [#4668](https://github.com/nextcloud/deck/pull/4668)
- fixes minor spelling error @FundreasFrohsinn [#5216](https://github.com/nextcloud/deck/pull/5216)
- feat(card): tooltip for comment timestamp @fitrahfm [#5253](https://github.com/nextcloud/deck/pull/5253)
## 1.10.0-beta.1
### Added
@@ -680,7 +519,7 @@ Android app team for helping to improve our REST API:
- Fix comment activities on Nextcloud 15
- Fix issues with Edge
- API: Fix numeric types that were returned as strings
- API: Fix If-Modified-Since header parsing
- API: Fix If-Modified-Since header parsing
## 0.5.1 - 2018-12-05
@@ -807,7 +646,7 @@ Android app team for helping to improve our REST API:
### Fixed
- Various frontend fixes
- Fix sidebar drag issues
- Improvements for IE11
- Improvements for IE11
- Fix bug when draging a card to an empty stack
## 0.2.1 - 2017-07-04
@@ -881,7 +720,7 @@ Android app team for helping to improve our REST API:
### Fixed
- Various styling improvements
- Fix problems with MySQL and PostgreSQL
- Fix problems with MySQL and PostgreSQL
- Select first color by default when creating boards
- Fix error when changing board permissions
@@ -889,9 +728,9 @@ Android app team for helping to improve our REST API:
### Added
- Sharing boards with other users
- Create and manage boards
- Create and manage boards
- Sort cards on stacks by drag-and-drop
- Assign labels
- Markdown notes for each card
- Archive cards
- Archive cards

View File

@@ -77,7 +77,7 @@ You can enable HMR (Hot module replacement) to avoid page reloads when working o
### Docker: Simple app development container
- Fork the app
- Fork the app
- Clone the repository: `git clone https://github.com/nextcloud/deck.git`
- Go into deck directory: `cd deck`
- Build the app as described in the general build instructions
@@ -93,7 +93,7 @@ docker run --rm \
### Full Nextcloud development environment
You need to setup a [development environment](https://docs.nextcloud.com/server/latest/developer_manual//getting_started/devenv.html) of the current Nextcloud version. You can also alternatively install & run the [nextcloud docker container](https://github.com/juliushaertl/nextcloud-docker-dev).
After the finished installation, you can clone the deck project directly in the `/[nextcloud-docker-dev-dir]/workspace/server/apps/` folder.
After the finished installation, you can clone the deck project directly in the `/[nextcloud-docker-dev-dir]/workspace/server/apps/` folder.
### Running tests
You can use the provided Makefile to run all tests by using:

View File

@@ -16,7 +16,7 @@
- 🚀 Get your project organized
</description>
<version>1.12.0</version>
<version>1.11.0-dev</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<documentation>

View File

@@ -25,11 +25,6 @@
return [
'routes' => [
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'],
['name' => 'page#indexList', 'url' => '/board', 'verb' => 'GET'],
['name' => 'page#indexBoard', 'url' => '/board/{boardId}', 'verb' => 'GET'],
['name' => 'page#indexBoardDetails', 'url' => '/board/{boardId}/details', 'verb' => 'GET'],
['name' => 'page#indexCard', 'url' => '/board/{boardId}/card/{cardId}', 'verb' => 'GET'],
['name' => 'page#redirectToCard', 'url' => '/card/{cardId}', 'verb' => 'GET'],
// boards
@@ -66,8 +61,6 @@ return [
['name' => 'card#reorder', 'url' => '/cards/{cardId}/reorder', 'verb' => 'PUT'],
['name' => 'card#archive', 'url' => '/cards/{cardId}/archive', 'verb' => 'PUT'],
['name' => 'card#unarchive', 'url' => '/cards/{cardId}/unarchive', 'verb' => 'PUT'],
['name' => 'card#done', 'url' => '/cards/{cardId}/done', 'verb' => 'PUT'],
['name' => 'card#undone', 'url' => '/cards/{cardId}/undone', 'verb' => 'PUT'],
['name' => 'card#assignLabel', 'url' => '/cards/{cardId}/label/{labelId}', 'verb' => 'POST'],
['name' => 'card#removeLabel', 'url' => '/cards/{cardId}/label/{labelId}', 'verb' => 'DELETE'],
['name' => 'card#assignUser', 'url' => '/cards/{cardId}/assign', 'verb' => 'POST'],

View File

@@ -15,7 +15,7 @@
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9",
"nextcloud/coding-standard": "^1.1",
"nextcloud/ocp": "dev-stable28",
"nextcloud/ocp": "dev-master",
"psalm/phar": "^5.13"
},
"config": {

19
composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "2ab83bbc55ad8f0f50c5de28c10764ba",
"content-hash": "91d1163b8b5b076f39a79a9c394d0217",
"packages": [
{
"name": "justinrainbow/json-schema",
@@ -250,29 +250,30 @@
},
{
"name": "nextcloud/ocp",
"version": "dev-stable28",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/nextcloud-deps/ocp.git",
"reference": "93f6f51ffbea79808c76a2752ee4a064f997b85f"
"reference": "b4fb0ff382b97f1129949a5063fdd077e5a72985"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/93f6f51ffbea79808c76a2752ee4a064f997b85f",
"reference": "93f6f51ffbea79808c76a2752ee4a064f997b85f",
"url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/b4fb0ff382b97f1129949a5063fdd077e5a72985",
"reference": "b4fb0ff382b97f1129949a5063fdd077e5a72985",
"shasum": ""
},
"require": {
"php": "~8.0 || ~8.1 || ~8.2 || ~8.3",
"php": "~8.0 || ~8.1 || ~8.2",
"psr/clock": "^1.0",
"psr/container": "^2.0.2",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.1.4"
},
"default-branch": true,
"type": "library",
"extra": {
"branch-alias": {
"dev-stable28": "28.0.0-dev"
"dev-master": "28.0.0-dev"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -288,9 +289,9 @@
"description": "Composer package containing Nextcloud's public API (classes, interfaces)",
"support": {
"issues": "https://github.com/nextcloud-deps/ocp/issues",
"source": "https://github.com/nextcloud-deps/ocp/tree/stable28"
"source": "https://github.com/nextcloud-deps/ocp/tree/master"
},
"time": "2023-12-01T00:37:03+00:00"
"time": "2023-10-11T00:31:22+00:00"
},
{
"name": "nikic/php-parser",

View File

@@ -1,6 +1,5 @@
import { randUser } from '../utils/index.js'
import { sampleBoard } from '../utils/sampleBoard'
import moment from '@nextcloud/moment'
const user = randUser()
const boardData = sampleBoard()
@@ -178,126 +177,6 @@ describe('Card', function() {
cy.get('#app-sidebar-vue')
.find('.ProseMirror h1').contains('Hello world writing more text').should('be.visible')
})
it('Set a due date', function() {
const newCardTitle = 'Card with a due date'
cy.get('.button-vue[aria-label*="Add card"]')
.first().click()
cy.get('.stack__card-add form input#new-stack-input-main')
.type(newCardTitle)
cy.get('.stack__card-add form input[type=submit]')
.first().click()
cy.get(`.card:contains("${newCardTitle}")`).should('be.visible')
cy.get('.card:contains("Card with a due date")').should('be.visible').click()
cy.get('#app-sidebar-vue [data-cy-due-date-actions]').should('be.visible').click()
// Set a due date through shortcut
cy.get('[data-cy-due-date-shortcut="tomorrow"] button').should('be.visible').click()
const tomorrow = moment().add(1, 'days').hour(8).minutes(0).seconds(0)
cy.get('#card-duedate-picker').should('have.value', tomorrow.format('YYYY-MM-DDTHH:mm'))
const now = moment().hour(11).minutes(0).seconds(0).toDate()
cy.clock(now)
cy.log(now)
cy.tick(60_000)
cy.get(`.card:contains("${newCardTitle}")`).find('[data-due-state="Now"]').should('be.visible').should('contain', '21 hours')
// Remove the due date again
cy.get('#app-sidebar-vue [data-cy-due-date-actions]').should('be.visible').click()
// tick needed to show the popover menu
cy.tick(1_000)
cy.get('[data-cy-due-date-remove] button').should('be.visible').click()
cy.get(`.card:contains("${newCardTitle}")`).find('[data-due-state]').should('not.exist')
})
it('Add a label', function() {
const newCardTitle = 'Card with labels'
cy.get('.button-vue[aria-label*="Add card"]')
.first().click()
cy.get('.stack__card-add form input#new-stack-input-main')
.type(newCardTitle)
cy.get('.stack__card-add form input[type=submit]')
.first().click()
cy.get(`.card:contains("${newCardTitle}")`).should('be.visible').click()
cy.get('#app-sidebar-vue [data-test="tag-selector"]').should('be.visible').click()
cy.get('.multiselect__option:contains("Action needed")').should('be.visible').click()
cy.get('[data-test="tag-selector"] .selector-wrapper--icon').click()
cy.get('.multiselect__option:contains("Action needed")').should('not.be.visible')
cy.get('[data-test="tag-selector"] .multiselect__tags .tag:contains("Action needed")')
.should('be.visible')
cy.get(`.card:contains("${newCardTitle}")`).find('.labels li:contains("Action needed")')
.should('be.visible')
cy.get('#app-sidebar-vue [data-test="tag-selector"]').should('be.visible').click()
cy.get('.multiselect__option:contains("Later")').should('be.visible').click()
cy.get('.multiselect__option:contains("Action needed")').should('be.visible').click()
cy.get(`.card:contains("${newCardTitle}")`).find('.labels li:contains("Later")')
.should('be.visible')
cy.get(`.card:contains("${newCardTitle}")`).find('.labels li:contains("Action needed")')
.should('not.exist')
})
})
describe('Card actions', () => {
beforeEach(function() {
cy.login(user)
useModal(false).then(() => {
cy.visit(`/apps/deck/#/board/${boardId}`)
})
})
it('Custom card actions', () => {
const myAction = {
label: 'Test action',
icon: 'icon-user',
callback(card) {
console.log('Called callback', card)
},
}
cy.spy(myAction, 'callback').as('myAction.callback')
cy.window().then(win => {
win.OCA.Deck.registerCardAction(myAction)
})
cy.get('.card:contains("Hello world")').should('be.visible').click()
cy.get('#app-sidebar-vue')
.find('.ProseMirror h1').contains('Hello world').should('be.visible')
cy.get('.app-sidebar-header .action-item__menutoggle').click()
cy.get('.v-popper__popper button:contains("Test action")').click()
cy.get('@myAction.callback')
.should('be.called')
.its('firstCall.args.0')
.as('args')
cy.url().then(url => {
const cardId = url.split('/').pop()
cy.get('@args').should('have.property', 'name', 'Hello world')
cy.get('@args').should('have.property', 'stackname', 'TestList')
cy.get('@args').should('have.property', 'boardname', 'MyTestBoard')
cy.get('@args').its('link').then((url) => {
expect(url.split('/').pop() === cardId).to.be.true
cy.visit(url)
cy.get('#app-sidebar-vue')
.find('.ProseMirror h1').contains('Hello world').should('be.visible')
})
})
})
})
})

View File

@@ -1,5 +1,4 @@
import { randUser } from '../utils/index.js'
import { sampleBoard } from '../utils/sampleBoard'
const user = randUser()
describe('Deck dashboard', function() {
@@ -9,18 +8,16 @@ describe('Deck dashboard', function() {
beforeEach(function() {
cy.login(user)
cy.visit('/apps/deck')
})
it('Can show the right title on the dashboard', function() {
cy.visit('/apps/deck')
cy.get('.board-title h2')
.should('have.length', 1).first()
.should($el => expect($el.text().trim()).to.equal('Upcoming cards'))
.should('have.text', 'Upcoming cards')
})
it('Can see the default "Personal Board" created for user by default', function() {
cy.visit('/apps/deck')
const defaultBoard = 'Personal'
cy.get('.app-navigation-entry-wrapper[icon=icon-deck]')
@@ -29,29 +26,4 @@ describe('Deck dashboard', function() {
.contains(defaultBoard)
.should('be.visible')
})
it('Shows a card with due date on the overview', function() {
cy.createExampleBoard({
user,
board: sampleBoard(),
}).then((board) => {
cy.visit(`/apps/deck/#/board/${board.id}`)
cy.intercept({ method: 'PUT', url: '**/apps/deck/cards/**' }).as('updateCard')
const newCardTitle = 'Hello world'
cy.get(`.card:contains("${newCardTitle}")`).should('be.visible').click()
cy.get('#app-sidebar-vue [data-cy-due-date-actions]').should('be.visible').click()
cy.get('[data-cy-due-date-shortcut="tomorrow"] button').should('be.visible').click()
cy.wait('@updateCard')
cy.get('button[title="Close sidebar"]').click()
cy.get('.app-navigation-entry:contains("Upcoming cards") a').click()
cy.get(`.card:contains("${newCardTitle}")`).should('be.visible')
cy.get('.dashboard-column:contains("Tomorrow")').should('be.visible')
cy.get('.dashboard-column:contains("Tomorrow") .card:contains("Hello world")').should('be.visible')
})
})
})

View File

@@ -80,7 +80,7 @@ An ETag header is returned in order to determine if further child elements have
- 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.
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.
@@ -117,7 +117,6 @@ This API version has become available with **Deck 1.3.0**.
- [GET /boards/import/getSystems - Import a board](#get-boardsimportgetsystems-import-a-board)
- [GET /boards/import/config/system/{schema} - Import a board](#get-boardsimportconfigsystemschema-import-a-board)
- [POST /boards/import - Import a board](#post-boardsimport-import-a-board)
- The `done` property was added to cards
# Endpoints
@@ -588,7 +587,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
#### Response
```json
{
{
"title":"Test",
"description":null,
"stackId":6,
@@ -602,7 +601,6 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
"owner":"admin",
"order":999,
"archived":false,
"done":null,
"duedate": "2019-12-24T19:29:30+00:00",
"deletedAt":0,
"commentsUnread":0,
@@ -625,28 +623,22 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
#### Request data
| Parameter | Type | Description |
|-------------|-----------------|-----------------------------------------------------------------------------------------------------|
| title | String | The title of the card, maximum length is limited to 255 characters |
| description | String | The markdown description of the card |
| type | String | Type of the card (for later use) use 'plain' for now |
| owner | String | The user that owns the card |
| order | Integer | Order for sorting the stacks |
| duedate | timestamp | The ISO-8601 formatted duedate of the card or null |
| archived | bool | Whether the card is archived or not |
| done | timestamp\|null | The ISO-8601 formatted date when the card is marked as done (optional, null indicates undone state) |
| Parameter | Type | Description |
|-------------|-----------|------------------------------------------------------|
| title | String | The title of the card, maximum length is limited to 255 characters |
| 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 |
```
{
{
"title": "Test card",
"description": "A card description",
"type": "plain",
"owner": "admin",
"order": 999,
"duedate": "2019-12-24T19:29:30+00:00",
"archived": false,
"done": null,
}
```
@@ -985,7 +977,7 @@ For now only `deck_file` is supported as an attachment type.
### DELETE /boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId} - Delete an attachment
#### Request parameters
| Parameter | Type | Description |
@@ -1059,12 +1051,12 @@ Make a request to see the json schema of system
# OCS API
The following endpoints are available through the Nextcloud OCS endpoint, which is available at `/ocs/v2.php/apps/deck/api/v1.0/`.
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.
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
@@ -1072,10 +1064,10 @@ Deck stores user and app configuration values globally and per board. The GET en
| Config key | Description |
| --- | --- |
| calendar | Determines if the calendar/tasks integration through the CalDAV backend is enabled for the user (boolean) |
| cardDetailsInModal | Determines if the bigger view is used (boolean) |
| cardIdBadge | Determines if the ID badges are displayed on cards (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)|
| calendar | Determines if the calendar/tasks integration through the CalDAV backend is enabled for the user (boolean) |
| cardDetailsInModal | Determines if the bigger view is used (boolean) |
| cardIdBadge | Determines if the ID badges are displayed on cards (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)|
```
{
@@ -1120,7 +1112,7 @@ Deck stores user and app configuration values globally and per board. The GET en
| calendar | Boolean |
| cardDetailsInModal | Boolean |
| cardIdBadge | Boolean |
#### Example request
```
@@ -1194,7 +1186,7 @@ A list of comments will be provided under the `ocs.data` key. If no or no more c
}
```
In case a comment is marked as a reply to another comment object, the parent comment will be added as `replyTo` entry to the response. Only the next parent node is added, nested replies are not exposed directly.
In case a comment is marked as a reply to another comment object, the parent comment will be added as `replyTo` entry to the response. Only the next parent node is added, nested replies are not exposed directly.
```json
[

View File

@@ -12,12 +12,11 @@ Overall, Deck is easy to use. You can create boards, add users, share the Deck,
1. [Create my first board](#1-create-my-first-board)
2. [Create stacks and cards](#2-create-stacks-and-cards)
3. [Handle cards options](#3-handle-cards-options)
4. [Mark task as done](#4-mark-as-done)
5. [Archive old tasks](#5-archive-old-tasks)
6. [Manage your board](#6-manage-your-board)
7. [Import boards](#7-import-boards)
8. [Search](#8-search)
9. [New owner for the deck entities](#9-new-owner-for-the-deck-entities)
4. [Archive old tasks](#4-archive-old-tasks)
5. [Manage your board](#5-manage-your-board)
6. [Import boards](#6-import-boards)
7. [Search](#7-search)
8. [New owner for the deck entities](#8-new-owner-for-the-deck-entities)
### 1. Create my first board
In this example, we're going to create a board and share it with an other nextcloud user.
@@ -26,7 +25,7 @@ In this example, we're going to create a board and share it with an other nextcl
### 2. Create stacks and cards
Stacks are simply columns with list of cards. It can represent a category of tasks or any step in your projects for example.
Stacks are simply columns with list of cards. It can represent a category of tasks or an y step in your projects for example.
**Check this out :**
![Gif for creating columns](resources/gifs/EN_create_columns.gif)
@@ -54,18 +53,12 @@ And even :
![Gif for puting infos on tasks 2](resources/gifs/EN_put_infos_2.gif)
### 4. Mark as done
Once a task has been completed, you can mark it as done. This will prevent it from becoming overdue and hide it from the upcoming cards.
You can mark it as not done at any time.
### 4. Archive old tasks
Once finished or obsolete, a task could be archived. The tasks is not deleted, it's just archived, and you can retrieve it later
![Gif for marking a card as done](resources/gifs/EN_done.gif)
![Gif for puting infos on tasks 2](resources/gifs/EN_archive.gif)
### 5. Archive old tasks
Once obsolete, a task could be archived. The task is not deleted, it's just archived, and you can retrieve it later
![Gif for archiving a task](resources/gifs/EN_archive.gif)
### 6. Manage your board
### 5. Manage your board
You can manage the settings of your Deck once you are inside it, by clicking on the small wheel at the top right.
Once in this menu, you have access to several things:
@@ -79,7 +72,7 @@ The **sharing tab** allows you to add users or even groups to your boards.
**Deleted objects** allows you to return previously deleted stacks or cards.
The **Timeline** allows you to see everything that happened in your boards. Everything!
### 7. Import boards
### 6. Import boards
Importing can be done using the API or the `occ` `deck:import` command.
@@ -145,7 +138,7 @@ Example configuration file:
}
```
### 8. Search
### 7. Search
Deck provides a global search either through the unified search in the Nextcloud header or with the inline search next to the board controls.
This search allows advanced filtering of cards across all board of the logged in user.
@@ -168,7 +161,7 @@ Other text tokens will be used to perform a case-insensitive search on the card
In addition, quotes can be used to pass a query with spaces, e.g. `"Exact match with spaces"` or `title:"My card"`.
### 9. New owner for the deck entities
### 8. New owner for the deck entities
You can transfer ownership of boards, cards, etc to a new user, using `occ` command `deck:transfer-ownership`
```bash

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

View File

@@ -30,19 +30,14 @@ OC.L10N.register(
"Save" : "Stoor",
"Reply" : "Antwoord",
"Update" : "Werk by",
"Created:" : "Geskep:",
"Description" : "Beskrywing",
"Completed" : "Voltooid",
"Select Date" : "Kies Datum",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"seconds ago" : "sekondes gelede",
"Keyboard shortcuts" : "Sneltoetse",
"Keyboard shortcut" : "Snelsleutel",
"Search" : "Soek",
"Shared with you" : "Met u gedeel",
"No notifications" : "Geen kennisgewings",
"An error occurred" : "'n Fout het voorgekom",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"Close" : "Sluit",
"Share" : "Deel",
"Due date" : "Sperdatum"

View File

@@ -28,19 +28,14 @@
"Save" : "Stoor",
"Reply" : "Antwoord",
"Update" : "Werk by",
"Created:" : "Geskep:",
"Description" : "Beskrywing",
"Completed" : "Voltooid",
"Select Date" : "Kies Datum",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"seconds ago" : "sekondes gelede",
"Keyboard shortcuts" : "Sneltoetse",
"Keyboard shortcut" : "Snelsleutel",
"Search" : "Soek",
"Shared with you" : "Met u gedeel",
"No notifications" : "Geen kennisgewings",
"An error occurred" : "'n Fout het voorgekom",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"Close" : "Sluit",
"Share" : "Deel",
"Due date" : "Sperdatum"

View File

@@ -17,7 +17,6 @@ OC.L10N.register(
"Delete" : "Borrar",
"Download" : "Escargar",
"Modified" : "Modificau",
"Search" : "Buscar",
"Today" : "Hue",
"Close" : "Zarrar",
"Share" : "Compartir"

View File

@@ -15,7 +15,6 @@
"Delete" : "Borrar",
"Download" : "Escargar",
"Modified" : "Modificau",
"Search" : "Buscar",
"Today" : "Hue",
"Close" : "Zarrar",
"Share" : "Compartir"

View File

@@ -37,10 +37,6 @@ OC.L10N.register(
"{user} has archived card {card} in list {stack} on board {board}" : "{user} قام بأرشفة بطاقة {card} في القائمة {stack} على اللوح {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "لديك بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} لديه بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "لقد قُمت بتمييز البطاقة {card} باعتبارها \"منتهية\" في القائمة {stack} على اللوح {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "قام المستخدِم {user} بتمييز البطاقة {card} باعتبارها \"منتهية\" في القائمة {stack} على اللوح {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "لقد قُمت بتمييز البطاقة {card} باعتبارها \"غير منتهية\" في القائمة {stack} على اللوح {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "قام المستخدِم {user} بتمييز البطاقة {card} باعتبارها \"غير منتهية\" في القائمة {stack} على اللوح {board}",
"You have removed the due date of card {card}" : "قمت بإزالة التاريخ المحدد من البطاقة {card}",
"{user} has removed the due date of card {card}" : "{user} قام بإزالة التاريخ المحدد من البطاقة {card}",
"You have set the due date of card {card} to {after}" : "قمت بتعيين التاريخ المحدد للبطاقة {card} إلى {after}",
@@ -72,8 +68,6 @@ OC.L10N.register(
"A <strong>board, list or card</strong> was changed" : "تمّ تغيير <strong>لوح board أو قائمة list أو بطاقة card </strong>.",
"A <strong>comment</strong> was created on a card" : "<strong>تعليق</strong> تم إنشاؤه على بطاقة",
"A <strong>card description</strong> has been changed" : "تمّ تغيير <strong>وصف بطاقة</strong>.",
"Cards due today" : "البطاقات المستحقة اليوم",
"Cards due tomorrow" : "البطاقات المستحقة غداً",
"Upcoming cards" : "البطاقات القادمة",
"Load more" : "حمّل أكثر",
"Personal" : "شخصي",
@@ -87,12 +81,12 @@ OC.L10N.register(
"{user} has shared {deck-board} with you." : "{user} قام بمشاركة {deck-board} معك.",
"Deck board" : "لوح Deck",
"Owned by %1$s" : "يملكها %1$s",
"Deck boards, cards and comments" : "ألواح الرٌّقعة و البطاقات و الملاحظات",
"Deck boards, cards and comments" : "الرُّقع و البطاقات و الملاحظات",
"From %1$s, in %2$s/%3$s, owned by %4$s" : " من %1$s، في %2$s/%3$s، يملكها %4$s",
"Create a new deck card" : "إنشاء كَدْسَة بطاقات deck card جديدة",
"Card comments" : "تعليقات البطاقة ",
"%s on %s" : "%s على %s",
"Deck boards and cards" : "ألواح الرُّقعة و البطاقات",
"Deck boards and cards" : "الرُّقع و البطاقات",
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق",
"Finished" : "اكتمل",
"To review" : "لإعادة المراجعة",
@@ -152,20 +146,16 @@ OC.L10N.register(
"Next 30 days" : "ال 30 يوم القادمة",
"No due date" : "لا تاريخ إنجاز",
"Clear filter" : "ازل التصفية",
"View Modes" : "وضعيات العرض",
"Toggle View Modes" : "التبديل بين وضعيات العرض",
"Hide archived cards" : "إخفاء البطاقات المؤرشفة ",
"Show archived cards" : "اظهر البطاقات المؤرشفة",
"Toggle compact mode" : "تبديل النمط المضغوط",
"Hide card cover images" : "إخفِ صور غلاف البطاقات",
"Show card cover images" : "أظهِر صور غلاف البطاقات",
"Open details" : "افتح التفاصيل",
"Details" : "التفاصيل",
"Currently present people" : "أشخاص معروضون حاليّاً",
"Loading board" : "جارِ تحميل اللوح..",
"Board not found" : "اللوح غير موجود",
"No lists available" : "لا يوجد قائمة متاحه ",
"Create a new list to add cards to this board" : "إنشاء قائمة جديدة لإضافة البطاقات على هذا اللوح",
"Board not found" : "اللوح غير موجود",
"Sharing" : "المشاركة",
"Tags" : "الوسوم",
"Deleted items" : "العناصر الممسوحة",
@@ -185,11 +175,11 @@ OC.L10N.register(
"Owner" : "المالك",
"Delete" : "حذف ",
"Failed to create share with {displayName}" : "فشل في إنشاء المشاركة مع {displayName}",
"Are you sure you want to transfer the board {title} to {user}?" : "هل أنت متأكد أنك تريد نقل اللوح {title} إلى {user} ؟",
"Transfer the board." : "نقل اللوح.",
"Are you sure you want to transfer the board {title} to {user}?" : "هل أنت متأكد أنك تريد نقل الرُّقعة {title} إلى {user} ؟",
"Transfer the board." : "نقل الرُّقعة.",
"Transfer" : "نقل",
"The board has been transferred to {user}" : "تمّ نقل اللوح إلى {user}",
"Failed to transfer the board to {user}" : "تعذّر نقل اللوح إلى {user}",
"The board has been transferred to {user}" : "تمّ نقل الرُّقعة إلى {user}",
"Failed to transfer the board to {user}" : "إخفاق في نقل الرُّقعة إلى {user}",
"Edit list title" : "عدّل اسم القائمة",
"Archive all cards" : "أرشفة جميع البطاقات ",
"Unarchive all cards" : "تراجع عن أرشفة كل البطاقات",
@@ -233,7 +223,6 @@ OC.L10N.register(
"Cancel reply" : "إلغاء الرد",
"Reply" : "رد",
"Update" : "تحديث",
"Created:" : "تاريخ الإنشاء :",
"Description" : "الوصف",
"(Unsaved)" : "(غير محفوظ)",
"(Saving…)" : "(يُحفظ..)",
@@ -245,64 +234,29 @@ OC.L10N.register(
"Choose attachment" : "اختيار مرفق",
"Assign a due date to this card…" : "تعيين تاريخ استحقاق لهذه البطاقة...",
"Set a due date" : "تعيين تاريخ الانجاز",
"Add due date" : "أضِف تاريخ الاستحقاق",
"Choose a date" : "إختَر تاريخاً",
"Remove due date" : "ازالة تاريخ الانجاز",
"Completed" : "مُكتمل",
"Due at:" : "تاريخ الاستحقاق:",
"Not completed" : "غير مكتمل",
"Unarchive card" : "إلغاء أرشفة البطاقة ",
"Archive card" : "أرشفة البطاقة",
"Select Date" : "اختر التاريخ ",
"Set due date for later today" : "عيِّن آخِرَ هذا اليوم كموعدٍ لاستحقاق البطاقة",
"Set due date for tomorrow" : "عيِّن يوم الغد كموعدٍ لاستحقاق البطاقة",
"Set due date for this weekend" : "عيِّن نهاية هذا الأسبوع كموعدٍ لاستحقاق البطاقة",
"Set due date for next week" : "عيِّن الأسبوع المُقبل كموعدٍ لاستحقاق البطاقة",
"Today" : "اليوم",
"Tomorrow" : "غدا",
"Next week" : "الاسبوع القادم",
"Next month" : "الشهر القادم",
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
"Create a new tag:" : "إنشاء سِمَةٍ tag جديدة:",
"(group)" : "(مجموعة)",
"Next week {timeLocale}" : "الأسبوع القادم {timeLocale}",
"Todo items" : "قائمة المهام",
"{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة",
"Edit card title" : "تعديل اسم القائمة",
"Card details" : "تفاصيل البطاقة",
"Assign to me" : "ينسب لي",
"Unassign myself" : "إلغاء تعييني ",
"Mark as not done" : "تمييز كـ \"غير منتهٍ\"",
"Mark as done" : "تمييز كمُنجَز",
"Move card" : "حرك البطاقة",
"Card details" : "تفاصيل البطاقة",
"Unarchive card" : "إلغاء أرشفة البطاقة ",
"Archive card" : "أرشفة البطاقة",
"Delete card" : "حذف البطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"Select a list" : "اختر قائمة ",
"List is empty" : "القائمة فارغة",
"Card deleted" : "البطاقة حٌذفت ",
"seconds ago" : "ثوانٍ مضت",
"Keyboard shortcuts" : "إختصارات لوحة المفاتيح",
"Speed up using Deck with simple shortcuts." : "سرِّع التعامل مع الرقعة باستعمال الاختصارات البسيطة.",
"Board actions" : "إجراءات الرقعة",
"Keyboard shortcut" : "إختصار لوحة المفاتيح",
"Action" : "الإجراء",
"Shift" : "العالي shift",
"Scroll" : "تحريك",
"Scroll sideways" : "تحريك للجنب",
"Navigate between cards" : "التنقُّل بين البطاقات",
"Esc" : "خروج",
"Close card details" : "أغلِق تفاصيل البطاقة",
"Ctrl" : "تحكم Ctrl",
"Search" : "بحث",
"Show card filters" : "أظهِر فلاتر البطاقة",
"Clear card filters" : "إمحُ فلاتر البطاقة",
"Show help dialog" : "أظهِر نافذة حوار المساعدة",
"Card actions" : "إجراءات البطاقة",
"The following actions can be triggered on the currently highlighted card" : "الإجراءات التالية يمكن تنفيذها على البطاقات المُعلّمة حالياً",
"Enter" : "إدخال",
"Space" : "المدى",
"Open card details" : "إفتَح تفاصيل البطاقة",
"Edit the card title" : "عدِّل عنوان البطاقة",
"Assign yourself to the current card" : "أسنِد هذه البطاقة إلى نفسِك",
"Archive/unarchive the current card" : "أرشِف أو ألغِ ترشيف البطاقة الحالية",
"Mark card as completed/not completed" : "علِّم بطاقة كـ\"منجزة\" أو \"غير منجزة\"",
"Open card menu" : "إفتَح قائمة البطاقات",
"All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "تم مشاركتها معك",
@@ -310,8 +264,8 @@ OC.L10N.register(
"Use bigger card view" : "استخدام بطاقة عرض أكبر ",
"Show card ID badge" : "أعرض شارة رقم البطاقة",
"Show boards in calendar/tasks" : "إظهار اللوح في التقويم/المهام",
"Limit board creation to some groups" : "قَصْرُ حَقِّ إنشاء الألواح على بعض المجموعات ",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "المستخدِمون من خارج تلك المجموعات لن يمكنكم إنشاء ألواحهم الخاصة؛ لكن يمكنهم العمل على الألواح التي تتمّ مشاركتها معهم.",
"Limit board creation to some groups" : "قَصْرُ حَقِّ إنشاء الرقعة على بعض المجموعات ",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "المستخدِمون من خارج تلك المجموعات لن يمكنكم إنشاء رُقَعِهِم الخاصة؛ لكن يمكنهم العمل على الرُّقعِ التي تتمّ مشاركتها معهم.",
"Board details" : "تفاصيل لوح",
"Edit board" : "تعديل اللوح",
"Clone board" : "استنسخ اللوح",
@@ -332,13 +286,10 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "هل أنت متأكد من حذف الرقعة {title}؟ هذا سيؤدي إلى حذف كل بيانات هذه الرُّقعة بما في ذلك البطاقات المؤرشفة.",
"Delete the board?" : "مسح اللوح؟",
"Loading filtered view" : "جارِ تحميل التصفية ",
"Today" : "اليوم",
"Tomorrow" : "غدا",
"No due" : "غير محدد",
"Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح",
"No results found" : "لا يتم العثور على أي نتائج ",
"This weekend {timeLocale}" : "نهاية هذا الأسبوع {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "اسم اللوح {name} \n* آخر تعديل له في {lastMod}",
"Deck board {name}\n* Last modified on {lastMod}" : "اسم الرُّقعة {name} \n* آخر تعديل لها في {lastMod}",
"{stack} in {board}" : "{stack} في {board}",
"Click to expand description" : "إضعط للتوسّع في الوصف",
"* Created on {created}\n* Last modified on {lastMod}\n* {nbAttachments} attachments\n* {nbComments} comments" : "* أُنشأت في {created}\n* آخر تعديل لها في {lastMod}\n* {nbAttachments} مُرفقات\n* {nbComments} مُلاحظات",
@@ -352,13 +303,9 @@ OC.L10N.register(
"Open card" : "فتح البطاقة ",
"Close" : "إغلاق",
"No upcoming cards" : "لا يوجد بطاقات قادمة ",
"upcoming cards today" : "البطاقات القادمة اليومَ",
"upcoming cards tomorrow" : "البطاقات القادمة غداً",
"upcoming cards" : "البطاقات القادمة",
"New card" : "بطاقة جديدة",
"Due on {date}" : "مطلوب في {date}",
"Tomorrow {timeLocale}" : "غداً {timeLocale}",
"Later today {timeLocale}" : "في وقت لاحقٍ اليوم {timeLocale}",
"Link to a board" : "ربط بلوح",
"Link to a card" : "ربط ببطاقة",
"Create a card" : "أنشى بطاقة ",
@@ -372,12 +319,10 @@ OC.L10N.register(
"Share" : "مشاركة ",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>وصف البطاقة</strong>داخل تطبيق Deck قد تغيرت.",
"Timeline" : "الجدول الزمني",
"Add a new list" : "اضف قائمة جديدة",
"Assign to users" : "انسب الى المتسخدمين",
"Due date" : "تاريخ الانجاز",
"Next week" : "الاسبوع القادم",
"Next month" : "الشهر القادم",
"Limit deck usage of groups" : "تقييد استخدام Deck للمجموعات",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "سيؤدي تقييد Deck إلى منع المستخدمين الذين ليسوا جزءًا من تلك المجموعات من إنشاء لوحاتهم الخاصة. سيظل المستخدمون قادرين على العمل على اللوحات التي تمت مشاركتها معهم.",
"Assign yorself to the current card" : "أسنِد البطاقة الحالية إلى نفسك"
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "سيؤدي تقييد Deck إلى منع المستخدمين الذين ليسوا جزءًا من تلك المجموعات من إنشاء لوحاتهم الخاصة. سيظل المستخدمون قادرين على العمل على اللوحات التي تمت مشاركتها معهم."
},
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");

View File

@@ -35,10 +35,6 @@
"{user} has archived card {card} in list {stack} on board {board}" : "{user} قام بأرشفة بطاقة {card} في القائمة {stack} على اللوح {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "لديك بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} لديه بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "لقد قُمت بتمييز البطاقة {card} باعتبارها \"منتهية\" في القائمة {stack} على اللوح {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "قام المستخدِم {user} بتمييز البطاقة {card} باعتبارها \"منتهية\" في القائمة {stack} على اللوح {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "لقد قُمت بتمييز البطاقة {card} باعتبارها \"غير منتهية\" في القائمة {stack} على اللوح {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "قام المستخدِم {user} بتمييز البطاقة {card} باعتبارها \"غير منتهية\" في القائمة {stack} على اللوح {board}",
"You have removed the due date of card {card}" : "قمت بإزالة التاريخ المحدد من البطاقة {card}",
"{user} has removed the due date of card {card}" : "{user} قام بإزالة التاريخ المحدد من البطاقة {card}",
"You have set the due date of card {card} to {after}" : "قمت بتعيين التاريخ المحدد للبطاقة {card} إلى {after}",
@@ -70,8 +66,6 @@
"A <strong>board, list or card</strong> was changed" : "تمّ تغيير <strong>لوح board أو قائمة list أو بطاقة card </strong>.",
"A <strong>comment</strong> was created on a card" : "<strong>تعليق</strong> تم إنشاؤه على بطاقة",
"A <strong>card description</strong> has been changed" : "تمّ تغيير <strong>وصف بطاقة</strong>.",
"Cards due today" : "البطاقات المستحقة اليوم",
"Cards due tomorrow" : "البطاقات المستحقة غداً",
"Upcoming cards" : "البطاقات القادمة",
"Load more" : "حمّل أكثر",
"Personal" : "شخصي",
@@ -85,12 +79,12 @@
"{user} has shared {deck-board} with you." : "{user} قام بمشاركة {deck-board} معك.",
"Deck board" : "لوح Deck",
"Owned by %1$s" : "يملكها %1$s",
"Deck boards, cards and comments" : "ألواح الرٌّقعة و البطاقات و الملاحظات",
"Deck boards, cards and comments" : "الرُّقع و البطاقات و الملاحظات",
"From %1$s, in %2$s/%3$s, owned by %4$s" : " من %1$s، في %2$s/%3$s، يملكها %4$s",
"Create a new deck card" : "إنشاء كَدْسَة بطاقات deck card جديدة",
"Card comments" : "تعليقات البطاقة ",
"%s on %s" : "%s على %s",
"Deck boards and cards" : "ألواح الرُّقعة و البطاقات",
"Deck boards and cards" : "الرُّقع و البطاقات",
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق",
"Finished" : "اكتمل",
"To review" : "لإعادة المراجعة",
@@ -150,20 +144,16 @@
"Next 30 days" : "ال 30 يوم القادمة",
"No due date" : "لا تاريخ إنجاز",
"Clear filter" : "ازل التصفية",
"View Modes" : "وضعيات العرض",
"Toggle View Modes" : "التبديل بين وضعيات العرض",
"Hide archived cards" : "إخفاء البطاقات المؤرشفة ",
"Show archived cards" : "اظهر البطاقات المؤرشفة",
"Toggle compact mode" : "تبديل النمط المضغوط",
"Hide card cover images" : "إخفِ صور غلاف البطاقات",
"Show card cover images" : "أظهِر صور غلاف البطاقات",
"Open details" : "افتح التفاصيل",
"Details" : "التفاصيل",
"Currently present people" : "أشخاص معروضون حاليّاً",
"Loading board" : "جارِ تحميل اللوح..",
"Board not found" : "اللوح غير موجود",
"No lists available" : "لا يوجد قائمة متاحه ",
"Create a new list to add cards to this board" : "إنشاء قائمة جديدة لإضافة البطاقات على هذا اللوح",
"Board not found" : "اللوح غير موجود",
"Sharing" : "المشاركة",
"Tags" : "الوسوم",
"Deleted items" : "العناصر الممسوحة",
@@ -183,11 +173,11 @@
"Owner" : "المالك",
"Delete" : "حذف ",
"Failed to create share with {displayName}" : "فشل في إنشاء المشاركة مع {displayName}",
"Are you sure you want to transfer the board {title} to {user}?" : "هل أنت متأكد أنك تريد نقل اللوح {title} إلى {user} ؟",
"Transfer the board." : "نقل اللوح.",
"Are you sure you want to transfer the board {title} to {user}?" : "هل أنت متأكد أنك تريد نقل الرُّقعة {title} إلى {user} ؟",
"Transfer the board." : "نقل الرُّقعة.",
"Transfer" : "نقل",
"The board has been transferred to {user}" : "تمّ نقل اللوح إلى {user}",
"Failed to transfer the board to {user}" : "تعذّر نقل اللوح إلى {user}",
"The board has been transferred to {user}" : "تمّ نقل الرُّقعة إلى {user}",
"Failed to transfer the board to {user}" : "إخفاق في نقل الرُّقعة إلى {user}",
"Edit list title" : "عدّل اسم القائمة",
"Archive all cards" : "أرشفة جميع البطاقات ",
"Unarchive all cards" : "تراجع عن أرشفة كل البطاقات",
@@ -231,7 +221,6 @@
"Cancel reply" : "إلغاء الرد",
"Reply" : "رد",
"Update" : "تحديث",
"Created:" : "تاريخ الإنشاء :",
"Description" : "الوصف",
"(Unsaved)" : "(غير محفوظ)",
"(Saving…)" : "(يُحفظ..)",
@@ -243,64 +232,29 @@
"Choose attachment" : "اختيار مرفق",
"Assign a due date to this card…" : "تعيين تاريخ استحقاق لهذه البطاقة...",
"Set a due date" : "تعيين تاريخ الانجاز",
"Add due date" : "أضِف تاريخ الاستحقاق",
"Choose a date" : "إختَر تاريخاً",
"Remove due date" : "ازالة تاريخ الانجاز",
"Completed" : "مُكتمل",
"Due at:" : "تاريخ الاستحقاق:",
"Not completed" : "غير مكتمل",
"Unarchive card" : "إلغاء أرشفة البطاقة ",
"Archive card" : "أرشفة البطاقة",
"Select Date" : "اختر التاريخ ",
"Set due date for later today" : "عيِّن آخِرَ هذا اليوم كموعدٍ لاستحقاق البطاقة",
"Set due date for tomorrow" : "عيِّن يوم الغد كموعدٍ لاستحقاق البطاقة",
"Set due date for this weekend" : "عيِّن نهاية هذا الأسبوع كموعدٍ لاستحقاق البطاقة",
"Set due date for next week" : "عيِّن الأسبوع المُقبل كموعدٍ لاستحقاق البطاقة",
"Today" : "اليوم",
"Tomorrow" : "غدا",
"Next week" : "الاسبوع القادم",
"Next month" : "الشهر القادم",
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
"Create a new tag:" : "إنشاء سِمَةٍ tag جديدة:",
"(group)" : "(مجموعة)",
"Next week {timeLocale}" : "الأسبوع القادم {timeLocale}",
"Todo items" : "قائمة المهام",
"{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة",
"Edit card title" : "تعديل اسم القائمة",
"Card details" : "تفاصيل البطاقة",
"Assign to me" : "ينسب لي",
"Unassign myself" : "إلغاء تعييني ",
"Mark as not done" : "تمييز كـ \"غير منتهٍ\"",
"Mark as done" : "تمييز كمُنجَز",
"Move card" : "حرك البطاقة",
"Card details" : "تفاصيل البطاقة",
"Unarchive card" : "إلغاء أرشفة البطاقة ",
"Archive card" : "أرشفة البطاقة",
"Delete card" : "حذف البطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"Select a list" : "اختر قائمة ",
"List is empty" : "القائمة فارغة",
"Card deleted" : "البطاقة حٌذفت ",
"seconds ago" : "ثوانٍ مضت",
"Keyboard shortcuts" : "إختصارات لوحة المفاتيح",
"Speed up using Deck with simple shortcuts." : "سرِّع التعامل مع الرقعة باستعمال الاختصارات البسيطة.",
"Board actions" : "إجراءات الرقعة",
"Keyboard shortcut" : "إختصار لوحة المفاتيح",
"Action" : "الإجراء",
"Shift" : "العالي shift",
"Scroll" : "تحريك",
"Scroll sideways" : "تحريك للجنب",
"Navigate between cards" : "التنقُّل بين البطاقات",
"Esc" : "خروج",
"Close card details" : "أغلِق تفاصيل البطاقة",
"Ctrl" : "تحكم Ctrl",
"Search" : "بحث",
"Show card filters" : "أظهِر فلاتر البطاقة",
"Clear card filters" : "إمحُ فلاتر البطاقة",
"Show help dialog" : "أظهِر نافذة حوار المساعدة",
"Card actions" : "إجراءات البطاقة",
"The following actions can be triggered on the currently highlighted card" : "الإجراءات التالية يمكن تنفيذها على البطاقات المُعلّمة حالياً",
"Enter" : "إدخال",
"Space" : "المدى",
"Open card details" : "إفتَح تفاصيل البطاقة",
"Edit the card title" : "عدِّل عنوان البطاقة",
"Assign yourself to the current card" : "أسنِد هذه البطاقة إلى نفسِك",
"Archive/unarchive the current card" : "أرشِف أو ألغِ ترشيف البطاقة الحالية",
"Mark card as completed/not completed" : "علِّم بطاقة كـ\"منجزة\" أو \"غير منجزة\"",
"Open card menu" : "إفتَح قائمة البطاقات",
"All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "تم مشاركتها معك",
@@ -308,8 +262,8 @@
"Use bigger card view" : "استخدام بطاقة عرض أكبر ",
"Show card ID badge" : "أعرض شارة رقم البطاقة",
"Show boards in calendar/tasks" : "إظهار اللوح في التقويم/المهام",
"Limit board creation to some groups" : "قَصْرُ حَقِّ إنشاء الألواح على بعض المجموعات ",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "المستخدِمون من خارج تلك المجموعات لن يمكنكم إنشاء ألواحهم الخاصة؛ لكن يمكنهم العمل على الألواح التي تتمّ مشاركتها معهم.",
"Limit board creation to some groups" : "قَصْرُ حَقِّ إنشاء الرقعة على بعض المجموعات ",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "المستخدِمون من خارج تلك المجموعات لن يمكنكم إنشاء رُقَعِهِم الخاصة؛ لكن يمكنهم العمل على الرُّقعِ التي تتمّ مشاركتها معهم.",
"Board details" : "تفاصيل لوح",
"Edit board" : "تعديل اللوح",
"Clone board" : "استنسخ اللوح",
@@ -330,13 +284,10 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "هل أنت متأكد من حذف الرقعة {title}؟ هذا سيؤدي إلى حذف كل بيانات هذه الرُّقعة بما في ذلك البطاقات المؤرشفة.",
"Delete the board?" : "مسح اللوح؟",
"Loading filtered view" : "جارِ تحميل التصفية ",
"Today" : "اليوم",
"Tomorrow" : "غدا",
"No due" : "غير محدد",
"Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح",
"No results found" : "لا يتم العثور على أي نتائج ",
"This weekend {timeLocale}" : "نهاية هذا الأسبوع {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "اسم اللوح {name} \n* آخر تعديل له في {lastMod}",
"Deck board {name}\n* Last modified on {lastMod}" : "اسم الرُّقعة {name} \n* آخر تعديل لها في {lastMod}",
"{stack} in {board}" : "{stack} في {board}",
"Click to expand description" : "إضعط للتوسّع في الوصف",
"* Created on {created}\n* Last modified on {lastMod}\n* {nbAttachments} attachments\n* {nbComments} comments" : "* أُنشأت في {created}\n* آخر تعديل لها في {lastMod}\n* {nbAttachments} مُرفقات\n* {nbComments} مُلاحظات",
@@ -350,13 +301,9 @@
"Open card" : "فتح البطاقة ",
"Close" : "إغلاق",
"No upcoming cards" : "لا يوجد بطاقات قادمة ",
"upcoming cards today" : "البطاقات القادمة اليومَ",
"upcoming cards tomorrow" : "البطاقات القادمة غداً",
"upcoming cards" : "البطاقات القادمة",
"New card" : "بطاقة جديدة",
"Due on {date}" : "مطلوب في {date}",
"Tomorrow {timeLocale}" : "غداً {timeLocale}",
"Later today {timeLocale}" : "في وقت لاحقٍ اليوم {timeLocale}",
"Link to a board" : "ربط بلوح",
"Link to a card" : "ربط ببطاقة",
"Create a card" : "أنشى بطاقة ",
@@ -370,12 +317,10 @@
"Share" : "مشاركة ",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>وصف البطاقة</strong>داخل تطبيق Deck قد تغيرت.",
"Timeline" : "الجدول الزمني",
"Add a new list" : "اضف قائمة جديدة",
"Assign to users" : "انسب الى المتسخدمين",
"Due date" : "تاريخ الانجاز",
"Next week" : "الاسبوع القادم",
"Next month" : "الشهر القادم",
"Limit deck usage of groups" : "تقييد استخدام Deck للمجموعات",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "سيؤدي تقييد Deck إلى منع المستخدمين الذين ليسوا جزءًا من تلك المجموعات من إنشاء لوحاتهم الخاصة. سيظل المستخدمون قادرين على العمل على اللوحات التي تمت مشاركتها معهم.",
"Assign yorself to the current card" : "أسنِد البطاقة الحالية إلى نفسك"
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "سيؤدي تقييد Deck إلى منع المستخدمين الذين ليسوا جزءًا من تلك المجموعات من إنشاء لوحاتهم الخاصة. سيظل المستخدمون قادرين على العمل على اللوحات التي تمت مشاركتها معهم."
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
}

View File

@@ -6,27 +6,18 @@ OC.L10N.register(
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El ficheru xubíu supera la direutiva «upload_max_filesize» del ficheru php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El ficheru xubíu supera la direutiva «MAX_FILE_SIZE» que s'especificó nel formulariu HTML",
"No file was uploaded" : "Nun se xubió nengún ficheru",
"Cancel" : "Encaboxar",
"Details" : "Detalles",
"Sharing" : "Comparticiñon",
"Tags" : "Etiquetes",
"Activity" : "Actividá",
"Undo" : "Desfacer",
"Delete" : "Desaniciar",
"Edit" : "Editar",
"Members" : "Miembros",
"Download" : "Baxar",
"Save" : "Guardar",
"Created:" : "Creóse'l",
"Description" : "Descripción",
"(Saving…)" : "(Guardando…)",
"Completed" : "Completáu",
"Keyboard shortcuts" : "Atayos del tecláu",
"Action" : "Aición",
"Search" : "Guetar",
"All cards" : "Toles tarxetes",
"An error occurred" : "Prodúxose un error",
"Today" : "Güei",
"Tomorrow" : "Mañana"
"Tomorrow" : "Mañana",
"All cards" : "Toles tarxetes",
"An error occurred" : "Prodúxose un error"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -4,27 +4,18 @@
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El ficheru xubíu supera la direutiva «upload_max_filesize» del ficheru php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El ficheru xubíu supera la direutiva «MAX_FILE_SIZE» que s'especificó nel formulariu HTML",
"No file was uploaded" : "Nun se xubió nengún ficheru",
"Cancel" : "Encaboxar",
"Details" : "Detalles",
"Sharing" : "Comparticiñon",
"Tags" : "Etiquetes",
"Activity" : "Actividá",
"Undo" : "Desfacer",
"Delete" : "Desaniciar",
"Edit" : "Editar",
"Members" : "Miembros",
"Download" : "Baxar",
"Save" : "Guardar",
"Created:" : "Creóse'l",
"Description" : "Descripción",
"(Saving…)" : "(Guardando…)",
"Completed" : "Completáu",
"Keyboard shortcuts" : "Atayos del tecláu",
"Action" : "Aición",
"Search" : "Guetar",
"All cards" : "Toles tarxetes",
"An error occurred" : "Prodúxose un error",
"Today" : "Güei",
"Tomorrow" : "Mañana"
"Tomorrow" : "Mañana",
"All cards" : "Toles tarxetes",
"An error occurred" : "Prodúxose un error"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -21,15 +21,12 @@ OC.L10N.register(
"Save" : "Saxla",
"Reply" : "Cavab",
"Update" : "Yenilənmə",
"Created:" : "Yaradıldı:",
"Description" : "Açıqlanma",
"Completed" : "Bitmişdir",
"(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə",
"Search" : "Axtarış",
"Shared with you" : "Shared with you",
"Today" : "Bu gün",
"Tomorrow" : "Sabah",
"(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə",
"Shared with you" : "Shared with you",
"Close" : "Bağla",
"Share" : "Paylaş"
},

View File

@@ -19,15 +19,12 @@
"Save" : "Saxla",
"Reply" : "Cavab",
"Update" : "Yenilənmə",
"Created:" : "Yaradıldı:",
"Description" : "Açıqlanma",
"Completed" : "Bitmişdir",
"(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə",
"Search" : "Axtarış",
"Shared with you" : "Shared with you",
"Today" : "Bu gün",
"Tomorrow" : "Sabah",
"(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə",
"Shared with you" : "Shared with you",
"Close" : "Bağla",
"Share" : "Paylaş"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -150,9 +150,9 @@ OC.L10N.register(
"Details" : "Подробности",
"Currently present people" : "Хора присъстващи в момента",
"Loading board" : "Зареждане на табло",
"Board not found" : "Таблото не е намерено",
"No lists available" : "Няма налична списъци.",
"Create a new list to add cards to this board" : "Създайте нов списък, за да добавите карти към това табло",
"Board not found" : "Таблото не е намерено",
"Sharing" : "Споделяне",
"Tags" : "Етикети",
"Deleted items" : "Изтрити елементи",
@@ -220,7 +220,6 @@ OC.L10N.register(
"Cancel reply" : "Отказ на отговор",
"Reply" : "Отговори",
"Update" : "Обновяване",
"Created:" : "Създадено:",
"Description" : "Описание",
"(Unsaved)" : " (Незаписан)",
"(Saving…)" : "(Записване...)",
@@ -232,35 +231,28 @@ OC.L10N.register(
"Choose attachment" : "Избор на прикачен файл",
"Set a due date" : "Задаване на крайна дата",
"Remove due date" : "Премахни крайната дата",
"Completed" : "Завършен",
"Not completed" : "Незавършен",
"Unarchive card" : "Разархивиране на карта",
"Archive card" : "Архивиране на карта",
"Select Date" : "Изберете дата",
"Today" : "Днес",
"Tomorrow" : "Утре",
"Next week" : "Следваща седмица",
"Next month" : "Следващия месец",
"Assign a tag to this card…" : "Присвояване на етикет на тази карта ...",
"(group)" : "(група)",
"Todo items" : "Елементи на задача за изпълнение",
"{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени",
"Edit card title" : "Редактиране на заглавието на карта",
"Card details" : "Подробности за картата",
"Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен",
"Mark as done" : "Маркирай като готово",
"Move card" : "Преместване на карта",
"Card details" : "Подробности за картата",
"Unarchive card" : "Разархивиране на карта",
"Archive card" : "Архивиране на карта",
"Delete card" : "Изтриване на карта",
"Move card to another board" : "Преместване на картата на друго табло",
"Select a list" : "Избор на списък",
"List is empty" : "Списъкът е празен",
"Card deleted" : "Картата е изтрита",
"seconds ago" : "преди секунди",
"Keyboard shortcuts" : "Бързи клавиши",
"Keyboard shortcut" : "Клавишни комбинации",
"Action" : "Действие",
"Shift" : "Shift /бутон/",
"Ctrl" : "Ctrl /бутон/",
"Search" : "Търсене",
"Enter" : "Въвеждане",
"Space" : "Пространство",
"All boards" : "Всички табла",
"Archived boards" : "Архивирани табла",
"Shared with you" : "Споделени с вас",
@@ -288,8 +280,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло, включително архивираните карти.",
"Delete the board?" : "Изтриване на таблото?",
"Loading filtered view" : "Зареждане на филтриран изглед",
"Today" : "Днес",
"Tomorrow" : "Утре",
"No due" : "Не се дължи",
"Search for {searchQuery} in all boards" : "Търсене на {searchQuery} във всички табла",
"No results found" : "Няма намерени резултати",
@@ -323,10 +313,9 @@ OC.L10N.register(
"Share" : "Споделяне",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Описанието на картата</strong> в приложението Deck/набор/ е променено",
"Timeline" : "Времева линия",
"Add a new list" : "Добавяне на нов списък",
"Assign to users" : "Зачисляване към потребители",
"Due date" : "Крайна дата",
"Next week" : "Следваща седмица",
"Next month" : "Следващия месец",
"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/набор/ ще блокира потребителите, които не са част от тези групи, да създават свои собствени табла. Потребителите все още ще могат да работят на таблата, които са споделени с тях."
},

View File

@@ -148,9 +148,9 @@
"Details" : "Подробности",
"Currently present people" : "Хора присъстващи в момента",
"Loading board" : "Зареждане на табло",
"Board not found" : "Таблото не е намерено",
"No lists available" : "Няма налична списъци.",
"Create a new list to add cards to this board" : "Създайте нов списък, за да добавите карти към това табло",
"Board not found" : "Таблото не е намерено",
"Sharing" : "Споделяне",
"Tags" : "Етикети",
"Deleted items" : "Изтрити елементи",
@@ -218,7 +218,6 @@
"Cancel reply" : "Отказ на отговор",
"Reply" : "Отговори",
"Update" : "Обновяване",
"Created:" : "Създадено:",
"Description" : "Описание",
"(Unsaved)" : " (Незаписан)",
"(Saving…)" : "(Записване...)",
@@ -230,35 +229,28 @@
"Choose attachment" : "Избор на прикачен файл",
"Set a due date" : "Задаване на крайна дата",
"Remove due date" : "Премахни крайната дата",
"Completed" : "Завършен",
"Not completed" : "Незавършен",
"Unarchive card" : "Разархивиране на карта",
"Archive card" : "Архивиране на карта",
"Select Date" : "Изберете дата",
"Today" : "Днес",
"Tomorrow" : "Утре",
"Next week" : "Следваща седмица",
"Next month" : "Следващия месец",
"Assign a tag to this card…" : "Присвояване на етикет на тази карта ...",
"(group)" : "(група)",
"Todo items" : "Елементи на задача за изпълнение",
"{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени",
"Edit card title" : "Редактиране на заглавието на карта",
"Card details" : "Подробности за картата",
"Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен",
"Mark as done" : "Маркирай като готово",
"Move card" : "Преместване на карта",
"Card details" : "Подробности за картата",
"Unarchive card" : "Разархивиране на карта",
"Archive card" : "Архивиране на карта",
"Delete card" : "Изтриване на карта",
"Move card to another board" : "Преместване на картата на друго табло",
"Select a list" : "Избор на списък",
"List is empty" : "Списъкът е празен",
"Card deleted" : "Картата е изтрита",
"seconds ago" : "преди секунди",
"Keyboard shortcuts" : "Бързи клавиши",
"Keyboard shortcut" : "Клавишни комбинации",
"Action" : "Действие",
"Shift" : "Shift /бутон/",
"Ctrl" : "Ctrl /бутон/",
"Search" : "Търсене",
"Enter" : "Въвеждане",
"Space" : "Пространство",
"All boards" : "Всички табла",
"Archived boards" : "Архивирани табла",
"Shared with you" : "Споделени с вас",
@@ -286,8 +278,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло, включително архивираните карти.",
"Delete the board?" : "Изтриване на таблото?",
"Loading filtered view" : "Зареждане на филтриран изглед",
"Today" : "Днес",
"Tomorrow" : "Утре",
"No due" : "Не се дължи",
"Search for {searchQuery} in all boards" : "Търсене на {searchQuery} във всички табла",
"No results found" : "Няма намерени резултати",
@@ -321,10 +311,9 @@
"Share" : "Споделяне",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Описанието на картата</strong> в приложението Deck/набор/ е променено",
"Timeline" : "Времева линия",
"Add a new list" : "Добавяне на нов списък",
"Assign to users" : "Зачисляване към потребители",
"Due date" : "Крайна дата",
"Next week" : "Следваща седмица",
"Next month" : "Следващия месец",
"Limit deck usage of groups" : "Ограничава използването на набора от групи",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ограничаването на приложението Deck/набор/ ще блокира потребителите, които не са част от тези групи, да създават свои собствени табла. Потребителите все още ще могат да работят на таблата, които са споделени с тях."
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -21,16 +21,12 @@ OC.L10N.register(
"Save" : "সংরক্ষণ",
"Reply" : "জবাব",
"Update" : "পরিবর্ধন",
"Created:" : "তৈরীর নির্ঘন্টঃ",
"Description" : "বিবরণ",
"Completed" : "সুসম্পন্ন",
"(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে",
"Keyboard shortcuts" : "কী-বোর্ড শর্টকাট",
"Search" : "Search",
"Shared with you" : "Shared with you",
"Today" : "আজ",
"Tomorrow" : "আগামীকাল",
"(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে",
"Shared with you" : "Shared with you",
"Close" : "বন্ধ",
"Share" : "ভাগাভাগি কর"
},

View File

@@ -19,16 +19,12 @@
"Save" : "সংরক্ষণ",
"Reply" : "জবাব",
"Update" : "পরিবর্ধন",
"Created:" : "তৈরীর নির্ঘন্টঃ",
"Description" : "বিবরণ",
"Completed" : "সুসম্পন্ন",
"(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে",
"Keyboard shortcuts" : "কী-বোর্ড শর্টকাট",
"Search" : "Search",
"Shared with you" : "Shared with you",
"Today" : "আজ",
"Tomorrow" : "আগামীকাল",
"(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে",
"Shared with you" : "Shared with you",
"Close" : "বন্ধ",
"Share" : "ভাগাভাগি কর"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -28,19 +28,16 @@ OC.L10N.register(
"Save" : "Enrollañ",
"Reply" : "Respont",
"Update" : "Adnevesaat",
"Created:" : "Krouet :",
"Description" : "Diskrivadur",
"Completed" : "Achuet",
"(group)" : "(strollad)",
"seconds ago" : "eilenn zo",
"Search" : "Klask",
"Shared with you" : "Rannet ganeoc'h",
"No notifications" : "Kemenaden ebet",
"Today" : "Hiziv",
"Tomorrow" : "Warc'hoaz",
"Close" : "Seriñ",
"Share" : "Rannan",
"Next week" : "Sizhun a zeu",
"Next month" : "Miz a zeu"
"Next month" : "Miz a zeu",
"(group)" : "(strollad)",
"seconds ago" : "eilenn zo",
"Shared with you" : "Rannet ganeoc'h",
"No notifications" : "Kemenaden ebet",
"Close" : "Seriñ",
"Share" : "Rannan"
},
"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);");

View File

@@ -26,19 +26,16 @@
"Save" : "Enrollañ",
"Reply" : "Respont",
"Update" : "Adnevesaat",
"Created:" : "Krouet :",
"Description" : "Diskrivadur",
"Completed" : "Achuet",
"(group)" : "(strollad)",
"seconds ago" : "eilenn zo",
"Search" : "Klask",
"Shared with you" : "Rannet ganeoc'h",
"No notifications" : "Kemenaden ebet",
"Today" : "Hiziv",
"Tomorrow" : "Warc'hoaz",
"Close" : "Seriñ",
"Share" : "Rannan",
"Next week" : "Sizhun a zeu",
"Next month" : "Miz a zeu"
"Next month" : "Miz a zeu",
"(group)" : "(strollad)",
"seconds ago" : "eilenn zo",
"Shared with you" : "Rannet ganeoc'h",
"No notifications" : "Kemenaden ebet",
"Close" : "Seriñ",
"Share" : "Rannan"
},"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"
}

View File

@@ -21,12 +21,9 @@ OC.L10N.register(
"Save" : "Spremi",
"Update" : "Ažuriraj",
"Description" : "Opis",
"Completed" : "Zavrženo",
"Keyboard shortcuts" : "Tipkovni prečaci",
"Search" : "Search",
"Shared with you" : "Shared with you",
"Today" : "Danas",
"Tomorrow" : "Sutra",
"Shared with you" : "Shared with you",
"Close" : "Zatvori",
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena",
"Share" : "Podjeli"

View File

@@ -19,12 +19,9 @@
"Save" : "Spremi",
"Update" : "Ažuriraj",
"Description" : "Opis",
"Completed" : "Zavrženo",
"Keyboard shortcuts" : "Tipkovni prečaci",
"Search" : "Search",
"Shared with you" : "Shared with you",
"Today" : "Danas",
"Tomorrow" : "Sutra",
"Shared with you" : "Shared with you",
"Close" : "Zatvori",
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena",
"Share" : "Podjeli"

View File

@@ -151,9 +151,9 @@ OC.L10N.register(
"Details" : "Detalls",
"Currently present people" : "Persones presents actuals",
"Loading board" : "S'està carregant el tauler",
"Board not found" : "Tauler no trobat",
"No lists available" : "No hi ha cap llista disponible",
"Create a new list to add cards to this board" : "Crea una llista nova per afegir targetes a aquest tauler",
"Board not found" : "Tauler no trobat",
"Sharing" : "Compartició",
"Tags" : "Etiquetes",
"Deleted items" : "Elements suprimits",
@@ -221,7 +221,6 @@ OC.L10N.register(
"Cancel reply" : "Cancel·la la resposta",
"Reply" : "Respon",
"Update" : "Actualitza",
"Created:" : "Data de creació:",
"Description" : "Descripció",
"(Unsaved)" : "(No desat)",
"(Saving…)" : "(Desant…)",
@@ -234,35 +233,28 @@ OC.L10N.register(
"Assign a due date to this card…" : "Assigna una data de caducitat a aquesta targeta…",
"Set a due date" : "Definir una data de caducitat",
"Remove due date" : "Suprimeix la data de caducitat",
"Completed" : "S'ha completat",
"Not completed" : "No completat",
"Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta",
"Select Date" : "Selecciona la data",
"Today" : "Avui",
"Tomorrow" : "Demà",
"Next week" : "Setmana següent",
"Next month" : "Mes següent",
"Assign a tag to this card…" : "Assignació d'una etiqueta a aquesta targeta…",
"(group)" : "(grup)",
"Next week {timeLocale}" : "La setmana següent: {timeLocale}",
"Todo items" : "Tasques pendents",
"{count} comments, {unread} unread" : "{count} comentaris, {unread} no llegits",
"Edit card title" : "Edició del títol de la targeta",
"Card details" : "Detalls de la targeta",
"Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix",
"Mark as done" : "Marcat com a fet",
"Move card" : "Mou la targeta",
"Card details" : "Detalls de la targeta",
"Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta",
"Delete card" : "Suprimeix targeta",
"Move card to another board" : "Mou la targeta a un altre tauler",
"Select a list" : "Seleccioneu una llista",
"List is empty" : "La llista és buida",
"Card deleted" : "Targeta suprimida",
"seconds ago" : "fa uns segons",
"Keyboard shortcuts" : "Dreceres de teclat",
"Keyboard shortcut" : "Drecera de teclat",
"Action" : "Acció",
"Shift" : "Maj",
"Ctrl" : "Ctrl",
"Search" : "Cercar",
"Enter" : "Retorn",
"All boards" : "Tots els taulers",
"Archived boards" : "Taulers arxivats",
"Shared with you" : "Us han compartit",
@@ -290,12 +282,9 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Esteu segur que voleu suprimir el tauler {title}? Això suprimirà totes les dades d'aquest tauler, incloses les targetes arxivades.",
"Delete the board?" : "Voleu suprimir el tauler?",
"Loading filtered view" : "S'està carregant la visualització filtrada",
"Today" : "Avui",
"Tomorrow" : "Demà",
"No due" : "Sense venciment",
"Search for {searchQuery} in all boards" : "Busca {searchQuery} a tots els taulers",
"No results found" : "No s'han trobat resultats",
"This weekend {timeLocale}" : "Aquest cap de setmana: {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Tauler de piles {name}\n* Última modificació el dia {lastMod}",
"{stack} in {board}" : "{stack} a {board}",
"Click to expand description" : "Feu clic per ampliar la descripció",
@@ -313,8 +302,6 @@ OC.L10N.register(
"upcoming cards" : "pròximes targetes",
"New card" : "Nova targeta",
"Due on {date}" : "Venciment el dia {date}",
"Tomorrow {timeLocale}" : "Demà: {timeLocale}",
"Later today {timeLocale}" : "Avui més tard: {timeLocale}",
"Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta",
"Create a card" : "Crea una targeta",
@@ -328,10 +315,9 @@ OC.L10N.register(
"Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "S'ha canviat una <strong>descripció de targeta</strong> a l'aplicació Tauler",
"Timeline" : "Línia de temps",
"Add a new list" : "Afegeix una llista nova",
"Assign to users" : "Assignació als usuaris",
"Due date" : "Data de caducitat",
"Next week" : "Setmana següent",
"Next month" : "Mes següent",
"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."
},

View File

@@ -149,9 +149,9 @@
"Details" : "Detalls",
"Currently present people" : "Persones presents actuals",
"Loading board" : "S'està carregant el tauler",
"Board not found" : "Tauler no trobat",
"No lists available" : "No hi ha cap llista disponible",
"Create a new list to add cards to this board" : "Crea una llista nova per afegir targetes a aquest tauler",
"Board not found" : "Tauler no trobat",
"Sharing" : "Compartició",
"Tags" : "Etiquetes",
"Deleted items" : "Elements suprimits",
@@ -219,7 +219,6 @@
"Cancel reply" : "Cancel·la la resposta",
"Reply" : "Respon",
"Update" : "Actualitza",
"Created:" : "Data de creació:",
"Description" : "Descripció",
"(Unsaved)" : "(No desat)",
"(Saving…)" : "(Desant…)",
@@ -232,35 +231,28 @@
"Assign a due date to this card…" : "Assigna una data de caducitat a aquesta targeta…",
"Set a due date" : "Definir una data de caducitat",
"Remove due date" : "Suprimeix la data de caducitat",
"Completed" : "S'ha completat",
"Not completed" : "No completat",
"Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta",
"Select Date" : "Selecciona la data",
"Today" : "Avui",
"Tomorrow" : "Demà",
"Next week" : "Setmana següent",
"Next month" : "Mes següent",
"Assign a tag to this card…" : "Assignació d'una etiqueta a aquesta targeta…",
"(group)" : "(grup)",
"Next week {timeLocale}" : "La setmana següent: {timeLocale}",
"Todo items" : "Tasques pendents",
"{count} comments, {unread} unread" : "{count} comentaris, {unread} no llegits",
"Edit card title" : "Edició del títol de la targeta",
"Card details" : "Detalls de la targeta",
"Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix",
"Mark as done" : "Marcat com a fet",
"Move card" : "Mou la targeta",
"Card details" : "Detalls de la targeta",
"Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta",
"Delete card" : "Suprimeix targeta",
"Move card to another board" : "Mou la targeta a un altre tauler",
"Select a list" : "Seleccioneu una llista",
"List is empty" : "La llista és buida",
"Card deleted" : "Targeta suprimida",
"seconds ago" : "fa uns segons",
"Keyboard shortcuts" : "Dreceres de teclat",
"Keyboard shortcut" : "Drecera de teclat",
"Action" : "Acció",
"Shift" : "Maj",
"Ctrl" : "Ctrl",
"Search" : "Cercar",
"Enter" : "Retorn",
"All boards" : "Tots els taulers",
"Archived boards" : "Taulers arxivats",
"Shared with you" : "Us han compartit",
@@ -288,12 +280,9 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Esteu segur que voleu suprimir el tauler {title}? Això suprimirà totes les dades d'aquest tauler, incloses les targetes arxivades.",
"Delete the board?" : "Voleu suprimir el tauler?",
"Loading filtered view" : "S'està carregant la visualització filtrada",
"Today" : "Avui",
"Tomorrow" : "Demà",
"No due" : "Sense venciment",
"Search for {searchQuery} in all boards" : "Busca {searchQuery} a tots els taulers",
"No results found" : "No s'han trobat resultats",
"This weekend {timeLocale}" : "Aquest cap de setmana: {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Tauler de piles {name}\n* Última modificació el dia {lastMod}",
"{stack} in {board}" : "{stack} a {board}",
"Click to expand description" : "Feu clic per ampliar la descripció",
@@ -311,8 +300,6 @@
"upcoming cards" : "pròximes targetes",
"New card" : "Nova targeta",
"Due on {date}" : "Venciment el dia {date}",
"Tomorrow {timeLocale}" : "Demà: {timeLocale}",
"Later today {timeLocale}" : "Avui més tard: {timeLocale}",
"Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta",
"Create a card" : "Crea una targeta",
@@ -326,10 +313,9 @@
"Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "S'ha canviat una <strong>descripció de targeta</strong> a l'aplicació Tauler",
"Timeline" : "Línia de temps",
"Add a new list" : "Afegeix una llista nova",
"Assign to users" : "Assignació als usuaris",
"Due date" : "Data de caducitat",
"Next week" : "Setmana següent",
"Next month" : "Mes següent",
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells."
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -37,10 +37,6 @@ OC.L10N.register(
"{user} has archived card {card} in list {stack} on board {board}" : "{user} zaarchivoval(a) kartu {card} ve sloupci {stack} na tabuli {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "Zrušili jste archivacii karty {card} ve sloupci {stack} na tabuli {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} ve sloupci {stack} na tabuli {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Označili jste kartu {card} jako splněnou v seznamu {stack} na tabuli {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} označil(a) {card} jako splněnou {stack} na tabuli {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Zrušili jste označení karty {card} jako splněné v seznamu {stack} na tabuli {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} zrušil(a) označení {card} jako splněné {stack} na tabuli {board}",
"You have removed the due date of card {card}" : "Odebrali jste termín u karty {card}",
"{user} has removed the due date of card {card}" : "{user} odebral(a) termín u karty {card}",
"You have set the due date of card {card} to {after}" : "Nastavili jste termín u karty {card} na {after}",
@@ -72,8 +68,6 @@ OC.L10N.register(
"A <strong>board, list or card</strong> was changed" : "<strong>tabule, seznam nebo karta</strong> byla změněna",
"A <strong>comment</strong> was created on a card" : "Na kartě byl vytvořen <strong>komentář</strong>",
"A <strong>card description</strong> has been changed" : "<strong>Popis karty</strong> byl změněn",
"Cards due today" : "Karty, kterým končí termín dnes",
"Cards due tomorrow" : "Karty, které mají termín zítra",
"Upcoming cards" : "Nadcházející karty",
"Load more" : "Načíst více",
"Personal" : "Osobní",
@@ -152,20 +146,16 @@ OC.L10N.register(
"Next 30 days" : "Příštích 30 dnů",
"No due date" : "Žádný termín",
"Clear filter" : "Vyčistit filtr",
"View Modes" : "Zobrazit režimy",
"Toggle View Modes" : "Přepnout mezi režimy zobrazení",
"Hide archived cards" : "Skrýt archivované karty",
"Show archived cards" : "Zobrazit archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
"Hide card cover images" : "Skrýt obrázky přebalu karet",
"Show card cover images" : "Zobrazit obrázky přebalu karet",
"Open details" : "Otevřít podrobnosti",
"Details" : "Podrobnosti",
"Currently present people" : "Nyní přítomní lidé",
"Loading board" : "Načítání tabule",
"Board not found" : "Tabule nenalezena",
"No lists available" : "Nejsou k dispozici žádné seznamy",
"Create a new list to add cards to this board" : "Pro přidání karet na tuto tabuli vytvořte nový seznam",
"Board not found" : "Tabule nenalezena",
"Sharing" : "Sdílení",
"Tags" : "Štítky",
"Deleted items" : "Smazané položky",
@@ -233,7 +223,6 @@ OC.L10N.register(
"Cancel reply" : "Zrušit odpověď",
"Reply" : "Odpovědět",
"Update" : "Aktualizovat",
"Created:" : "Vytvořeno:",
"Description" : "Popis",
"(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)",
@@ -245,46 +234,29 @@ OC.L10N.register(
"Choose attachment" : "Zvolte přílohu",
"Assign a due date to this card…" : "Přiradit této kartě termín…",
"Set a due date" : "Vybrat termín",
"Add due date" : "Přidat termín",
"Choose a date" : "Zvolit datum",
"Remove due date" : "Odstranit termín",
"Completed" : "Dokončeno",
"Due at:" : "Termín v:",
"Not completed" : "Nedokončeno",
"Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu",
"Select Date" : "Vybrat datum",
"Set due date for later today" : "Nastavit termín na dnešek",
"Set due date for tomorrow" : "Nastavit termín na zítřek",
"Set due date for this weekend" : "Nastavit termín na tento týden",
"Set due date for next week" : "Nastavit termín na příští týden",
"Today" : "Dnes",
"Tomorrow" : "Zítra",
"Next week" : "Příští týden",
"Next month" : "Příští měsíc",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Create a new tag:" : "Vytvořit nový štítek:",
"(group)" : "(skupina)",
"Next week {timeLocale}" : "Příští týden {timeLocale}",
"Todo items" : "Položky k udělání",
"{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených",
"Edit card title" : "Upravit nadpis karty",
"Card details" : "Podrobnosti o kartě",
"Assign to me" : "Přiřadit mě",
"Unassign myself" : "Zrušit přiřazení sobě",
"Mark as not done" : "Označit jako nehotové",
"Mark as done" : "Označit jako hotové",
"Move card" : "Přesunout kartu",
"Card details" : "Podrobnosti o kartě",
"Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu",
"Delete card" : "Smazat kartu",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Select a list" : "Vyberte sloupec",
"List is empty" : "Seznam je prázdný",
"Card deleted" : "Karta smazána",
"seconds ago" : "před několika sekundami",
"Keyboard shortcuts" : "Klávesové zkratky",
"Keyboard shortcut" : "Klávesová zkratka",
"Action" : "Akce",
"Shift" : "Shift",
"Ctrl" : "Ctrl",
"Search" : "Hledat",
"Enter" : "Konec řádku",
"Space" : "Mezera",
"All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule",
"Shared with you" : "Sdíleno s vámi",
@@ -314,12 +286,9 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Opravdu chcete tabuli {title} smazat? Toto smaže veškerá data této tabule, včetně archivovaných karet.",
"Delete the board?" : "Smazat tabuli?",
"Loading filtered view" : "Načítání filtrovaného pohledu",
"Today" : "Dnes",
"Tomorrow" : "Zítra",
"No due" : "Žádný termín",
"Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích",
"No results found" : "Nenalezeny žádné výsledky",
"This weekend {timeLocale}" : "Tento víkend {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck karta {name}\n* Naposledy změněno {lastMod}",
"{stack} in {board}" : "{stack} v {board}",
"Click to expand description" : "Popis rozbalíte kliknutím",
@@ -334,13 +303,9 @@ OC.L10N.register(
"Open card" : "Otevřít kartu",
"Close" : "Zavřít",
"No upcoming cards" : "Žádné nadcházející karty",
"upcoming cards today" : "nadcházející karty na dnešek",
"upcoming cards tomorrow" : "nadcházející karty na zítřek",
"upcoming cards" : "nadcházející karty",
"New card" : "Nová karta",
"Due on {date}" : "Termín {date}",
"Tomorrow {timeLocale}" : "Zítra {timeLocale}",
"Later today {timeLocale}" : "Později dnes {timeLocale}",
"Link to a board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou",
"Create a card" : "Vytvořit kartu",
@@ -354,10 +319,9 @@ OC.L10N.register(
"Share" : "Sdílet",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Popis karty</strong> v aplikaci Deck byl změněn",
"Timeline" : "Časová osa",
"Add a new list" : "Přidat nový sloupec",
"Assign to users" : "Přiřadit k uživatelům",
"Due date" : "Termín",
"Next week" : "Příští týden",
"Next month" : "Příští měsíc",
"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."
},

View File

@@ -35,10 +35,6 @@
"{user} has archived card {card} in list {stack} on board {board}" : "{user} zaarchivoval(a) kartu {card} ve sloupci {stack} na tabuli {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "Zrušili jste archivacii karty {card} ve sloupci {stack} na tabuli {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} ve sloupci {stack} na tabuli {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Označili jste kartu {card} jako splněnou v seznamu {stack} na tabuli {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} označil(a) {card} jako splněnou {stack} na tabuli {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Zrušili jste označení karty {card} jako splněné v seznamu {stack} na tabuli {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} zrušil(a) označení {card} jako splněné {stack} na tabuli {board}",
"You have removed the due date of card {card}" : "Odebrali jste termín u karty {card}",
"{user} has removed the due date of card {card}" : "{user} odebral(a) termín u karty {card}",
"You have set the due date of card {card} to {after}" : "Nastavili jste termín u karty {card} na {after}",
@@ -70,8 +66,6 @@
"A <strong>board, list or card</strong> was changed" : "<strong>tabule, seznam nebo karta</strong> byla změněna",
"A <strong>comment</strong> was created on a card" : "Na kartě byl vytvořen <strong>komentář</strong>",
"A <strong>card description</strong> has been changed" : "<strong>Popis karty</strong> byl změněn",
"Cards due today" : "Karty, kterým končí termín dnes",
"Cards due tomorrow" : "Karty, které mají termín zítra",
"Upcoming cards" : "Nadcházející karty",
"Load more" : "Načíst více",
"Personal" : "Osobní",
@@ -150,20 +144,16 @@
"Next 30 days" : "Příštích 30 dnů",
"No due date" : "Žádný termín",
"Clear filter" : "Vyčistit filtr",
"View Modes" : "Zobrazit režimy",
"Toggle View Modes" : "Přepnout mezi režimy zobrazení",
"Hide archived cards" : "Skrýt archivované karty",
"Show archived cards" : "Zobrazit archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
"Hide card cover images" : "Skrýt obrázky přebalu karet",
"Show card cover images" : "Zobrazit obrázky přebalu karet",
"Open details" : "Otevřít podrobnosti",
"Details" : "Podrobnosti",
"Currently present people" : "Nyní přítomní lidé",
"Loading board" : "Načítání tabule",
"Board not found" : "Tabule nenalezena",
"No lists available" : "Nejsou k dispozici žádné seznamy",
"Create a new list to add cards to this board" : "Pro přidání karet na tuto tabuli vytvořte nový seznam",
"Board not found" : "Tabule nenalezena",
"Sharing" : "Sdílení",
"Tags" : "Štítky",
"Deleted items" : "Smazané položky",
@@ -231,7 +221,6 @@
"Cancel reply" : "Zrušit odpověď",
"Reply" : "Odpovědět",
"Update" : "Aktualizovat",
"Created:" : "Vytvořeno:",
"Description" : "Popis",
"(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)",
@@ -243,46 +232,29 @@
"Choose attachment" : "Zvolte přílohu",
"Assign a due date to this card…" : "Přiradit této kartě termín…",
"Set a due date" : "Vybrat termín",
"Add due date" : "Přidat termín",
"Choose a date" : "Zvolit datum",
"Remove due date" : "Odstranit termín",
"Completed" : "Dokončeno",
"Due at:" : "Termín v:",
"Not completed" : "Nedokončeno",
"Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu",
"Select Date" : "Vybrat datum",
"Set due date for later today" : "Nastavit termín na dnešek",
"Set due date for tomorrow" : "Nastavit termín na zítřek",
"Set due date for this weekend" : "Nastavit termín na tento týden",
"Set due date for next week" : "Nastavit termín na příští týden",
"Today" : "Dnes",
"Tomorrow" : "Zítra",
"Next week" : "Příští týden",
"Next month" : "Příští měsíc",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Create a new tag:" : "Vytvořit nový štítek:",
"(group)" : "(skupina)",
"Next week {timeLocale}" : "Příští týden {timeLocale}",
"Todo items" : "Položky k udělání",
"{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených",
"Edit card title" : "Upravit nadpis karty",
"Card details" : "Podrobnosti o kartě",
"Assign to me" : "Přiřadit mě",
"Unassign myself" : "Zrušit přiřazení sobě",
"Mark as not done" : "Označit jako nehotové",
"Mark as done" : "Označit jako hotové",
"Move card" : "Přesunout kartu",
"Card details" : "Podrobnosti o kartě",
"Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu",
"Delete card" : "Smazat kartu",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Select a list" : "Vyberte sloupec",
"List is empty" : "Seznam je prázdný",
"Card deleted" : "Karta smazána",
"seconds ago" : "před několika sekundami",
"Keyboard shortcuts" : "Klávesové zkratky",
"Keyboard shortcut" : "Klávesová zkratka",
"Action" : "Akce",
"Shift" : "Shift",
"Ctrl" : "Ctrl",
"Search" : "Hledat",
"Enter" : "Konec řádku",
"Space" : "Mezera",
"All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule",
"Shared with you" : "Sdíleno s vámi",
@@ -312,12 +284,9 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Opravdu chcete tabuli {title} smazat? Toto smaže veškerá data této tabule, včetně archivovaných karet.",
"Delete the board?" : "Smazat tabuli?",
"Loading filtered view" : "Načítání filtrovaného pohledu",
"Today" : "Dnes",
"Tomorrow" : "Zítra",
"No due" : "Žádný termín",
"Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích",
"No results found" : "Nenalezeny žádné výsledky",
"This weekend {timeLocale}" : "Tento víkend {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck karta {name}\n* Naposledy změněno {lastMod}",
"{stack} in {board}" : "{stack} v {board}",
"Click to expand description" : "Popis rozbalíte kliknutím",
@@ -332,13 +301,9 @@
"Open card" : "Otevřít kartu",
"Close" : "Zavřít",
"No upcoming cards" : "Žádné nadcházející karty",
"upcoming cards today" : "nadcházející karty na dnešek",
"upcoming cards tomorrow" : "nadcházející karty na zítřek",
"upcoming cards" : "nadcházející karty",
"New card" : "Nová karta",
"Due on {date}" : "Termín {date}",
"Tomorrow {timeLocale}" : "Zítra {timeLocale}",
"Later today {timeLocale}" : "Později dnes {timeLocale}",
"Link to a board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou",
"Create a card" : "Vytvořit kartu",
@@ -352,10 +317,9 @@
"Share" : "Sdílet",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Popis karty</strong> v aplikaci Deck byl změněn",
"Timeline" : "Časová osa",
"Add a new list" : "Přidat nový sloupec",
"Assign to users" : "Přiřadit k uživatelům",
"Due date" : "Termín",
"Next week" : "Příští týden",
"Next month" : "Příští měsíc",
"Limit deck usage of groups" : "Omezit využití deck na skupiny",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny."
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"

View File

@@ -21,19 +21,16 @@ OC.L10N.register(
"Modified" : "Addaswyd",
"Save" : "Cadw",
"Update" : "Diweddaru",
"Created:" : "Crewyd:",
"Description" : "Disgrifiad",
"Select Date" : "Dewis Dyddiad",
"Today" : "Heddiw",
"Next week" : "Wythnos nesaf",
"Next month" : "Mis nesaf",
"seconds ago" : "eiliad yn ôl",
"Keyboard shortcuts" : "Llwybrau byr bysellfwrdd",
"Search" : "Chwilio",
"Shared with you" : "Shared with you",
"No reminder" : "Dim nodyn atgoffa",
"An error occurred" : "Digwyddodd gwall",
"Today" : "Heddiw",
"Close" : "Cau",
"Share" : "Rhannu",
"Next week" : "Wythnos nesaf",
"Next month" : "Mis nesaf"
"Share" : "Rhannu"
},
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");

View File

@@ -19,19 +19,16 @@
"Modified" : "Addaswyd",
"Save" : "Cadw",
"Update" : "Diweddaru",
"Created:" : "Crewyd:",
"Description" : "Disgrifiad",
"Select Date" : "Dewis Dyddiad",
"Today" : "Heddiw",
"Next week" : "Wythnos nesaf",
"Next month" : "Mis nesaf",
"seconds ago" : "eiliad yn ôl",
"Keyboard shortcuts" : "Llwybrau byr bysellfwrdd",
"Search" : "Chwilio",
"Shared with you" : "Shared with you",
"No reminder" : "Dim nodyn atgoffa",
"An error occurred" : "Digwyddodd gwall",
"Today" : "Heddiw",
"Close" : "Cau",
"Share" : "Rhannu",
"Next week" : "Wythnos nesaf",
"Next month" : "Mis nesaf"
"Share" : "Rhannu"
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
}

View File

@@ -100,9 +100,9 @@ OC.L10N.register(
"Open details" : "Mere information",
"Details" : "Detaljer",
"Loading board" : "Indlæser tavle",
"Board not found" : "Tavle ikke fundet.",
"No lists available" : "Ingen kolonner tilgængelige",
"Create a new list to add cards to this board" : "Opret en ny kolonne for at tilføje kort til denne tavle ",
"Board not found" : "Tavle ikke fundet.",
"Sharing" : "Deling",
"Tags" : "Mærkat",
"Deleted items" : "Slettede objekter",
@@ -159,7 +159,6 @@ OC.L10N.register(
"In reply to" : "som svar til",
"Reply" : "Besvar",
"Update" : "Opdatér",
"Created:" : "Oprettet:",
"Description" : "Beskrivelse",
"(Unsaved)" : "(Ikke gemt)",
"(Saving…)" : "(Gemmer...)",
@@ -171,29 +170,24 @@ OC.L10N.register(
"Choose attachment" : "Vælg en vedhæftning",
"Set a due date" : "Sæt en forfaldsdato",
"Remove due date" : "Fjern forfaldsdato",
"Completed" : "Fuldført",
"Not completed" : "Ikke afsluttet",
"Unarchive card" : "Gen-aktivér kort",
"Archive card" : "Arkivér kort",
"Select Date" : "Vælg dato",
"Today" : "I dag",
"Tomorrow" : "I morgen",
"Next week" : "Næste uge",
"Next month" : "Næste måned",
"Assign a tag to this card…" : "Tilføj et mærkat til dette kort ...",
"(group)" : "(gruppe)",
"Card details" : "Kort detaljer",
"Assign to me" : "Tildel til mig",
"Unassign myself" : "Fjern mig selv",
"Mark as done" : "Marker som færdig",
"Move card" : "Flyt kort",
"Card details" : "Kort detaljer",
"Unarchive card" : "Gen-aktivér kort",
"Archive card" : "Arkivér kort",
"Delete card" : "Slet kort",
"Move card to another board" : "Flyt kort til en anden tavle",
"Select a list" : "Vælg en kolonne",
"Card deleted" : "Kort slettet",
"seconds ago" : "sekunder siden",
"Keyboard shortcuts" : "Tastaturgenveje",
"Keyboard shortcut" : "Tastaturgenvej",
"Action" : "Handling",
"Shift" : "Shift",
"Ctrl" : "Ctrl",
"Search" : "Søg",
"seconds ago" : "sekunder siden",
"All boards" : "Alle tavler",
"Archived boards" : "Arkiverede lister",
"Shared with you" : "Shared with you",
@@ -217,8 +211,6 @@ OC.L10N.register(
"An error occurred" : "Der var en fejl",
"Delete the board?" : "Slet tavlen?",
"Loading filtered view" : "Indlæser filtreret visning",
"Today" : "I dag",
"Tomorrow" : "I morgen",
"No due" : "Ikke forfalden",
"Create card" : "Opret kort",
"Close" : "Luk",
@@ -235,10 +227,9 @@ OC.L10N.register(
"Share {file} with a Deck card" : "Del {file} med et Deck kort",
"Share" : "Del",
"Timeline" : "Tidslinje",
"Add a new list" : "Tilføj en ny kolonne",
"Assign to users" : "Tildel til brugere",
"Due date" : "Forfaldsdato",
"Next week" : "Næste uge",
"Next month" : "Næste måned",
"Limit deck usage of groups" : "Begræns Deck brug til grupper",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Begrænsning af Deck vil blokere brugere som ikke er en del af de valgte grupper fra at oprette deres egne tavler. Brugere vil stadig kunne arbejde på tavler der er blevet delt med dem. "
},

View File

@@ -98,9 +98,9 @@
"Open details" : "Mere information",
"Details" : "Detaljer",
"Loading board" : "Indlæser tavle",
"Board not found" : "Tavle ikke fundet.",
"No lists available" : "Ingen kolonner tilgængelige",
"Create a new list to add cards to this board" : "Opret en ny kolonne for at tilføje kort til denne tavle ",
"Board not found" : "Tavle ikke fundet.",
"Sharing" : "Deling",
"Tags" : "Mærkat",
"Deleted items" : "Slettede objekter",
@@ -157,7 +157,6 @@
"In reply to" : "som svar til",
"Reply" : "Besvar",
"Update" : "Opdatér",
"Created:" : "Oprettet:",
"Description" : "Beskrivelse",
"(Unsaved)" : "(Ikke gemt)",
"(Saving…)" : "(Gemmer...)",
@@ -169,29 +168,24 @@
"Choose attachment" : "Vælg en vedhæftning",
"Set a due date" : "Sæt en forfaldsdato",
"Remove due date" : "Fjern forfaldsdato",
"Completed" : "Fuldført",
"Not completed" : "Ikke afsluttet",
"Unarchive card" : "Gen-aktivér kort",
"Archive card" : "Arkivér kort",
"Select Date" : "Vælg dato",
"Today" : "I dag",
"Tomorrow" : "I morgen",
"Next week" : "Næste uge",
"Next month" : "Næste måned",
"Assign a tag to this card…" : "Tilføj et mærkat til dette kort ...",
"(group)" : "(gruppe)",
"Card details" : "Kort detaljer",
"Assign to me" : "Tildel til mig",
"Unassign myself" : "Fjern mig selv",
"Mark as done" : "Marker som færdig",
"Move card" : "Flyt kort",
"Card details" : "Kort detaljer",
"Unarchive card" : "Gen-aktivér kort",
"Archive card" : "Arkivér kort",
"Delete card" : "Slet kort",
"Move card to another board" : "Flyt kort til en anden tavle",
"Select a list" : "Vælg en kolonne",
"Card deleted" : "Kort slettet",
"seconds ago" : "sekunder siden",
"Keyboard shortcuts" : "Tastaturgenveje",
"Keyboard shortcut" : "Tastaturgenvej",
"Action" : "Handling",
"Shift" : "Shift",
"Ctrl" : "Ctrl",
"Search" : "Søg",
"seconds ago" : "sekunder siden",
"All boards" : "Alle tavler",
"Archived boards" : "Arkiverede lister",
"Shared with you" : "Shared with you",
@@ -215,8 +209,6 @@
"An error occurred" : "Der var en fejl",
"Delete the board?" : "Slet tavlen?",
"Loading filtered view" : "Indlæser filtreret visning",
"Today" : "I dag",
"Tomorrow" : "I morgen",
"No due" : "Ikke forfalden",
"Create card" : "Opret kort",
"Close" : "Luk",
@@ -233,10 +225,9 @@
"Share {file} with a Deck card" : "Del {file} med et Deck kort",
"Share" : "Del",
"Timeline" : "Tidslinje",
"Add a new list" : "Tilføj en ny kolonne",
"Assign to users" : "Tildel til brugere",
"Due date" : "Forfaldsdato",
"Next week" : "Næste uge",
"Next month" : "Næste måned",
"Limit deck usage of groups" : "Begræns Deck brug til grupper",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Begrænsning af Deck vil blokere brugere som ikke er en del af de valgte grupper fra at oprette deres egne tavler. Brugere vil stadig kunne arbejde på tavler der er blevet delt med dem. "
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -37,10 +37,6 @@ OC.L10N.register(
"{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",
"You have unarchived card {card} in list {stack} on board {board}" : "Du hast die Karte {card} in der Liste {stack} auf dem Board {board} dearchiviert",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} dearchiviert",
"You have marked the card {card} as done in list {stack} on board {board}" : "Du hast die Karte {card} in der Liste {stack} auf dem Board {board} als erledigt markiert.",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} als erledigt markiert.",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Du hast die Karte {card} in der Liste {stack} auf dem Board {board} als nicht erledigt markiert.",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} als nicht erledigt markiert.",
"You have removed the due date of card {card}" : "Du hast das Fälligkeitsdatum der Karte {card} entfernt",
"{user} has removed the due date of card {card}" : "{user} hat das Fälligkeitsdatum der Karte {card} entfernt",
"You have set the due date of card {card} to {after}" : "Du hast das Fälligkeitsdatum der Karte {card} auf {after} gesetzt",
@@ -72,8 +68,6 @@ OC.L10N.register(
"A <strong>board, list or card</strong> was changed" : "Ein <strong>Bord, eine Liste oder Karte</strong> wurde geändert.",
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
"A <strong>card description</strong> has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde geändert.",
"Cards due today" : "Karten, die heute fällig sind",
"Cards due tomorrow" : "Karten, die morgen fällig sind",
"Upcoming cards" : "Anstehende Karten",
"Load more" : "Mehr laden",
"Personal" : "Persönlich",
@@ -152,20 +146,16 @@ OC.L10N.register(
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"View Modes" : "Ansichtsmodi",
"Toggle View Modes" : "Ansichtsmodi wechseln",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Hide card cover images" : "Bilder auf den Karten ausblenden",
"Show card cover images" : "Bilder auf den Karten anzeigen",
"Open details" : "Details öffnen",
"Details" : "Details",
"Currently present people" : "Aktuell Anwesende",
"Loading board" : "Lade Board",
"Board not found" : "Board nicht gefunden",
"No lists available" : "Keine Listen verfügbar",
"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",
"Deleted items" : "Gelöschte Objekte",
@@ -233,7 +223,6 @@ OC.L10N.register(
"Cancel reply" : "Antwort abbrechen",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"Created:" : "Erstellt:",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere …)",
@@ -245,64 +234,29 @@ OC.L10N.register(
"Choose attachment" : "Anhang auswählen",
"Assign a due date to this card…" : "Dieser Karte ein Fälligkeitsdatum zuweisen …",
"Set a due date" : "Ein Ablaufdatum setzen",
"Add due date" : "Fälligkeitsdatum hinzufügen",
"Choose a date" : "Datum auswählen",
"Remove due date" : "Fälligkeitsdatum löschen",
"Completed" : "Fertiggestellt",
"Due at:" : "Fallig am:",
"Not completed" : "Nicht fertiggestellt",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Select Date" : "Datum auswählen",
"Set due date for later today" : "Fälligkeitsdatum auf heute noch setzen",
"Set due date for tomorrow" : "Fälligkeitsdatum auf morgen setzen",
"Set due date for this weekend" : "Fälligkeitsdatum auf kommendes Wochenende setzen",
"Set due date for next week" : "Fälligkeitsdatum auf nächste Woche setzen",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"Next week" : "Nächste Woche",
"Next month" : "Nächster Monat",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen …",
"Create a new tag:" : "Neues Schlagwort erstellen:",
"(group)" : "(Gruppe)",
"Next week {timeLocale}" : "Nächste Woche {timeLocale}",
"Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten",
"Card details" : "Kartendetails",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als nicht erledigt markieren",
"Mark as done" : "Als erledigt markieren",
"Move card" : "Karte verschieben",
"Card details" : "Karten-Details",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a list" : "Eine Liste auswählen",
"List is empty" : "Liste ist leer",
"Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben",
"Keyboard shortcuts" : "Tastaturkürzel",
"Speed up using Deck with simple shortcuts." : "Beschleunige die Verwendung von Deck mit einfachen Tastaturkürzeln.",
"Board actions" : "Boardaktionen",
"Keyboard shortcut" : "Tastaturkürzel",
"Action" : "Aktion",
"Shift" : "Umschalttaste",
"Scroll" : "Scrollen",
"Scroll sideways" : "Seitwärts scrollen",
"Navigate between cards" : "Zwischen Karten navigieren",
"Esc" : "Esc",
"Close card details" : "Kartendetails schließen",
"Ctrl" : "Strg",
"Search" : "Suche",
"Show card filters" : "Kartenfilter anzeigen",
"Clear card filters" : "Kartenfilter löschen",
"Show help dialog" : "Hilfedialog anzeigen",
"Card actions" : "Kartenaktionen",
"The following actions can be triggered on the currently highlighted card" : "Die folgenden Aktionen können für die aktuell markierten Karte ausgelöst werden",
"Enter" : "Enter",
"Space" : "Leerzeichen",
"Open card details" : "Kartendetails öffnen",
"Edit the card title" : "Kartentitel bearbeiten",
"Assign yourself to the current card" : "Aktuelle Karte dir zuweisen",
"Archive/unarchive the current card" : "Aktuelle Karte archivieren/dearchivieren",
"Mark card as completed/not completed" : "Karte als abgeschlossen/nicht abgeschlossen markieren",
"Open card menu" : "Kartenmenü öffnen",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit dir geteilt",
@@ -312,7 +266,7 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit board creation to some groups" : "Erstellung von Boards auf einige Gruppen beschränken",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Benutzer außerhalb dieser Gruppen können keine eigenen Boards erstellen, aber weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.",
"Board details" : "Boarddetails",
"Board details" : "Board-Details",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",
"Unarchive board" : "Board dearchivieren",
@@ -332,12 +286,9 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Möchtest du wirklich das Board {title} mit all seinen Daten einschließlich der archivierten Karten löschen?",
"Delete the board?" : "Das Board löschen?",
"Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
"No results found" : "Keine Ergebnisse gefunden",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ",
"{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Klicken, um die Beschreibung zu erweitern",
@@ -352,13 +303,9 @@ OC.L10N.register(
"Open card" : "Karte öffnen",
"Close" : "Schließen",
"No upcoming cards" : "Keine anstehenden Karten",
"upcoming cards today" : "Heute anstehende Karten",
"upcoming cards tomorrow" : "Morgen anstehende Karten",
"upcoming cards" : "Anstehende Karten",
"New card" : "Neue Karte",
"Due on {date}" : "Fällig am {date}",
"Tomorrow {timeLocale}" : "Morgen {timeLocale}",
"Later today {timeLocale}" : "Heute noch {timeLocale}",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Create a card" : "Eine Karte erstellen",
@@ -372,12 +319,10 @@ OC.L10N.register(
"Share" : "Freigeben",
"A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde innerhalb der Deck-App geändert",
"Timeline" : "Zeitachse",
"Add a new list" : "Eine neue Liste hinzufügen",
"Assign to users" : "Benutzern zuweisen",
"Due date" : "Fälligkeitsdatum",
"Next week" : "Nächste Woche",
"Next month" : "Nächster Monat",
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn du Deck einschränkst, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Assign yorself to the current card" : "Aktuelle Karte dir zuweisen"
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn du Deck einschränkst, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden."
},
"nplurals=2; plural=(n != 1);");

View File

@@ -35,10 +35,6 @@
"{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",
"You have unarchived card {card} in list {stack} on board {board}" : "Du hast die Karte {card} in der Liste {stack} auf dem Board {board} dearchiviert",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} dearchiviert",
"You have marked the card {card} as done in list {stack} on board {board}" : "Du hast die Karte {card} in der Liste {stack} auf dem Board {board} als erledigt markiert.",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} als erledigt markiert.",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Du hast die Karte {card} in der Liste {stack} auf dem Board {board} als nicht erledigt markiert.",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} als nicht erledigt markiert.",
"You have removed the due date of card {card}" : "Du hast das Fälligkeitsdatum der Karte {card} entfernt",
"{user} has removed the due date of card {card}" : "{user} hat das Fälligkeitsdatum der Karte {card} entfernt",
"You have set the due date of card {card} to {after}" : "Du hast das Fälligkeitsdatum der Karte {card} auf {after} gesetzt",
@@ -70,8 +66,6 @@
"A <strong>board, list or card</strong> was changed" : "Ein <strong>Bord, eine Liste oder Karte</strong> wurde geändert.",
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
"A <strong>card description</strong> has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde geändert.",
"Cards due today" : "Karten, die heute fällig sind",
"Cards due tomorrow" : "Karten, die morgen fällig sind",
"Upcoming cards" : "Anstehende Karten",
"Load more" : "Mehr laden",
"Personal" : "Persönlich",
@@ -150,20 +144,16 @@
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"View Modes" : "Ansichtsmodi",
"Toggle View Modes" : "Ansichtsmodi wechseln",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Hide card cover images" : "Bilder auf den Karten ausblenden",
"Show card cover images" : "Bilder auf den Karten anzeigen",
"Open details" : "Details öffnen",
"Details" : "Details",
"Currently present people" : "Aktuell Anwesende",
"Loading board" : "Lade Board",
"Board not found" : "Board nicht gefunden",
"No lists available" : "Keine Listen verfügbar",
"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",
"Deleted items" : "Gelöschte Objekte",
@@ -231,7 +221,6 @@
"Cancel reply" : "Antwort abbrechen",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"Created:" : "Erstellt:",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere …)",
@@ -243,64 +232,29 @@
"Choose attachment" : "Anhang auswählen",
"Assign a due date to this card…" : "Dieser Karte ein Fälligkeitsdatum zuweisen …",
"Set a due date" : "Ein Ablaufdatum setzen",
"Add due date" : "Fälligkeitsdatum hinzufügen",
"Choose a date" : "Datum auswählen",
"Remove due date" : "Fälligkeitsdatum löschen",
"Completed" : "Fertiggestellt",
"Due at:" : "Fallig am:",
"Not completed" : "Nicht fertiggestellt",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Select Date" : "Datum auswählen",
"Set due date for later today" : "Fälligkeitsdatum auf heute noch setzen",
"Set due date for tomorrow" : "Fälligkeitsdatum auf morgen setzen",
"Set due date for this weekend" : "Fälligkeitsdatum auf kommendes Wochenende setzen",
"Set due date for next week" : "Fälligkeitsdatum auf nächste Woche setzen",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"Next week" : "Nächste Woche",
"Next month" : "Nächster Monat",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen …",
"Create a new tag:" : "Neues Schlagwort erstellen:",
"(group)" : "(Gruppe)",
"Next week {timeLocale}" : "Nächste Woche {timeLocale}",
"Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten",
"Card details" : "Kartendetails",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als nicht erledigt markieren",
"Mark as done" : "Als erledigt markieren",
"Move card" : "Karte verschieben",
"Card details" : "Karten-Details",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a list" : "Eine Liste auswählen",
"List is empty" : "Liste ist leer",
"Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben",
"Keyboard shortcuts" : "Tastaturkürzel",
"Speed up using Deck with simple shortcuts." : "Beschleunige die Verwendung von Deck mit einfachen Tastaturkürzeln.",
"Board actions" : "Boardaktionen",
"Keyboard shortcut" : "Tastaturkürzel",
"Action" : "Aktion",
"Shift" : "Umschalttaste",
"Scroll" : "Scrollen",
"Scroll sideways" : "Seitwärts scrollen",
"Navigate between cards" : "Zwischen Karten navigieren",
"Esc" : "Esc",
"Close card details" : "Kartendetails schließen",
"Ctrl" : "Strg",
"Search" : "Suche",
"Show card filters" : "Kartenfilter anzeigen",
"Clear card filters" : "Kartenfilter löschen",
"Show help dialog" : "Hilfedialog anzeigen",
"Card actions" : "Kartenaktionen",
"The following actions can be triggered on the currently highlighted card" : "Die folgenden Aktionen können für die aktuell markierten Karte ausgelöst werden",
"Enter" : "Enter",
"Space" : "Leerzeichen",
"Open card details" : "Kartendetails öffnen",
"Edit the card title" : "Kartentitel bearbeiten",
"Assign yourself to the current card" : "Aktuelle Karte dir zuweisen",
"Archive/unarchive the current card" : "Aktuelle Karte archivieren/dearchivieren",
"Mark card as completed/not completed" : "Karte als abgeschlossen/nicht abgeschlossen markieren",
"Open card menu" : "Kartenmenü öffnen",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit dir geteilt",
@@ -310,7 +264,7 @@
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit board creation to some groups" : "Erstellung von Boards auf einige Gruppen beschränken",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them." : "Benutzer außerhalb dieser Gruppen können keine eigenen Boards erstellen, aber weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.",
"Board details" : "Boarddetails",
"Board details" : "Board-Details",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",
"Unarchive board" : "Board dearchivieren",
@@ -330,12 +284,9 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Möchtest du wirklich das Board {title} mit all seinen Daten einschließlich der archivierten Karten löschen?",
"Delete the board?" : "Das Board löschen?",
"Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
"No results found" : "Keine Ergebnisse gefunden",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ",
"{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Klicken, um die Beschreibung zu erweitern",
@@ -350,13 +301,9 @@
"Open card" : "Karte öffnen",
"Close" : "Schließen",
"No upcoming cards" : "Keine anstehenden Karten",
"upcoming cards today" : "Heute anstehende Karten",
"upcoming cards tomorrow" : "Morgen anstehende Karten",
"upcoming cards" : "Anstehende Karten",
"New card" : "Neue Karte",
"Due on {date}" : "Fällig am {date}",
"Tomorrow {timeLocale}" : "Morgen {timeLocale}",
"Later today {timeLocale}" : "Heute noch {timeLocale}",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Create a card" : "Eine Karte erstellen",
@@ -370,12 +317,10 @@
"Share" : "Freigeben",
"A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde innerhalb der Deck-App geändert",
"Timeline" : "Zeitachse",
"Add a new list" : "Eine neue Liste hinzufügen",
"Assign to users" : "Benutzern zuweisen",
"Due date" : "Fälligkeitsdatum",
"Next week" : "Nächste Woche",
"Next month" : "Nächster Monat",
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn du Deck einschränkst, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Assign yorself to the current card" : "Aktuelle Karte dir zuweisen"
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn du Deck einschränkst, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -37,10 +37,6 @@ OC.L10N.register(
"{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",
"You have unarchived card {card} in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} auf dem Board {board} dearchiviert",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} dearchiviert",
"You have marked the card {card} as done in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} im Board {board} als erledigt markiert",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} im Board {board} als erledigt markiert",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} im Board {board} als unerledigt markiert",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} im Board {board} als unerledigt markiert",
"You have removed the due date of card {card}" : "Sie haben das Fälligkeitsdatum der Karte {card} entfernt",
"{user} has removed the due date of card {card}" : "{user} hat das Fälligkeitsdatum der Karte {card} entfernt",
"You have set the due date of card {card} to {after}" : "Sie haben das Fälligkeitsdatum der Karte {card} auf {after} gesetzt",
@@ -72,8 +68,6 @@ OC.L10N.register(
"A <strong>board, list or card</strong> was changed" : "Ein <strong>Bord, eine Liste oder Karte</strong> wurde geändert",
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
"A <strong>card description</strong> has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde geändert",
"Cards due today" : "Karten die heute fällig sind",
"Cards due tomorrow" : "Karten die morgen fällig sind",
"Upcoming cards" : "Anstehende Karten",
"Load more" : "Mehr laden",
"Personal" : "Persönlich",
@@ -152,20 +146,16 @@ OC.L10N.register(
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"View Modes" : "Ansichtsmodi",
"Toggle View Modes" : "Ansichtsmodi wechseln",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Hide card cover images" : "Kartencoverbilder ausblenden",
"Show card cover images" : "Kartencoverbilder anzeigen",
"Open details" : "Details öffnen",
"Details" : "Details",
"Currently present people" : "Aktuell Anwesende",
"Loading board" : "Lade Board",
"Board not found" : "Board nicht gefunden",
"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",
"Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen",
"Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte",
@@ -233,7 +223,6 @@ OC.L10N.register(
"Cancel reply" : "Antwort abbrechen",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"Created:" : "Erstellt:",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
@@ -245,64 +234,29 @@ OC.L10N.register(
"Choose attachment" : "Anhang auswählen",
"Assign a due date to this card…" : "Dieser Karte ein Fälligkeitsdatum zuweisen…",
"Set a due date" : "Ein Ablaufdatum setzen",
"Add due date" : "Fälligkeitsdatum hinzufügen",
"Choose a date" : "Datum auswählen",
"Remove due date" : "Fälligkeitsdatum löschen",
"Completed" : "Fertiggestellt",
"Due at:" : "Fallig am:",
"Not completed" : "Nicht fertiggestellt",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Select Date" : "Datum auswählen",
"Set due date for later today" : "Fälligkeitsdatum auf später heute setzen",
"Set due date for tomorrow" : "Fälligkeitsdatum auf morgen setzen",
"Set due date for this weekend" : "Fälligkeitsdatum auf kommendes Wochenende setzen",
"Set due date for next week" : "Fälligkeitsdatum auf nächste Woche setzen",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"Next week" : "Nächste Woche",
"Next month" : "Nächsten Monat",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Create a new tag:" : "Neues Schlagwort erstellen:",
"(group)" : "(Gruppe)",
"Next week {timeLocale}" : "Nächste Woche {timeLocale}",
"Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten",
"Card details" : "Karten-Details",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als unerledigt markieren",
"Mark as done" : "Als erledigt markieren",
"Move card" : "Karte verschieben",
"Card details" : "Karten-Details",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a list" : "Eine Liste auswählen",
"List is empty" : "Liste ist leer",
"Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben",
"Keyboard shortcuts" : "Tastaturkürzel",
"Speed up using Deck with simple shortcuts." : "Beschleunigen Sie die Verwendung von Deck mit einfachen Tastaturkürzeln.",
"Board actions" : "Board-Aktionen",
"Keyboard shortcut" : "Tastaturkürzel",
"Action" : "Aktion",
"Shift" : "Umschalttaste",
"Scroll" : "Scrollen",
"Scroll sideways" : "Seitwärts scrollen",
"Navigate between cards" : "Zwischen Karten navigieren",
"Esc" : "Esc",
"Close card details" : "Karten-Details schließen",
"Ctrl" : "Strg",
"Search" : "Suche",
"Show card filters" : "Kartenfilter anzeigen",
"Clear card filters" : "Kartenfilter löschen",
"Show help dialog" : "Hilfedialog anzeigen",
"Card actions" : "Kartenaktionen",
"The following actions can be triggered on the currently highlighted card" : "Die folgenden Aktionen können für die aktuell markierten Karte ausgelöst werden",
"Enter" : "Enter",
"Space" : "Leerzeichen",
"Open card details" : "Kartendetails öffnen",
"Edit the card title" : "Kartentitel bearbeiten",
"Assign yourself to the current card" : "Weisen Sie sich der aktuellen Karte zu",
"Archive/unarchive the current card" : "Die aktuelle Karte archivieren/dearchivieren",
"Mark card as completed/not completed" : "Karte als abgeschlossen/nicht abgeschlossen markieren",
"Open card menu" : "Kartenmenü öffnen",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Ihnen geteilt",
@@ -332,12 +286,9 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Möchten Sie das Board {title} wirklich löschen? Dadurch werden alle Daten dieses Boards einschließlich archivierter Karten gelöscht.",
"Delete the board?" : "Das Board löschen?",
"Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
"No results found" : "Keine Ergebnisse gefunden",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ",
"{stack} in {board}" : "{stack} auf {board}",
"Click to expand description" : "Klicken, um die Beschreibung zu erweitern",
@@ -352,13 +303,9 @@ OC.L10N.register(
"Open card" : "Karte öffnen",
"Close" : "Schließen",
"No upcoming cards" : "Keine anstehenden Karten",
"upcoming cards today" : "Heute anstehende Karten",
"upcoming cards tomorrow" : "Morgen anstehende Karten",
"upcoming cards" : "Anstehende Karten",
"New card" : "Neue Karte",
"Due on {date}" : "Fällig am {date}",
"Tomorrow {timeLocale}" : "Morgen {timeLocale}",
"Later today {timeLocale}" : "Später heute {timeLocale}",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Create a card" : "Eine Karte erstellen",
@@ -372,12 +319,10 @@ OC.L10N.register(
"Share" : "Freigeben",
"A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde innerhalb der Deck-App geändert",
"Timeline" : "Zeitachse",
"Add a new list" : "Eine neue Liste hinzufügen",
"Assign to users" : "Benutzern zuweisen",
"Due date" : "Fälligkeitsdatum",
"Next week" : "Nächste Woche",
"Next month" : "Nächsten Monat",
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Assign yorself to the current card" : "Weisen Sie sich der aktuellen Karte zu"
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden."
},
"nplurals=2; plural=(n != 1);");

View File

@@ -35,10 +35,6 @@
"{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",
"You have unarchived card {card} in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} auf dem Board {board} dearchiviert",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} dearchiviert",
"You have marked the card {card} as done in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} im Board {board} als erledigt markiert",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} im Board {board} als erledigt markiert",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} im Board {board} als unerledigt markiert",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} im Board {board} als unerledigt markiert",
"You have removed the due date of card {card}" : "Sie haben das Fälligkeitsdatum der Karte {card} entfernt",
"{user} has removed the due date of card {card}" : "{user} hat das Fälligkeitsdatum der Karte {card} entfernt",
"You have set the due date of card {card} to {after}" : "Sie haben das Fälligkeitsdatum der Karte {card} auf {after} gesetzt",
@@ -70,8 +66,6 @@
"A <strong>board, list or card</strong> was changed" : "Ein <strong>Bord, eine Liste oder Karte</strong> wurde geändert",
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
"A <strong>card description</strong> has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde geändert",
"Cards due today" : "Karten die heute fällig sind",
"Cards due tomorrow" : "Karten die morgen fällig sind",
"Upcoming cards" : "Anstehende Karten",
"Load more" : "Mehr laden",
"Personal" : "Persönlich",
@@ -150,20 +144,16 @@
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"View Modes" : "Ansichtsmodi",
"Toggle View Modes" : "Ansichtsmodi wechseln",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Hide card cover images" : "Kartencoverbilder ausblenden",
"Show card cover images" : "Kartencoverbilder anzeigen",
"Open details" : "Details öffnen",
"Details" : "Details",
"Currently present people" : "Aktuell Anwesende",
"Loading board" : "Lade Board",
"Board not found" : "Board nicht gefunden",
"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",
"Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen",
"Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte",
@@ -231,7 +221,6 @@
"Cancel reply" : "Antwort abbrechen",
"Reply" : "Antworten",
"Update" : "Aktualisieren",
"Created:" : "Erstellt:",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
@@ -243,64 +232,29 @@
"Choose attachment" : "Anhang auswählen",
"Assign a due date to this card…" : "Dieser Karte ein Fälligkeitsdatum zuweisen…",
"Set a due date" : "Ein Ablaufdatum setzen",
"Add due date" : "Fälligkeitsdatum hinzufügen",
"Choose a date" : "Datum auswählen",
"Remove due date" : "Fälligkeitsdatum löschen",
"Completed" : "Fertiggestellt",
"Due at:" : "Fallig am:",
"Not completed" : "Nicht fertiggestellt",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Select Date" : "Datum auswählen",
"Set due date for later today" : "Fälligkeitsdatum auf später heute setzen",
"Set due date for tomorrow" : "Fälligkeitsdatum auf morgen setzen",
"Set due date for this weekend" : "Fälligkeitsdatum auf kommendes Wochenende setzen",
"Set due date for next week" : "Fälligkeitsdatum auf nächste Woche setzen",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"Next week" : "Nächste Woche",
"Next month" : "Nächsten Monat",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Create a new tag:" : "Neues Schlagwort erstellen:",
"(group)" : "(Gruppe)",
"Next week {timeLocale}" : "Nächste Woche {timeLocale}",
"Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten",
"Card details" : "Karten-Details",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als unerledigt markieren",
"Mark as done" : "Als erledigt markieren",
"Move card" : "Karte verschieben",
"Card details" : "Karten-Details",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a list" : "Eine Liste auswählen",
"List is empty" : "Liste ist leer",
"Card deleted" : "Karte gelöscht",
"seconds ago" : "Gerade eben",
"Keyboard shortcuts" : "Tastaturkürzel",
"Speed up using Deck with simple shortcuts." : "Beschleunigen Sie die Verwendung von Deck mit einfachen Tastaturkürzeln.",
"Board actions" : "Board-Aktionen",
"Keyboard shortcut" : "Tastaturkürzel",
"Action" : "Aktion",
"Shift" : "Umschalttaste",
"Scroll" : "Scrollen",
"Scroll sideways" : "Seitwärts scrollen",
"Navigate between cards" : "Zwischen Karten navigieren",
"Esc" : "Esc",
"Close card details" : "Karten-Details schließen",
"Ctrl" : "Strg",
"Search" : "Suche",
"Show card filters" : "Kartenfilter anzeigen",
"Clear card filters" : "Kartenfilter löschen",
"Show help dialog" : "Hilfedialog anzeigen",
"Card actions" : "Kartenaktionen",
"The following actions can be triggered on the currently highlighted card" : "Die folgenden Aktionen können für die aktuell markierten Karte ausgelöst werden",
"Enter" : "Enter",
"Space" : "Leerzeichen",
"Open card details" : "Kartendetails öffnen",
"Edit the card title" : "Kartentitel bearbeiten",
"Assign yourself to the current card" : "Weisen Sie sich der aktuellen Karte zu",
"Archive/unarchive the current card" : "Die aktuelle Karte archivieren/dearchivieren",
"Mark card as completed/not completed" : "Karte als abgeschlossen/nicht abgeschlossen markieren",
"Open card menu" : "Kartenmenü öffnen",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Ihnen geteilt",
@@ -330,12 +284,9 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Möchten Sie das Board {title} wirklich löschen? Dadurch werden alle Daten dieses Boards einschließlich archivierter Karten gelöscht.",
"Delete the board?" : "Das Board löschen?",
"Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
"No results found" : "Keine Ergebnisse gefunden",
"This weekend {timeLocale}" : "Dieses Wochenende {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck-Board {name}\n* Zuletzt geändert am {lastMod} ",
"{stack} in {board}" : "{stack} auf {board}",
"Click to expand description" : "Klicken, um die Beschreibung zu erweitern",
@@ -350,13 +301,9 @@
"Open card" : "Karte öffnen",
"Close" : "Schließen",
"No upcoming cards" : "Keine anstehenden Karten",
"upcoming cards today" : "Heute anstehende Karten",
"upcoming cards tomorrow" : "Morgen anstehende Karten",
"upcoming cards" : "Anstehende Karten",
"New card" : "Neue Karte",
"Due on {date}" : "Fällig am {date}",
"Tomorrow {timeLocale}" : "Morgen {timeLocale}",
"Later today {timeLocale}" : "Später heute {timeLocale}",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Create a card" : "Eine Karte erstellen",
@@ -370,12 +317,10 @@
"Share" : "Freigeben",
"A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde innerhalb der Deck-App geändert",
"Timeline" : "Zeitachse",
"Add a new list" : "Eine neue Liste hinzufügen",
"Assign to users" : "Benutzern zuweisen",
"Due date" : "Fälligkeitsdatum",
"Next week" : "Nächste Woche",
"Next month" : "Nächsten Monat",
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Assign yorself to the current card" : "Weisen Sie sich der aktuellen Karte zu"
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -149,9 +149,9 @@ OC.L10N.register(
"Details" : "Λεπτομέρειες",
"Currently present people" : "Παρόντες αυτή τη στιγμή",
"Loading board" : "Φόρτωση πίνακα",
"Board not found" : "Ο πίνακας δεν βρέθηκε",
"No lists available" : "Δεν υπάρχουν διαθέσιμες λίστες",
"Create a new list to add cards to this board" : "Δημιουργήστε νέα λίστα για να προσθέσετε καρτέλες σε αυτό τον πίνακα.",
"Board not found" : "Ο πίνακας δεν βρέθηκε",
"Sharing" : "Διαμοιρασμός",
"Tags" : "Ετικέτες",
"Deleted items" : "Διαγραμμένα αντικείμενα",
@@ -219,7 +219,6 @@ OC.L10N.register(
"Cancel reply" : "Ακύρωση απάντησης",
"Reply" : "Απάντηση",
"Update" : "Ενημέρωση",
"Created:" : "Δημιουργήθηκε:",
"Description" : "Περιγραφή",
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
"(Saving…)" : "(Αποθήκευση...)",
@@ -231,32 +230,28 @@ OC.L10N.register(
"Choose attachment" : "Επιλογή συνημμένου",
"Set a due date" : "Καθορίστε ημερομηνίας λήξης",
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
"Completed" : "Ολοκληρωμένες",
"Unarchive card" : "Αναίρεση αρχειοθέτησης καρτέλας",
"Archive card" : "Αρχειοθέτηση καρτέλας",
"Select Date" : "Επιλέξτε ημερομηνία",
"Today" : "Σήμερα",
"Tomorrow" : "Αύριο",
"Next week" : "Επόμενη εβδομάδα",
"Next month" : "Επόμενος μήνας",
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
"(group)" : "(ομάδα)",
"Todo items" : "Στοιχεία todo",
"{count} comments, {unread} unread" : "{count} σχόλια, {unread} μη αναγνωσμένα",
"Edit card title" : "Επεξεργασία τίτλου κάρτας",
"Card details" : "Λεπτομέρειες καρτέλας",
"Assign to me" : "Ανάθεση σε εμένα",
"Unassign myself" : "Αποδέσμευσή μου",
"Mark as done" : "Σήμανση ως ολοκληρωμένου",
"Move card" : "Μετακίνηση καρτέλας",
"Card details" : "Λεπτομέρειες καρτέλας",
"Unarchive card" : "Αναίρεση αρχειοθέτησης καρτέλας",
"Archive card" : "Αρχειοθέτηση καρτέλας",
"Delete card" : "Διαγραφή καρτέλας",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Select a list" : "Επιλέξτε μια λίστα",
"List is empty" : "Η λίστα είναι κενή",
"Card deleted" : "Η καρτέλα διαγράφηκε",
"seconds ago" : " δευτερόλεπτα πριν ",
"Keyboard shortcuts" : "Συντομεύσεις πληκτρολογίου",
"Keyboard shortcut" : "Συντόμευση πλητρολογίου",
"Action" : "Ενέργεια",
"Shift" : "Shift",
"Ctrl" : "Ctrl",
"Search" : "Αναζήτηση",
"All boards" : "Όλοι οι πίνακες",
"Archived boards" : "Αρχειοθέτηση πινάκων ",
"Shared with you" : "Διαμοιρασμένα μαζί σας",
@@ -283,8 +278,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Αυτό θα διαγράψει όλα τα δεδομένα του πίνακα συμπεριλαμβανομένων και των αρχειοθετημένων καρτών.",
"Delete the board?" : "Διαγραφή του πίνακα;",
"Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο",
"Today" : "Σήμερα",
"Tomorrow" : "Αύριο",
"No due" : "Χωρίς λήξη",
"Search for {searchQuery} in all boards" : "Αναζήτηση για {searchQuery} σε όλους τους πίνακες",
"No results found" : "Δεν βρέθηκαν αποτελέσματα",
@@ -317,10 +310,9 @@ OC.L10N.register(
"Share" : "Μοιραστείτε",
"A <strong>card description</strong> inside the Deck app has been changed" : "Η <strong>περιγραφή καρτέλας </strong>στην εφαρμογή Deck άλλαξε",
"Timeline" : "Χρονολόγιο",
"Add a new list" : "Προσθήκη νέας λίστας",
"Assign to users" : "Ανάθεση σε χρήστες",
"Due date" : "Ημερομηνία λήξης",
"Next week" : "Επόμενη εβδομάδα",
"Next month" : "Επόμενος μήνας",
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής deck σε ομάδες",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους."
},

View File

@@ -147,9 +147,9 @@
"Details" : "Λεπτομέρειες",
"Currently present people" : "Παρόντες αυτή τη στιγμή",
"Loading board" : "Φόρτωση πίνακα",
"Board not found" : "Ο πίνακας δεν βρέθηκε",
"No lists available" : "Δεν υπάρχουν διαθέσιμες λίστες",
"Create a new list to add cards to this board" : "Δημιουργήστε νέα λίστα για να προσθέσετε καρτέλες σε αυτό τον πίνακα.",
"Board not found" : "Ο πίνακας δεν βρέθηκε",
"Sharing" : "Διαμοιρασμός",
"Tags" : "Ετικέτες",
"Deleted items" : "Διαγραμμένα αντικείμενα",
@@ -217,7 +217,6 @@
"Cancel reply" : "Ακύρωση απάντησης",
"Reply" : "Απάντηση",
"Update" : "Ενημέρωση",
"Created:" : "Δημιουργήθηκε:",
"Description" : "Περιγραφή",
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
"(Saving…)" : "(Αποθήκευση...)",
@@ -229,32 +228,28 @@
"Choose attachment" : "Επιλογή συνημμένου",
"Set a due date" : "Καθορίστε ημερομηνίας λήξης",
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
"Completed" : "Ολοκληρωμένες",
"Unarchive card" : "Αναίρεση αρχειοθέτησης καρτέλας",
"Archive card" : "Αρχειοθέτηση καρτέλας",
"Select Date" : "Επιλέξτε ημερομηνία",
"Today" : "Σήμερα",
"Tomorrow" : "Αύριο",
"Next week" : "Επόμενη εβδομάδα",
"Next month" : "Επόμενος μήνας",
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
"(group)" : "(ομάδα)",
"Todo items" : "Στοιχεία todo",
"{count} comments, {unread} unread" : "{count} σχόλια, {unread} μη αναγνωσμένα",
"Edit card title" : "Επεξεργασία τίτλου κάρτας",
"Card details" : "Λεπτομέρειες καρτέλας",
"Assign to me" : "Ανάθεση σε εμένα",
"Unassign myself" : "Αποδέσμευσή μου",
"Mark as done" : "Σήμανση ως ολοκληρωμένου",
"Move card" : "Μετακίνηση καρτέλας",
"Card details" : "Λεπτομέρειες καρτέλας",
"Unarchive card" : "Αναίρεση αρχειοθέτησης καρτέλας",
"Archive card" : "Αρχειοθέτηση καρτέλας",
"Delete card" : "Διαγραφή καρτέλας",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Select a list" : "Επιλέξτε μια λίστα",
"List is empty" : "Η λίστα είναι κενή",
"Card deleted" : "Η καρτέλα διαγράφηκε",
"seconds ago" : " δευτερόλεπτα πριν ",
"Keyboard shortcuts" : "Συντομεύσεις πληκτρολογίου",
"Keyboard shortcut" : "Συντόμευση πλητρολογίου",
"Action" : "Ενέργεια",
"Shift" : "Shift",
"Ctrl" : "Ctrl",
"Search" : "Αναζήτηση",
"All boards" : "Όλοι οι πίνακες",
"Archived boards" : "Αρχειοθέτηση πινάκων ",
"Shared with you" : "Διαμοιρασμένα μαζί σας",
@@ -281,8 +276,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Αυτό θα διαγράψει όλα τα δεδομένα του πίνακα συμπεριλαμβανομένων και των αρχειοθετημένων καρτών.",
"Delete the board?" : "Διαγραφή του πίνακα;",
"Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο",
"Today" : "Σήμερα",
"Tomorrow" : "Αύριο",
"No due" : "Χωρίς λήξη",
"Search for {searchQuery} in all boards" : "Αναζήτηση για {searchQuery} σε όλους τους πίνακες",
"No results found" : "Δεν βρέθηκαν αποτελέσματα",
@@ -315,10 +308,9 @@
"Share" : "Μοιραστείτε",
"A <strong>card description</strong> inside the Deck app has been changed" : "Η <strong>περιγραφή καρτέλας </strong>στην εφαρμογή Deck άλλαξε",
"Timeline" : "Χρονολόγιο",
"Add a new list" : "Προσθήκη νέας λίστας",
"Assign to users" : "Ανάθεση σε χρήστες",
"Due date" : "Ημερομηνία λήξης",
"Next week" : "Επόμενη εβδομάδα",
"Next month" : "Επόμενος μήνας",
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής deck σε ομάδες",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους."
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -37,10 +37,6 @@ OC.L10N.register(
"{user} has archived card {card} in list {stack} on board {board}" : "{user} has archived card {card} in list {stack} on board {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "You have unarchived card {card} in list {stack} on board {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} has unarchived card {card} in list {stack} on board {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "You have marked the card {card} as done in list {stack} on board {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} has marked card {card} as done in list {stack} on board {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "You have marked the card {card} as undone in list {stack} on board {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} has marked the card {card} as undone in list {stack} on board {board}",
"You have removed the due date of card {card}" : "You have removed the due date of card {card}",
"{user} has removed the due date of card {card}" : "{user} has removed the due date of card {card}",
"You have set the due date of card {card} to {after}" : "You have set the due date of card {card} to {after}",
@@ -72,8 +68,6 @@ OC.L10N.register(
"A <strong>board, list or card</strong> was changed" : "A <strong>board, list or card</strong> was changed",
"A <strong>comment</strong> was created on a card" : "A <strong>comment</strong> was created on a card",
"A <strong>card description</strong> has been changed" : "A <strong>card description</strong> has been changed",
"Cards due today" : "Cards due today",
"Cards due tomorrow" : "Cards due tomorrow",
"Upcoming cards" : "Upcoming cards",
"Load more" : "Load more",
"Personal" : "Personal",
@@ -152,20 +146,16 @@ OC.L10N.register(
"Next 30 days" : "Next 30 days",
"No due date" : "No due date",
"Clear filter" : "Clear filter",
"View Modes" : "View Modes",
"Toggle View Modes" : "Toggle View Modes",
"Hide archived cards" : "Hide archived cards",
"Show archived cards" : "Show archived cards",
"Toggle compact mode" : "Toggle compact mode",
"Hide card cover images" : "Hide card cover images",
"Show card cover images" : "Show card cover images",
"Open details" : "Open details",
"Details" : "Details",
"Currently present people" : "Currently present people",
"Loading board" : "Loading board",
"Board not found" : "Board not found",
"No lists available" : "No lists available",
"Create a new list to add cards to this board" : "Create a new list to add cards to this board",
"Board not found" : "Board not found",
"Sharing" : "Sharing",
"Tags" : "Tags",
"Deleted items" : "Deleted items",
@@ -233,7 +223,6 @@ OC.L10N.register(
"Cancel reply" : "Cancel reply",
"Reply" : "Reply",
"Update" : "Update",
"Created:" : "Created:",
"Description" : "Description",
"(Unsaved)" : "(Unsaved)",
"(Saving…)" : "(Saving…)",
@@ -245,64 +234,29 @@ OC.L10N.register(
"Choose attachment" : "Choose attachment",
"Assign a due date to this card…" : "Assign a due date to this card…",
"Set a due date" : "Set a due date",
"Add due date" : "Add due date",
"Choose a date" : "Choose a date",
"Remove due date" : "Remove due date",
"Completed" : "Completed",
"Due at:" : "Due at:",
"Not completed" : "Not completed",
"Unarchive card" : "Unarchive card",
"Archive card" : "Archive card",
"Select Date" : "Select Date",
"Set due date for later today" : "Set due date for later today",
"Set due date for tomorrow" : "Set due date for tomorrow",
"Set due date for this weekend" : "Set due date for this weekend",
"Set due date for next week" : "Set due date for next week",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
"Next week" : "Next week",
"Next month" : "Next month",
"Assign a tag to this card…" : "Assign a tag to this card…",
"Create a new tag:" : "Create a new tag:",
"(group)" : "(group)",
"Next week {timeLocale}" : "Next week {timeLocale}",
"Todo items" : "Todo items",
"{count} comments, {unread} unread" : "{count} comments, {unread} unread",
"Edit card title" : "Edit card title",
"Card details" : "Card details",
"Assign to me" : "Assign to me",
"Unassign myself" : "Unassign myself",
"Mark as not done" : "Mark as not done",
"Mark as done" : "Mark as done",
"Move card" : "Move card",
"Card details" : "Card details",
"Unarchive card" : "Unarchive card",
"Archive card" : "Archive card",
"Delete card" : "Delete card",
"Move card to another board" : "Move card to another board",
"Select a list" : "Select a list",
"List is empty" : "List is empty",
"Card deleted" : "Card deleted",
"seconds ago" : "seconds ago",
"Keyboard shortcuts" : "Keyboard shortcuts",
"Speed up using Deck with simple shortcuts." : "Speed up using Deck with simple shortcuts.",
"Board actions" : "Board actions",
"Keyboard shortcut" : "Keyboard shortcut",
"Action" : "Action",
"Shift" : "Shift",
"Scroll" : "Scroll",
"Scroll sideways" : "Scroll sideways",
"Navigate between cards" : "Navigate between cards",
"Esc" : "Esc",
"Close card details" : "Close card details",
"Ctrl" : "Ctrl",
"Search" : "Search",
"Show card filters" : "Show card filters",
"Clear card filters" : "Clear card filters",
"Show help dialog" : "Show help dialog",
"Card actions" : "Card actions",
"The following actions can be triggered on the currently highlighted card" : "The following actions can be triggered on the currently highlighted card",
"Enter" : "Enter",
"Space" : "Space",
"Open card details" : "Open card details",
"Edit the card title" : "Edit the card title",
"Assign yourself to the current card" : "Assign yourself to the current card",
"Archive/unarchive the current card" : "Archive/unarchive the current card",
"Mark card as completed/not completed" : "Mark card as completed/not completed",
"Open card menu" : "Open card menu",
"All boards" : "All boards",
"Archived boards" : "Archived boards",
"Shared with you" : "Shared with you",
@@ -332,12 +286,9 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards.",
"Delete the board?" : "Delete the board?",
"Loading filtered view" : "Loading filtered view",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
"No due" : "No due",
"Search for {searchQuery} in all boards" : "Search for {searchQuery} in all boards",
"No results found" : "No results found",
"This weekend {timeLocale}" : "This weekend {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck board {name}\n* Last modified on {lastMod}",
"{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Click to expand description",
@@ -352,13 +303,9 @@ OC.L10N.register(
"Open card" : "Open card",
"Close" : "Close",
"No upcoming cards" : "No upcoming cards",
"upcoming cards today" : "upcoming cards today",
"upcoming cards tomorrow" : "upcoming cards tomorrow",
"upcoming cards" : "upcoming cards",
"New card" : "New card",
"Due on {date}" : "Due on {date}",
"Tomorrow {timeLocale}" : "Tomorrow {timeLocale}",
"Later today {timeLocale}" : "Later today {timeLocale}",
"Link to a board" : "Link to a board",
"Link to a card" : "Link to a card",
"Create a card" : "Create a card",
@@ -372,12 +319,10 @@ OC.L10N.register(
"Share" : "Share",
"A <strong>card description</strong> inside the Deck app has been changed" : "A <strong>card description</strong> inside the Deck app has been changed",
"Timeline" : "Timeline",
"Add a new list" : "Add a new list",
"Assign to users" : "Assign to users",
"Due date" : "Due date",
"Next week" : "Next week",
"Next month" : "Next month",
"Limit deck usage of groups" : "Limit deck usage of groups",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them.",
"Assign yorself to the current card" : "Assign yorself to the current card"
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them."
},
"nplurals=2; plural=(n != 1);");

View File

@@ -35,10 +35,6 @@
"{user} has archived card {card} in list {stack} on board {board}" : "{user} has archived card {card} in list {stack} on board {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "You have unarchived card {card} in list {stack} on board {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} has unarchived card {card} in list {stack} on board {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "You have marked the card {card} as done in list {stack} on board {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} has marked card {card} as done in list {stack} on board {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "You have marked the card {card} as undone in list {stack} on board {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} has marked the card {card} as undone in list {stack} on board {board}",
"You have removed the due date of card {card}" : "You have removed the due date of card {card}",
"{user} has removed the due date of card {card}" : "{user} has removed the due date of card {card}",
"You have set the due date of card {card} to {after}" : "You have set the due date of card {card} to {after}",
@@ -70,8 +66,6 @@
"A <strong>board, list or card</strong> was changed" : "A <strong>board, list or card</strong> was changed",
"A <strong>comment</strong> was created on a card" : "A <strong>comment</strong> was created on a card",
"A <strong>card description</strong> has been changed" : "A <strong>card description</strong> has been changed",
"Cards due today" : "Cards due today",
"Cards due tomorrow" : "Cards due tomorrow",
"Upcoming cards" : "Upcoming cards",
"Load more" : "Load more",
"Personal" : "Personal",
@@ -150,20 +144,16 @@
"Next 30 days" : "Next 30 days",
"No due date" : "No due date",
"Clear filter" : "Clear filter",
"View Modes" : "View Modes",
"Toggle View Modes" : "Toggle View Modes",
"Hide archived cards" : "Hide archived cards",
"Show archived cards" : "Show archived cards",
"Toggle compact mode" : "Toggle compact mode",
"Hide card cover images" : "Hide card cover images",
"Show card cover images" : "Show card cover images",
"Open details" : "Open details",
"Details" : "Details",
"Currently present people" : "Currently present people",
"Loading board" : "Loading board",
"Board not found" : "Board not found",
"No lists available" : "No lists available",
"Create a new list to add cards to this board" : "Create a new list to add cards to this board",
"Board not found" : "Board not found",
"Sharing" : "Sharing",
"Tags" : "Tags",
"Deleted items" : "Deleted items",
@@ -231,7 +221,6 @@
"Cancel reply" : "Cancel reply",
"Reply" : "Reply",
"Update" : "Update",
"Created:" : "Created:",
"Description" : "Description",
"(Unsaved)" : "(Unsaved)",
"(Saving…)" : "(Saving…)",
@@ -243,64 +232,29 @@
"Choose attachment" : "Choose attachment",
"Assign a due date to this card…" : "Assign a due date to this card…",
"Set a due date" : "Set a due date",
"Add due date" : "Add due date",
"Choose a date" : "Choose a date",
"Remove due date" : "Remove due date",
"Completed" : "Completed",
"Due at:" : "Due at:",
"Not completed" : "Not completed",
"Unarchive card" : "Unarchive card",
"Archive card" : "Archive card",
"Select Date" : "Select Date",
"Set due date for later today" : "Set due date for later today",
"Set due date for tomorrow" : "Set due date for tomorrow",
"Set due date for this weekend" : "Set due date for this weekend",
"Set due date for next week" : "Set due date for next week",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
"Next week" : "Next week",
"Next month" : "Next month",
"Assign a tag to this card…" : "Assign a tag to this card…",
"Create a new tag:" : "Create a new tag:",
"(group)" : "(group)",
"Next week {timeLocale}" : "Next week {timeLocale}",
"Todo items" : "Todo items",
"{count} comments, {unread} unread" : "{count} comments, {unread} unread",
"Edit card title" : "Edit card title",
"Card details" : "Card details",
"Assign to me" : "Assign to me",
"Unassign myself" : "Unassign myself",
"Mark as not done" : "Mark as not done",
"Mark as done" : "Mark as done",
"Move card" : "Move card",
"Card details" : "Card details",
"Unarchive card" : "Unarchive card",
"Archive card" : "Archive card",
"Delete card" : "Delete card",
"Move card to another board" : "Move card to another board",
"Select a list" : "Select a list",
"List is empty" : "List is empty",
"Card deleted" : "Card deleted",
"seconds ago" : "seconds ago",
"Keyboard shortcuts" : "Keyboard shortcuts",
"Speed up using Deck with simple shortcuts." : "Speed up using Deck with simple shortcuts.",
"Board actions" : "Board actions",
"Keyboard shortcut" : "Keyboard shortcut",
"Action" : "Action",
"Shift" : "Shift",
"Scroll" : "Scroll",
"Scroll sideways" : "Scroll sideways",
"Navigate between cards" : "Navigate between cards",
"Esc" : "Esc",
"Close card details" : "Close card details",
"Ctrl" : "Ctrl",
"Search" : "Search",
"Show card filters" : "Show card filters",
"Clear card filters" : "Clear card filters",
"Show help dialog" : "Show help dialog",
"Card actions" : "Card actions",
"The following actions can be triggered on the currently highlighted card" : "The following actions can be triggered on the currently highlighted card",
"Enter" : "Enter",
"Space" : "Space",
"Open card details" : "Open card details",
"Edit the card title" : "Edit the card title",
"Assign yourself to the current card" : "Assign yourself to the current card",
"Archive/unarchive the current card" : "Archive/unarchive the current card",
"Mark card as completed/not completed" : "Mark card as completed/not completed",
"Open card menu" : "Open card menu",
"All boards" : "All boards",
"Archived boards" : "Archived boards",
"Shared with you" : "Shared with you",
@@ -330,12 +284,9 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards.",
"Delete the board?" : "Delete the board?",
"Loading filtered view" : "Loading filtered view",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
"No due" : "No due",
"Search for {searchQuery} in all boards" : "Search for {searchQuery} in all boards",
"No results found" : "No results found",
"This weekend {timeLocale}" : "This weekend {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Deck board {name}\n* Last modified on {lastMod}",
"{stack} in {board}" : "{stack} in {board}",
"Click to expand description" : "Click to expand description",
@@ -350,13 +301,9 @@
"Open card" : "Open card",
"Close" : "Close",
"No upcoming cards" : "No upcoming cards",
"upcoming cards today" : "upcoming cards today",
"upcoming cards tomorrow" : "upcoming cards tomorrow",
"upcoming cards" : "upcoming cards",
"New card" : "New card",
"Due on {date}" : "Due on {date}",
"Tomorrow {timeLocale}" : "Tomorrow {timeLocale}",
"Later today {timeLocale}" : "Later today {timeLocale}",
"Link to a board" : "Link to a board",
"Link to a card" : "Link to a card",
"Create a card" : "Create a card",
@@ -370,12 +317,10 @@
"Share" : "Share",
"A <strong>card description</strong> inside the Deck app has been changed" : "A <strong>card description</strong> inside the Deck app has been changed",
"Timeline" : "Timeline",
"Add a new list" : "Add a new list",
"Assign to users" : "Assign to users",
"Due date" : "Due date",
"Next week" : "Next week",
"Next month" : "Next month",
"Limit deck usage of groups" : "Limit deck usage of groups",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them.",
"Assign yorself to the current card" : "Assign yorself to the current card"
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -102,19 +102,17 @@ OC.L10N.register(
"Save" : "Konservi",
"Reply" : "Respondi",
"Update" : "Ĝisdatigi",
"Created:" : "Kreita:",
"Description" : "Priskribo",
"Formatting help" : "Helpo pri tekstaranĝo",
"Remove due date" : "Viŝi limdaton",
"Completed" : "Plenumita",
"Select Date" : "Elekti daton",
"Today" : "Hodiaŭ",
"Tomorrow" : "Morgaŭ",
"(group)" : "(grupo)",
"Unarchive card" : "Malarĥivigi karton",
"Archive card" : "Arĥivigi karton",
"Select Date" : "Elekti daton",
"(group)" : "(grupo)",
"Delete card" : "Forigi karton",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Keyboard shortcuts" : "Fulmoklavoj",
"Search" : "Serĉi",
"Archived boards" : "Arĥivigitaj tabuloj",
"Shared with you" : "Kunhavata kun vi",
"Edit board" : "Modifi tabulon",
@@ -123,8 +121,6 @@ OC.L10N.register(
"No notifications" : "Neniu sciigo",
"Delete board" : "Forigi tabulon",
"An error occurred" : "Eraro okazis",
"Today" : "Hodiaŭ",
"Tomorrow" : "Morgaŭ",
"Close" : "Malfermi",
"Link to a board" : "Ligilo al tabulo",
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita",

View File

@@ -100,19 +100,17 @@
"Save" : "Konservi",
"Reply" : "Respondi",
"Update" : "Ĝisdatigi",
"Created:" : "Kreita:",
"Description" : "Priskribo",
"Formatting help" : "Helpo pri tekstaranĝo",
"Remove due date" : "Viŝi limdaton",
"Completed" : "Plenumita",
"Select Date" : "Elekti daton",
"Today" : "Hodiaŭ",
"Tomorrow" : "Morgaŭ",
"(group)" : "(grupo)",
"Unarchive card" : "Malarĥivigi karton",
"Archive card" : "Arĥivigi karton",
"Select Date" : "Elekti daton",
"(group)" : "(grupo)",
"Delete card" : "Forigi karton",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Keyboard shortcuts" : "Fulmoklavoj",
"Search" : "Serĉi",
"Archived boards" : "Arĥivigitaj tabuloj",
"Shared with you" : "Kunhavata kun vi",
"Edit board" : "Modifi tabulon",
@@ -121,8 +119,6 @@
"No notifications" : "Neniu sciigo",
"Delete board" : "Forigi tabulon",
"An error occurred" : "Eraro okazis",
"Today" : "Hodiaŭ",
"Tomorrow" : "Morgaŭ",
"Close" : "Malfermi",
"Link to a board" : "Ligilo al tabulo",
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita",

View File

@@ -37,10 +37,6 @@ OC.L10N.register(
"{user} has archived card {card} in list {stack} on board {board}" : "{user} ha archivado la tarjeta {card} en la lista {stack} del tablero {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "Has desarchivado la tarjeta {card} en la lista {stack} del tablero {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} ha desarchivado la tarjeta {card} en la lista {stack} del tablero {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Has marcado la tarjeta {card} como completada en la lista {stack} del tablero {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} ha marcado la tarjeta {card} como completada en la lista {stack} del tablero {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Has marcado la tarjeta {card} como no completada en la lista {stack} del tablero {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} ha marcado la tarjeta {card} como no completada en la lista {stack} del tablero {board}",
"You have removed the due date of card {card}" : "Has eliminado la fecha de vencimiento de {card}",
"{user} has removed the due date of card {card}" : "{user} ha eliminado la fecha de vencimiento de {card}",
"You have set the due date of card {card} to {after}" : "Has establecido la fecha de vencimiento de {card} como {after}",
@@ -72,8 +68,6 @@ OC.L10N.register(
"A <strong>board, list or card</strong> was changed" : "Un <strong>tablero, lista o tarjeta</strong> fue cambiada",
"A <strong>comment</strong> was created on a card" : "Un <strong>comentario</strong> ha sido creado en una tarjeta",
"A <strong>card description</strong> has been changed" : "Una <strong>descripción de tarjeta</strong> ha sido cambiada",
"Cards due today" : "Tarjetas que vencen hoy",
"Cards due tomorrow" : "Tarjetas que vencen mañana",
"Upcoming cards" : "Próximas tarjetas",
"Load more" : "Cargar más",
"Personal" : "Personal",
@@ -152,20 +146,16 @@ OC.L10N.register(
"Next 30 days" : "Siguientes 30 días",
"No due date" : "Sin fecha de vencimiento",
"Clear filter" : "Borrar filtro",
"View Modes" : "Modos de visualización",
"Toggle View Modes" : "Alternar modos de visualización",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Toggle compact mode" : "Mostrar/ocultar modo compacto",
"Hide card cover images" : "Ocultar la imagen principal de las tarjetas",
"Show card cover images" : "Mostrar la imagen principal de las tarjetas",
"Open details" : "Abrir detalles",
"Details" : "Detalles",
"Currently present people" : "Personas presentes actualmente",
"Loading board" : "Cargando tablero",
"Board not found" : "Tablero no encontrado",
"No lists available" : "No hay listas disponibles",
"Create a new list to add cards to this board" : "Crea una lista nueva para añadir tarjetas a este tablero",
"Board not found" : "Tablero no encontrado",
"Sharing" : "Compartir",
"Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados",
@@ -233,7 +223,6 @@ OC.L10N.register(
"Cancel reply" : "Cancelar respuesta",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)",
@@ -245,46 +234,29 @@ OC.L10N.register(
"Choose attachment" : "Escoger adjunto",
"Assign a due date to this card…" : "Asignar una fecha de caducidad a esta tarjeta…",
"Set a due date" : "Fijar una fecha límite",
"Add due date" : "Añadir fecha de vencimiento",
"Choose a date" : "Elige una fecha",
"Remove due date" : "Eliminar fecha límite",
"Completed" : "Completado",
"Due at:" : "Vence el:",
"Not completed" : "No completado",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Select Date" : "Seleccione la fecha",
"Set due date for later today" : "Establecer hoy como fecha de vencimiento, más tarde",
"Set due date for tomorrow" : "Establecer mañana como fecha de vencimiento",
"Set due date for this weekend" : "Establecer este fin de semana como fecha de vencimiento",
"Set due date for next week" : "Establecer la próxima semana como fecha de vencimiento",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Create a new tag:" : "Crear una nueva etiqueta:",
"(group)" : "(grupo)",
"Next week {timeLocale}" : "Próxima semana {timeLocale}",
"Todo items" : "Ítems pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar el título de la tarjeta",
"Card details" : "Detalles de la tarjeta",
"Assign to me" : "Asignarme a mí",
"Unassign myself" : "Desasignarme a mí mismo",
"Mark as not done" : "Marcar como no completado",
"Mark as done" : "Marcar como hecho",
"Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Select a list" : "Seleccionar una lista",
"List is empty" : "La lista está vacía",
"Card deleted" : "Tarjeta borrada",
"seconds ago" : "hace unos segundos",
"Keyboard shortcuts" : "Atajos de teclado",
"Keyboard shortcut" : "Atajo de teclado",
"Action" : "Acción",
"Shift" : "Mayús",
"Ctrl" : "Ctrl",
"Search" : "Buscar",
"Enter" : "Enter",
"Space" : "Espacio",
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido contigo",
@@ -314,12 +286,9 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "¿Está seguro de querer eliminar el tablero {title}? Esto eliminará todos los datos del tablero incluyendo las tarjetas archivadas.",
"Delete the board?" : "¿Borrar el tablero?",
"Loading filtered view" : "Cargando vista filtrada",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"No due" : "Sin finalizar",
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",
"No results found" : "No se encontraron resultados",
"This weekend {timeLocale}" : "Este fin de semana {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Tablero Deck {name}\n* Última modificación en {lastMod}",
"{stack} in {board}" : "{stack} en {board}",
"Click to expand description" : "Pulse para expandir la descripción",
@@ -334,13 +303,9 @@ OC.L10N.register(
"Open card" : "Abrir tarjeta",
"Close" : "Cerrar",
"No upcoming cards" : "No hay tarjetas próximas",
"upcoming cards today" : "próximas tarjetas hoy",
"upcoming cards tomorrow" : "próximas tarjetas mañana",
"upcoming cards" : "próximas tarjetas",
"New card" : "Nueva tarjeta",
"Due on {date}" : "Vence en {date}",
"Tomorrow {timeLocale}" : "Mañana {timeLocale}",
"Later today {timeLocale}" : "Hoy, más tarde {timeLocale}",
"Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta",
"Create a card" : "Crear una tarjeta",
@@ -354,10 +319,9 @@ OC.L10N.register(
"Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Una <strong>descripción de tarjeta</strong> dentro de la app Deck ha cambiado",
"Timeline" : "Línea de tiempo",
"Add a new list" : "Añadir una lista nueva",
"Assign to users" : "Asignar a usuarios",
"Due date" : "Fecha límite",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"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."
},

View File

@@ -35,10 +35,6 @@
"{user} has archived card {card} in list {stack} on board {board}" : "{user} ha archivado la tarjeta {card} en la lista {stack} del tablero {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "Has desarchivado la tarjeta {card} en la lista {stack} del tablero {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} ha desarchivado la tarjeta {card} en la lista {stack} del tablero {board}",
"You have marked the card {card} as done in list {stack} on board {board}" : "Has marcado la tarjeta {card} como completada en la lista {stack} del tablero {board}",
"{user} has marked card {card} as done in list {stack} on board {board}" : "{user} ha marcado la tarjeta {card} como completada en la lista {stack} del tablero {board}",
"You have marked the card {card} as undone in list {stack} on board {board}" : "Has marcado la tarjeta {card} como no completada en la lista {stack} del tablero {board}",
"{user} has marked the card {card} as undone in list {stack} on board {board}" : "{user} ha marcado la tarjeta {card} como no completada en la lista {stack} del tablero {board}",
"You have removed the due date of card {card}" : "Has eliminado la fecha de vencimiento de {card}",
"{user} has removed the due date of card {card}" : "{user} ha eliminado la fecha de vencimiento de {card}",
"You have set the due date of card {card} to {after}" : "Has establecido la fecha de vencimiento de {card} como {after}",
@@ -70,8 +66,6 @@
"A <strong>board, list or card</strong> was changed" : "Un <strong>tablero, lista o tarjeta</strong> fue cambiada",
"A <strong>comment</strong> was created on a card" : "Un <strong>comentario</strong> ha sido creado en una tarjeta",
"A <strong>card description</strong> has been changed" : "Una <strong>descripción de tarjeta</strong> ha sido cambiada",
"Cards due today" : "Tarjetas que vencen hoy",
"Cards due tomorrow" : "Tarjetas que vencen mañana",
"Upcoming cards" : "Próximas tarjetas",
"Load more" : "Cargar más",
"Personal" : "Personal",
@@ -150,20 +144,16 @@
"Next 30 days" : "Siguientes 30 días",
"No due date" : "Sin fecha de vencimiento",
"Clear filter" : "Borrar filtro",
"View Modes" : "Modos de visualización",
"Toggle View Modes" : "Alternar modos de visualización",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Toggle compact mode" : "Mostrar/ocultar modo compacto",
"Hide card cover images" : "Ocultar la imagen principal de las tarjetas",
"Show card cover images" : "Mostrar la imagen principal de las tarjetas",
"Open details" : "Abrir detalles",
"Details" : "Detalles",
"Currently present people" : "Personas presentes actualmente",
"Loading board" : "Cargando tablero",
"Board not found" : "Tablero no encontrado",
"No lists available" : "No hay listas disponibles",
"Create a new list to add cards to this board" : "Crea una lista nueva para añadir tarjetas a este tablero",
"Board not found" : "Tablero no encontrado",
"Sharing" : "Compartir",
"Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados",
@@ -231,7 +221,6 @@
"Cancel reply" : "Cancelar respuesta",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)",
@@ -243,46 +232,29 @@
"Choose attachment" : "Escoger adjunto",
"Assign a due date to this card…" : "Asignar una fecha de caducidad a esta tarjeta…",
"Set a due date" : "Fijar una fecha límite",
"Add due date" : "Añadir fecha de vencimiento",
"Choose a date" : "Elige una fecha",
"Remove due date" : "Eliminar fecha límite",
"Completed" : "Completado",
"Due at:" : "Vence el:",
"Not completed" : "No completado",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Select Date" : "Seleccione la fecha",
"Set due date for later today" : "Establecer hoy como fecha de vencimiento, más tarde",
"Set due date for tomorrow" : "Establecer mañana como fecha de vencimiento",
"Set due date for this weekend" : "Establecer este fin de semana como fecha de vencimiento",
"Set due date for next week" : "Establecer la próxima semana como fecha de vencimiento",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Create a new tag:" : "Crear una nueva etiqueta:",
"(group)" : "(grupo)",
"Next week {timeLocale}" : "Próxima semana {timeLocale}",
"Todo items" : "Ítems pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar el título de la tarjeta",
"Card details" : "Detalles de la tarjeta",
"Assign to me" : "Asignarme a mí",
"Unassign myself" : "Desasignarme a mí mismo",
"Mark as not done" : "Marcar como no completado",
"Mark as done" : "Marcar como hecho",
"Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Select a list" : "Seleccionar una lista",
"List is empty" : "La lista está vacía",
"Card deleted" : "Tarjeta borrada",
"seconds ago" : "hace unos segundos",
"Keyboard shortcuts" : "Atajos de teclado",
"Keyboard shortcut" : "Atajo de teclado",
"Action" : "Acción",
"Shift" : "Mayús",
"Ctrl" : "Ctrl",
"Search" : "Buscar",
"Enter" : "Enter",
"Space" : "Espacio",
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido contigo",
@@ -312,12 +284,9 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "¿Está seguro de querer eliminar el tablero {title}? Esto eliminará todos los datos del tablero incluyendo las tarjetas archivadas.",
"Delete the board?" : "¿Borrar el tablero?",
"Loading filtered view" : "Cargando vista filtrada",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"No due" : "Sin finalizar",
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",
"No results found" : "No se encontraron resultados",
"This weekend {timeLocale}" : "Este fin de semana {timeLocale}",
"Deck board {name}\n* Last modified on {lastMod}" : "Tablero Deck {name}\n* Última modificación en {lastMod}",
"{stack} in {board}" : "{stack} en {board}",
"Click to expand description" : "Pulse para expandir la descripción",
@@ -332,13 +301,9 @@
"Open card" : "Abrir tarjeta",
"Close" : "Cerrar",
"No upcoming cards" : "No hay tarjetas próximas",
"upcoming cards today" : "próximas tarjetas hoy",
"upcoming cards tomorrow" : "próximas tarjetas mañana",
"upcoming cards" : "próximas tarjetas",
"New card" : "Nueva tarjeta",
"Due on {date}" : "Vence en {date}",
"Tomorrow {timeLocale}" : "Mañana {timeLocale}",
"Later today {timeLocale}" : "Hoy, más tarde {timeLocale}",
"Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta",
"Create a card" : "Crear una tarjeta",
@@ -352,10 +317,9 @@
"Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Una <strong>descripción de tarjeta</strong> dentro de la app Deck ha cambiado",
"Timeline" : "Línea de tiempo",
"Add a new list" : "Añadir una lista nueva",
"Assign to users" : "Asignar a usuarios",
"Due date" : "Fecha límite",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"Limit deck usage of groups" : "Limitar el uso de Deck a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Deck impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"

View File

@@ -41,17 +41,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -60,8 +56,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -39,17 +39,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -58,8 +54,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -72,20 +72,18 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de vencimiento",
"Completed" : "Completado",
"Select Date" : "Seleccionar fecha",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Next week" : "Proxima semana",
"Next month" : "Proximo mes",
"(group)" : "(grupo)",
"Card details" : "Detalles de la tarjeta",
"Select a list" : "Seleccionar una lista",
"seconds ago" : "segundos",
"Keyboard shortcuts" : "Atajos de teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"All boards" : "Todos los Tableros",
"Shared with you" : "Compartido con usted",
"Deck settings" : "Configuración del Tablero",
@@ -95,8 +93,6 @@ OC.L10N.register(
"No notifications" : "No hay notificaciones",
"Delete board" : "Eliminar Tablero",
"An error occurred" : "Ocurrió un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"No due" : "Sin finalizar",
"Create a new card" : "Crear una nueva tarjeta",
"Card title" : "Título de la tarjeta",
@@ -109,8 +105,6 @@ OC.L10N.register(
"Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Una <strong>descripción de tarjeta</strong> dentro de la app Deck ha cambiado",
"Due date" : "Fecha de vencimiento",
"Next week" : "Proxima semana",
"Next month" : "Proximo mes",
"Limit deck usage of groups" : "Limitar el uso del Tablero a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Tableros impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos."
},

View File

@@ -70,20 +70,18 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de vencimiento",
"Completed" : "Completado",
"Select Date" : "Seleccionar fecha",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Next week" : "Proxima semana",
"Next month" : "Proximo mes",
"(group)" : "(grupo)",
"Card details" : "Detalles de la tarjeta",
"Select a list" : "Seleccionar una lista",
"seconds ago" : "segundos",
"Keyboard shortcuts" : "Atajos de teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"All boards" : "Todos los Tableros",
"Shared with you" : "Compartido con usted",
"Deck settings" : "Configuración del Tablero",
@@ -93,8 +91,6 @@
"No notifications" : "No hay notificaciones",
"Delete board" : "Eliminar Tablero",
"An error occurred" : "Ocurrió un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"No due" : "Sin finalizar",
"Create a new card" : "Crear una nueva tarjeta",
"Card title" : "Título de la tarjeta",
@@ -107,8 +103,6 @@
"Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Una <strong>descripción de tarjeta</strong> dentro de la app Deck ha cambiado",
"Due date" : "Fecha de vencimiento",
"Next week" : "Proxima semana",
"Next month" : "Proximo mes",
"Limit deck usage of groups" : "Limitar el uso del Tablero a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Tableros impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"

View File

@@ -44,17 +44,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -63,8 +59,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -42,17 +42,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -61,8 +57,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -45,17 +45,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -64,8 +60,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -43,17 +43,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -62,8 +58,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -44,17 +44,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -63,8 +59,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -42,17 +42,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -61,8 +57,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -44,17 +44,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -63,8 +59,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -42,17 +42,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -61,8 +57,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -150,9 +150,9 @@ OC.L10N.register(
"Details" : "Detalles",
"Currently present people" : "Personas actualmente presentes",
"Loading board" : "Cargando tablero",
"Board not found" : "No se encontró el tablero",
"No lists available" : "No hay listas disponibles",
"Create a new list to add cards to this board" : "Crea una nueva lista para añadir tarjetas a este tablero",
"Board not found" : "No se encontró el tablero",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados",
@@ -220,7 +220,6 @@ OC.L10N.register(
"Cancel reply" : "Cancelar respuesta",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"(Unsaved)" : "(No guardado)",
"(Saving…)" : "(Guardando…)",
@@ -232,35 +231,28 @@ OC.L10N.register(
"Choose attachment" : "Elegir adjunto",
"Set a due date" : "Establecer una fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Not completed" : "No completado",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Select Date" : "Seleccionar fecha",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta…",
"(group)" : "(grupo)",
"Todo items" : "Elementos pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar título de la tarjeta",
"Card details" : "Detalles de la tarjeta",
"Assign to me" : "Asignarme la tarjeta",
"Unassign myself" : "Desasignarme la tarjeta",
"Mark as done" : "Marcar como hecha",
"Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta",
"Move card to another board" : "Mover tarjeta a otro tablero",
"Select a list" : "Seleccionar una lista",
"List is empty" : "La lista está vacía",
"Card deleted" : "Tarjeta eliminada",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Shift" : "Shift",
"Ctrl" : "Ctrl",
"Search" : "Buscar",
"Enter" : "Enter",
"Space" : "Espacio",
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
@@ -288,8 +280,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "¿Estás seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos de este tablero, incluidas las tarjetas archivadas.",
"Delete the board?" : "¿Eliminar el tablero?",
"Loading filtered view" : "Cargando vista filtrada",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"No due" : "Sin vencimiento",
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",
"No results found" : "No se encontraron resultados",
@@ -323,10 +313,9 @@ OC.L10N.register(
"Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Se ha cambiado una <strong>descripción de la tarjeta</strong> en la aplicación Deck",
"Timeline" : "Línea de tiempo",
"Add a new list" : "Añadir una nueva lista",
"Assign to users" : "Asignar a usuarios",
"Due date" : "Fecha de vencimiento",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"Limit deck usage of groups" : "Limitar uso de Deck a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Deck bloqueará a los usuarios que no formen parte de esos grupos para que no puedan crear sus propios tableros. Los usuarios aún podrán trabajar en tableros que se hayan compartido con ellos."
},

View File

@@ -148,9 +148,9 @@
"Details" : "Detalles",
"Currently present people" : "Personas actualmente presentes",
"Loading board" : "Cargando tablero",
"Board not found" : "No se encontró el tablero",
"No lists available" : "No hay listas disponibles",
"Create a new list to add cards to this board" : "Crea una nueva lista para añadir tarjetas a este tablero",
"Board not found" : "No se encontró el tablero",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados",
@@ -218,7 +218,6 @@
"Cancel reply" : "Cancelar respuesta",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"(Unsaved)" : "(No guardado)",
"(Saving…)" : "(Guardando…)",
@@ -230,35 +229,28 @@
"Choose attachment" : "Elegir adjunto",
"Set a due date" : "Establecer una fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Not completed" : "No completado",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Select Date" : "Seleccionar fecha",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta…",
"(group)" : "(grupo)",
"Todo items" : "Elementos pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar título de la tarjeta",
"Card details" : "Detalles de la tarjeta",
"Assign to me" : "Asignarme la tarjeta",
"Unassign myself" : "Desasignarme la tarjeta",
"Mark as done" : "Marcar como hecha",
"Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta",
"Move card to another board" : "Mover tarjeta a otro tablero",
"Select a list" : "Seleccionar una lista",
"List is empty" : "La lista está vacía",
"Card deleted" : "Tarjeta eliminada",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Shift" : "Shift",
"Ctrl" : "Ctrl",
"Search" : "Buscar",
"Enter" : "Enter",
"Space" : "Espacio",
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
@@ -286,8 +278,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "¿Estás seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos de este tablero, incluidas las tarjetas archivadas.",
"Delete the board?" : "¿Eliminar el tablero?",
"Loading filtered view" : "Cargando vista filtrada",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"No due" : "Sin vencimiento",
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",
"No results found" : "No se encontraron resultados",
@@ -321,10 +311,9 @@
"Share" : "Compartir",
"A <strong>card description</strong> inside the Deck app has been changed" : "Se ha cambiado una <strong>descripción de la tarjeta</strong> en la aplicación Deck",
"Timeline" : "Línea de tiempo",
"Add a new list" : "Añadir una nueva lista",
"Assign to users" : "Asignar a usuarios",
"Due date" : "Fecha de vencimiento",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"Limit deck usage of groups" : "Limitar uso de Deck a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Deck bloqueará a los usuarios que no formen parte de esos grupos para que no puedan crear sus propios tableros. Los usuarios aún podrán trabajar en tableros que se hayan compartido con ellos."
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"

View File

@@ -44,17 +44,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -63,8 +59,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -42,17 +42,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -61,8 +57,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -40,17 +40,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -59,8 +55,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -38,17 +38,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -57,8 +53,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -52,19 +52,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"Mark as done" : "Marcar como hecho",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Space" : "Espacio",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -74,8 +68,6 @@ OC.L10N.register(
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"An error occurred" : "Ha ocurrido un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -50,19 +50,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"Mark as done" : "Marcar como hecho",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Space" : "Espacio",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -72,8 +66,6 @@
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"An error occurred" : "Ha ocurrido un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -40,17 +40,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -59,8 +55,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -38,17 +38,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -57,8 +53,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -40,17 +40,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -59,8 +55,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -38,17 +38,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -57,8 +53,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -41,17 +41,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -60,8 +56,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -39,17 +39,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -58,8 +54,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -40,17 +40,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -59,8 +55,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -38,17 +38,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -57,8 +53,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -41,17 +41,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -61,8 +57,6 @@ OC.L10N.register(
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"An error occurred" : "Se presentó un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -39,17 +39,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -59,8 +55,6 @@
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"An error occurred" : "Se presentó un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -44,17 +44,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -63,8 +59,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -42,17 +42,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -61,8 +57,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -40,17 +40,13 @@ OC.L10N.register(
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -59,8 +55,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -38,17 +38,13 @@
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"Created:" : "Creado:",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
"Remove due date" : "Eliminar fecha de expiración",
"Completed" : "Completado",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Keyboard shortcuts" : "Atajos del teclado",
"Keyboard shortcut" : "Atajo del teclado",
"Action" : "Acción",
"Search" : "Buscar",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero",
@@ -57,8 +53,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",
"Share" : "Compartir",
"Due date" : "Fecha de vencimiento"

View File

@@ -35,25 +35,19 @@ OC.L10N.register(
"Save" : "Salvesta",
"Reply" : "Vasta",
"Update" : "Uuenda",
"Created:" : "Loodud:",
"Description" : "Kirjeldus",
"Completed" : "Lõpetatud",
"Today" : "Täna",
"Tomorrow" : "Homme",
"Next week" : "Järgmine nädal",
"Next month" : "Järgmine kuu",
"(group)" : "(grupp)",
"Delete card" : "Kustuta kaart",
"seconds ago" : "sekundit tagasi",
"Keyboard shortcuts" : "Klaviatuuri otseteed",
"Keyboard shortcut" : "Klaviatuuri otsetee",
"Search" : "Otsi",
"Shared with you" : "Sinuga jagatud",
"No notifications" : "Märguandeid pole",
"An error occurred" : "Tekkis tõrge",
"Today" : "Täna",
"Tomorrow" : "Homme",
"Close" : "Sulge",
"Share" : "Jaga",
"Timeline" : "Ajajoon",
"Due date" : "Tähtaeg",
"Next week" : "Järgmine nädal",
"Next month" : "Järgmine kuu"
"Due date" : "Tähtaeg"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -33,25 +33,19 @@
"Save" : "Salvesta",
"Reply" : "Vasta",
"Update" : "Uuenda",
"Created:" : "Loodud:",
"Description" : "Kirjeldus",
"Completed" : "Lõpetatud",
"Today" : "Täna",
"Tomorrow" : "Homme",
"Next week" : "Järgmine nädal",
"Next month" : "Järgmine kuu",
"(group)" : "(grupp)",
"Delete card" : "Kustuta kaart",
"seconds ago" : "sekundit tagasi",
"Keyboard shortcuts" : "Klaviatuuri otseteed",
"Keyboard shortcut" : "Klaviatuuri otsetee",
"Search" : "Otsi",
"Shared with you" : "Sinuga jagatud",
"No notifications" : "Märguandeid pole",
"An error occurred" : "Tekkis tõrge",
"Today" : "Täna",
"Tomorrow" : "Homme",
"Close" : "Sulge",
"Share" : "Jaga",
"Timeline" : "Ajajoon",
"Due date" : "Tähtaeg",
"Next week" : "Järgmine nädal",
"Next month" : "Järgmine kuu"
"Due date" : "Tähtaeg"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

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