Compare commits

..

2 Commits

Author SHA1 Message Date
Jakob Röhrl
0949886348 now it's working
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-01-31 08:43:59 +01:00
Jakob Röhrl
e4ccf431a4 create several cards if the new title contains a linebreak
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-01-30 12:28:27 +01:00
276 changed files with 6676 additions and 10683 deletions

View File

@@ -130,3 +130,28 @@ trigger:
event: event:
- pull_request - pull_request
- push - push
---
kind: pipeline
name: frontend
steps:
- name: install
image: node:lts-alpine
commands:
- npm install
- name: eslint
image: node:lts-alpine
commands:
- npm run lint
- name: jsbuild
image: node:lts-alpine
commands:
- npm run build
trigger:
branch:
- master
- stable*
- vue
event:
- pull_request
- push

View File

@@ -3,6 +3,6 @@ module.exports = {
'nextcloud' 'nextcloud'
], ],
rules: { rules: {
'valid-jsdoc': ['off'], 'valid-jsdoc': ['warn'],
} }
} }

View File

@@ -1,45 +0,0 @@
name: Lint
on:
pull_request:
push:
branches:
- master
- stable*
jobs:
php:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4']
name: php${{ matrix.php-versions }} lint
steps:
- uses: actions/checkout@v2
- name: Set up php${{ matrix.php-versions }}
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Lint
run: composer run lint
node:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: ESLint
run: npm run lint

View File

@@ -23,4 +23,9 @@ jobs:
- name: build - name: build
run: | run: |
npm run build --if-present npm run build --if-present
- name: eslint
run: |
npm run lint
env:
CI: true

View File

@@ -1,28 +1,28 @@
/build/ build/
/.git .git
/.github .github
/docs/ docs/
/tests tests
/babel.config.js babel.config.js
/.editorconfig .editorconfig
/.eslintrc.js .eslintrc.js
/.nextcloudignore .nextcloudignore
/webpack.*.js webpack.*.js
/.codecov.yml .codecov.yml
/composer.json composer.json
/composer.lock composer.lock
/_config.yml _config.yml
/.drone.yml .drone.yml
/.travis.yml .travis.yml
/.eslintignore .eslintignore
/.eslintrc.yml .eslintrc.yml
/.gitignore .gitignore
/issue_template.md issue_template.md
/krankerl.toml krankerl.toml
/Makefile Makefile
/mkdocs.yml mkdocs.yml
/run-eslint.sh run-eslint.sh
/package.json package.json
/package-lock.json package-lock.json
/node_modules/ node_modules/
/src/ src/

View File

@@ -1,36 +1,6 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 1.0.0 - unreleased
## Added
- Completly rewritten frontend
- Better maintainability
- Various small fixes
- Unified user interface with Nextcloud
- Separate comment and activity timelines
- Add ability to reply to comments #1537
- Filter cards on board #1507 @jakobroehrl
- Add cards to projects #1294 @jakobroehrl
- Move cards to other boards #1242 @jakobroehrl
- Clone boards with existing stacks and labels #1221 @jakobroehrl
- Upload multiple files at once and in parallel
A huge thangs goes to our awesome community that put enourmous effort into the frontend migration:
Special thanks for contributing huge parts of the Vue.js migration:
@jakobroehrl @weeman1337 @nicolad
Testers/reporters:
@cloud2018 @putt1ck @bpcurse
Calendar/Tasks integration help:
@raimund-schluessler @georgehrke
Android app team for helping to improve our REST API:
@desperateCoder @stefan-niedermann
## 0.8.0 - 2020-01-16 ## 0.8.0 - 2020-01-16
## Added ## Added

View File

@@ -15,9 +15,6 @@ Deck is a kanban style organization tool aimed at personal planning and project
- :zap: Keep track of changes in the activity stream - :zap: Keep track of changes in the activity stream
- :rocket: Get your project organized - :rocket: Get your project organized
### Mobile apps
- The [Nextcloud Deck app for Android](https://github.com/stefan-niedermann/nextcloud-deck) is available as [beta release in the Google Play Store](https://play.google.com/apps/testing/it.niedermann.nextcloud.deck.play)
![Deck - Manage cards on your board](https://download.bitgrid.net/nextcloud/deck/screenshots/Deck.png) ![Deck - Manage cards on your board](https://download.bitgrid.net/nextcloud/deck/screenshots/Deck.png)

482
appinfo/database.xml Normal file
View File

@@ -0,0 +1,482 @@
<?xml version="1.0" encoding="UTF-8" ?>
<database>
<name>*dbname*</name>
<create>true</create>
<overwrite>false</overwrite>
<charset>utf8</charset>
<table>
<name>*dbprefix*deck_boards</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<length>4</length>
</field>
<field>
<name>title</name>
<type>text</type>
<notnull>true</notnull>
<length>100</length>
</field>
<field>
<name>owner</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>color</name>
<type>text</type>
<length>6</length>
<notnull>false</notnull>
</field>
<field>
<name>archived</name>
<type>boolean</type>
<default>false</default>
</field>
<field>
<name>deleted_at</name>
<type>integer</type>
<default>0</default>
<length>8</length>
<notnull>false</notnull>
<unsigned>true</unsigned>
</field>
<field>
<name>last_modified</name>
<type>integer</type>
<default></default>
<notnull>false</notnull>
<unsigned>true</unsigned>
</field>
</declaration>
</table>
<table>
<name>*dbprefix*deck_stacks</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<length>4</length>
</field>
<field>
<name>title</name>
<type>text</type>
<notnull>true</notnull>
<length>100</length>
</field>
<field>
<name>board_id</name>
<type>integer</type>
<length>8</length>
<notnull>true</notnull>
</field>
<field>
<name>order</name>
<type>integer</type>
<length>8</length>
<notnull>false</notnull>
</field>
<field>
<name>deleted_at</name>
<type>integer</type>
<default>0</default>
<length>8</length>
<notnull>false</notnull>
<unsigned>true</unsigned>
</field>
<field>
<name>last_modified</name>
<type>integer</type>
<default></default>
<notnull>false</notnull>
<unsigned>true</unsigned>
</field>
<index>
<name>deck_stacks_board_id_index</name>
<field>
<name>board_id</name>
</field>
</index>
<index>
<name>deck_stacks_order_index</name>
<field>
<name>order</name>
</field>
</index>
</declaration>
</table>
<table>
<name>*dbprefix*deck_cards</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<length>4</length>
</field>
<field>
<name>title</name>
<type>text</type>
<length>100</length>
<notnull>true</notnull>
</field>
<field>
<name>description</name>
<type>clob</type>
<notnull>false</notnull>
</field>
<field>
<name>description_prev</name>
<type>clob</type>
<notnull>false</notnull>
</field>
<field>
<name>stack_id</name>
<type>integer</type>
<length>8</length>
<notnull>true</notnull>
</field>
<field>
<name>type</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
<default>plain</default>
</field>
<field>
<name>last_modified</name>
<type>integer</type>
<default></default>
<notnull>false</notnull>
<unsigned>true</unsigned>
</field>
<field>
<name>last_editor</name>
<type>text</type>
<notnull>false</notnull>
<length>64</length>
</field>
<field>
<name>created_at</name>
<type>integer</type>
<default></default>
<notnull>false</notnull>
<unsigned>true</unsigned>
</field>
<field>
<name>owner</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>order</name>
<type>integer</type>
<length>8</length>
<notnull>false</notnull>
</field>
<field>
<name>archived</name>
<type>boolean</type>
<default>false</default>
</field>
<field>
<name>duedate</name>
<type>timestamp</type>
<default>0</default>
</field>
<field>
<name>notified</name>
<type>boolean</type>
<default>false</default>
</field>
<field>
<name>deleted_at</name>
<type>integer</type>
<default>0</default>
<length>8</length>
<notnull>false</notnull>
<unsigned>true</unsigned>
</field>
<index>
<name>deck_cards_stack_id_index</name>
<field>
<name>stack_id</name>
</field>
</index>
<index>
<name>deck_cards_order_index</name>
<field>
<name>order</name>
</field>
</index>
<index>
<name>deck_cards_archived_index</name>
<field>
<name>archived</name>
</field>
</index>
</declaration>
</table>
<table>
<name>*dbprefix*deck_attachment</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<length>4</length>
</field>
<field>
<name>card_id</name>
<type>integer</type>
<length>8</length>
<notnull>true</notnull>
</field>
<field>
<name>type</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>data</name>
<type>text</type>
</field>
<field>
<name>last_modified</name>
<type>integer</type>
<default/>
<length>8</length>
<notnull>false</notnull>
<unsigned>true</unsigned>
</field>
<field>
<name>created_at</name>
<type>integer</type>
<default/>
<length>8</length>
<notnull>false</notnull>
<unsigned>true</unsigned>
</field>
<field>
<name>created_by</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>deleted_at</name>
<type>integer</type>
<default>0</default>
<length>8</length>
<notnull>false</notnull>
<unsigned>true</unsigned>
</field>
</declaration>
</table>
<table>
<name>*dbprefix*deck_labels</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<length>4</length>
</field>
<field>
<name>title</name>
<type>text</type>
<notnull>false</notnull>
<length>100</length>
</field>
<field>
<name>color</name>
<type>text</type>
<length>6</length>
<notnull>false</notnull>
</field>
<field>
<name>board_id</name>
<type>integer</type>
<notnull>true</notnull>
<length>8</length>
</field>
<field>
<name>last_modified</name>
<type>integer</type>
<default></default>
<notnull>false</notnull>
<unsigned>true</unsigned>
</field>
<index>
<name>deck_labels_board_id_index</name>
<field>
<name>board_id</name>
</field>
</index>
</declaration>
</table>
<table>
<name>*dbprefix*deck_assigned_labels</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<length>4</length>
</field>
<field>
<name>label_id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<length>4</length>
</field>
<field>
<name>card_id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<length>4</length>
</field>
<index>
<name>deck_assigned_labels_idx_i</name>
<field>
<name>label_id</name>
</field>
</index>
<index>
<name>deck_assigned_labels_idx_c</name>
<field>
<name>card_id</name>
</field>
</index>
</declaration>
</table>
<table>
<name>*dbprefix*deck_assigned_users</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<length>4</length>
</field>
<field>
<name>participant</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>card_id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<length>4</length>
</field>
<index>
<name>deck_assigned_users_idx_p</name>
<field>
<name>participant</name>
</field>
</index>
<index>
<name>deck_assigned_users_idx_c</name>
<field>
<name>card_id</name>
</field>
</index>
</declaration>
</table>
<table>
<name>*dbprefix*deck_board_acl</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<autoincrement>1</autoincrement>
<length>4</length>
</field>
<field>
<name>board_id</name>
<type>integer</type>
<notnull>true</notnull>
<length>8</length>
</field>
<field>
<name>type</name>
<type>integer</type>
<notnull>true</notnull>
<length>4</length>
</field>
<field>
<name>participant</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>permission_edit</name>
<type>boolean</type>
<default>false</default>
</field>
<field>
<name>permission_share</name>
<type>boolean</type>
<default>false</default>
</field>
<field>
<name>permission_manage</name>
<type>boolean</type>
<default>false</default>
</field>
<index>
<name>deck_board_acl_uq_i</name>
<unique>true</unique>
<field>
<name>board_id</name>
<sorting>ascending</sorting>
</field>
<field>
<name>type</name>
<sorting>ascending</sorting>
</field>
<field>
<name>participant</name>
<sorting>ascending</sorting>
</field>
</index>
<index>
<name>deck_board_acl_idx_i</name>
<field>
<name>board_id</name>
</field>
</index>
</declaration>
</table>
</database>

View File

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

View File

@@ -64,7 +64,7 @@ return [
['name' => 'card#assignLabel', 'url' => '/cards/{cardId}/label/{labelId}', 'verb' => 'POST'], ['name' => 'card#assignLabel', 'url' => '/cards/{cardId}/label/{labelId}', 'verb' => 'POST'],
['name' => 'card#removeLabel', 'url' => '/cards/{cardId}/label/{labelId}', 'verb' => 'DELETE'], ['name' => 'card#removeLabel', 'url' => '/cards/{cardId}/label/{labelId}', 'verb' => 'DELETE'],
['name' => 'card#assignUser', 'url' => '/cards/{cardId}/assign', 'verb' => 'POST'], ['name' => 'card#assignUser', 'url' => '/cards/{cardId}/assign', 'verb' => 'POST'],
['name' => 'card#unassignUser', 'url' => '/cards/{cardId}/unassign', 'verb' => 'PUT'], ['name' => 'card#unassignUser', 'url' => '/cards/{cardId}/assign/{userId}', 'verb' => 'DELETE'],
['name' => 'attachment#getAll', 'url' => '/cards/{cardId}/attachments', 'verb' => 'GET'], ['name' => 'attachment#getAll', 'url' => '/cards/{cardId}/attachments', 'verb' => 'GET'],
['name' => 'attachment#create', 'url' => '/cards/{cardId}/attachment', 'verb' => 'POST'], ['name' => 'attachment#create', 'url' => '/cards/{cardId}/attachment', 'verb' => 'POST'],
@@ -122,14 +122,6 @@ return [
['name' => 'attachment_api#delete', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}', 'verb' => 'DELETE'], ['name' => 'attachment_api#delete', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}', 'verb' => 'DELETE'],
['name' => 'attachment_api#restore', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}/restore', 'verb' => 'PUT'], ['name' => 'attachment_api#restore', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}/restore', 'verb' => 'PUT'],
['name' => 'board_api#preflighted_cors', 'url' => '/api/v1.0/{path}','verb' => 'OPTIONS', 'requirements' => ['path' => '.+']], ['name' => 'board_api#preflighted_cors', 'url' => '/api/v1.0/{path}','verb' => 'OPTIONS', 'requirements' => ['path' => '.+']],
],
'ocs' => [
['name' => 'comments_api#list', 'url' => '/api/v1.0/cards/{cardId}/comments', 'verb' => 'GET'],
['name' => 'comments_api#create', 'url' => '/api/v1.0/cards/{cardId}/comments', 'verb' => 'POST'],
['name' => 'comments_api#update', 'url' => '/api/v1.0/cards/{cardId}/comments/{commentId}', 'verb' => 'PUT'],
['name' => 'comments_api#delete', 'url' => '/api/v1.0/cards/{cardId}/comments/{commentId}', 'verb' => 'DELETE'],
] ]
]; ];

View File

@@ -16,12 +16,5 @@
"christophwurst/nextcloud": "^17", "christophwurst/nextcloud": "^17",
"jakub-onderka/php-parallel-lint": "^1.0.0", "jakub-onderka/php-parallel-lint": "^1.0.0",
"phpunit/phpunit": "^8" "phpunit/phpunit": "^8"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;"
} }
} }

View File

@@ -59,9 +59,7 @@
@include icon-black-white('archive', 'deck', 1); @include icon-black-white('archive', 'deck', 1);
@include icon-black-white('circles', 'deck', 1); @include icon-black-white('circles', 'deck', 1);
@include icon-black-white('clone', 'deck', 1); @include icon-black-white('clone', 'deck', 1);
@include icon-black-white('filter', 'deck', 1);
@include icon-black-white('attach', 'deck', 1); @include icon-black-white('attach', 'deck', 1);
@include icon-black-white('reply', 'deck', 1);
.icon-toggle-compact-collapsed { .icon-toggle-compact-collapsed {
@include icon-color('toggle-view-expand', 'deck', $color-black); @include icon-color('toggle-view-expand', 'deck', $color-black);

View File

@@ -515,8 +515,6 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
| title | String | The title of the new stack | | title | String | The title of the new stack |
| type | String | Type of the card (for later use) use 'plain' for now | | type | String | Type of the card (for later use) use 'plain' for now |
| order | Integer | Order for sorting the stacks | | order | Integer | Order for sorting the stacks |
| description | String | _(optional)_ The markdown description of the card |
| duedate | timestamp | _(optional)_ The duedate of the card or null |
#### Response #### Response
@@ -938,232 +936,3 @@ For now only `deck_file` is supported as an attachment type.
##### 200 Success ##### 200 Success
# OCS API
The following endpoints are available tough 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.
## Comments
### GET /cards/{cardId}/comments - List comments
#### Request parameters
string $cardId, int $limit = 20, int $offset = 0
| Parameter | Type | Description |
| --------- | ------- | --------------------------------------- |
| cardId | Integer | The id of the card |
| limit | Integer | The maximum number of comments that should be returned, defaults to 20 |
| offset | Integer | The start offset used for pagination, defaults to 0 |
```
curl 'https://admin:admin@nextcloud/ocs/v2.php/apps/deck/api/v1.0/cards/12/comments' \
-H 'Accept: application/json' -H 'OCS-APIRequest: true'
```
#### Response
A list of comments will be provided under the `ocs.data` key. If no or no more comments are available the list will be empty.
##### 200 Success
```
{
"ocs": {
"meta": {
"status": "ok",
"statuscode": 200,
"message": "OK"
},
"data": [
{
"id": "175",
"objectId": "12",
"message": "This is a comment with a mention to @alice",
"actorId": "admin",
"actorType": "users",
"actorDisplayName": "Administrator",
"creationDateTime": "2020-03-10T10:23:07+00:00",
"mentions": [
{
"mentionId": "alice",
"mentionType": "user",
"mentionDisplayName": "alice"
}
]
}
]
}
}
```
### POST /cards/{cardId}/comments - Create a new comment
#### Request parameters
| Parameter | Type | Description |
| --------- | ------- | --------------------------------------- |
| cardId | Integer | The id of the card |
| message | String | The message of the comment, maximum length is limited to 1000 characters |
| parentId | Integer | The start offset used for pagination, defaults to null |
Mentions will be parsed by the server. The server will return a list of mentions in the response to this request as shown below.
```
curl -X POST 'https://admin:admin@nextcloud/ocs/v2.php/apps/deck/api/v1.0/cards/12/comments' \
-H 'Accept: application/json' -H 'OCS-APIRequest: true'
-H 'Content-Type: application/json;charset=utf-8'
--data '{"message":"My message to @bob","parentId":null}'
```
#### Response
A list of comments will be provided under the `ocs.data` key. If no or no more comments are available the list will be empty.
##### 200 Success
```
{
"ocs": {
"meta": {
"status": "ok",
"statuscode": 200,
"message": "OK"
},
"data": {
"id": "177",
"objectId": "13",
"message": "My message to @bob",
"actorId": "admin",
"actorType": "users",
"actorDisplayName": "Administrator",
"creationDateTime": "2020-03-10T10:30:17+00:00",
"mentions": [
{
"mentionId": "bob",
"mentionType": "user",
"mentionDisplayName": "bob"
}
]
}
}
}
```
##### 400 Bad request
A bad request response is returned if invalid input values are provided. The response message will contain details about which part was not valid.
##### 404 Not found
A not found response might be returned if:
- The card for the given cardId could not be found
- The parent comment could not be found
### PUT /cards/{cardId}/comments/{commentId} - Update a new comment
#### Request parameters
| Parameter | Type | Description |
| --------- | ------- | --------------------------------------- |
| cardId | Integer | The id of the card |
| commentId | Integer | The id of the comment |
| message | String | The message of the comment, maximum length is limited to 1000 characters |
Mentions will be parsed by the server. The server will return a list of mentions in the response to this request as shown below.
Updating comments is limited to the current user being the same as the comment author specified in the `actorId` of the comment.
```
curl -X POST 'https://admin:admin@nextcloud/ocs/v2.php/apps/deck/api/v1.0/cards/12/comments' \
-H 'Accept: application/json' -H 'OCS-APIRequest: true'
-H 'Content-Type: application/json;charset=utf-8'
--data '{"message":"My message"}'
```
#### Response
A list of comments will be provided under the `ocs.data` key. If no or no more comments are available the list will be empty.
##### 200 Success
```
{
"ocs": {
"meta": {
"status": "ok",
"statuscode": 200,
"message": "OK"
},
"data": {
"id": "177",
"objectId": "13",
"message": "My message",
"actorId": "admin",
"actorType": "users",
"actorDisplayName": "Administrator",
"creationDateTime": "2020-03-10T10:30:17+00:00",
"mentions": []
}
}
}
```
##### 400 Bad request
A bad request response is returned if invalid input values are provided. The response message will contain details about which part was not valid.
##### 404 Not found
A not found response might be returned if:
- The card for the given cardId could not be found
- The comment could not be found
### DELETE /cards/{cardId}/comments/{commentId} - Delete a comment
#### Request parameters
| Parameter | Type | Description |
| --------- | ------- | --------------------------------------- |
| cardId | Integer | The id of the card |
| commentId | Integer | The id of the comment |
Deleting comments is limited to the current user being the same as the comment author specified in the `actorId` of the comment.
```
curl -X DELETE 'https://admin:admin@nextcloud/ocs/v2.php/apps/deck/api/v1.0/cards/12/comments' \
-H 'Accept: application/json' -H 'OCS-APIRequest: true'
-H 'Content-Type: application/json;charset=utf-8'
```
#### Response
A list of comments will be provided under the `ocs.data` key. If no or no more comments are available the list will be empty.
##### 200 Success
```
{
"ocs": {
"meta": {
"status": "ok",
"statuscode": 200,
"message": "OK"
},
"data": []
}
}
```
##### 400 Bad request
A bad request response is returned if invalid input values are provided. The response message will contain details about which part was not valid.
##### 404 Not found
A not found response might be returned if:
- The card for the given cardId could not be found
- The comment could not be found

View File

@@ -1,78 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 4.2333332 4.2333335"
version="1.1"
id="svg4524"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="filter.svg">
<defs
id="defs4518" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="-13.015771"
inkscape:cy="15.433087"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1920"
inkscape:window-height="1017"
inkscape:window-x="0"
inkscape:window-y="26"
inkscape:window-maximized="1">
<sodipodi:guide
position="3.1773623,1.9016928"
orientation="0,1"
id="guide5088"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata4521">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-292.76665)">
<path
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.09337848;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="M 0.51971728,293.23203 H 3.8033853 l -1.1728849,1.45285 H 1.6418341 Z"
id="rect5069"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.05817544;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 1.6418341,294.68488 h 0.9921874 v 1.86627 L 1.637658,296.09596 Z"
id="rect5069-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16"><path d="M15 15s-.4-7.8-7-10V1L1 8l7 7v-4c5.1 0 7 4 7 4z"/></svg>

Before

Width:  |  Height:  |  Size: 128 B

View File

@@ -12,23 +12,19 @@ OC.L10N.register(
"Missing a temporary folder" : "Ontbrekende tydelike gids", "Missing a temporary folder" : "Ontbrekende tydelike gids",
"A PHP extension stopped the file upload" : "n PHP-uitbreiding het die oplaai gestaak", "A PHP extension stopped the file upload" : "n PHP-uitbreiding het die oplaai gestaak",
"Cancel" : "Kanselleer", "Cancel" : "Kanselleer",
"File already exists" : "Lêer bestaan reeds",
"Today" : "Vandag",
"Details" : "Besonderhede",
"Tags" : "Etikette", "Tags" : "Etikette",
"Can edit" : "Kan redigeer", "Can edit" : "Kan redigeer",
"Can share" : "Kan deel", "Can share" : "Kan deel",
"Delete" : "Skrap", "Delete" : "Skrap",
"Edit" : "Wysig", "Edit" : "Wysig",
"Details" : "Besonderhede",
"Due date" : "Sperdatum", "Due date" : "Sperdatum",
"Description" : "Beskrywing", "Description" : "Beskrywing",
"Comments" : "Kommentare", "Comments" : "Kommentare",
"Modified" : "Gewysig", "Modified" : "Gewysig",
"Created" : "Geskep", "Created" : "Geskep",
"Save" : "Stoor", "Save" : "Stoor",
"Reply" : "Antwoord",
"Update" : "Werk by", "Update" : "Werk by",
"seconds ago" : "sekondes gelede",
"Settings" : "Instellings", "Settings" : "Instellings",
"An error occurred" : "'n Fout het voorgekom" "An error occurred" : "'n Fout het voorgekom"
}, },

View File

@@ -10,23 +10,19 @@
"Missing a temporary folder" : "Ontbrekende tydelike gids", "Missing a temporary folder" : "Ontbrekende tydelike gids",
"A PHP extension stopped the file upload" : "n PHP-uitbreiding het die oplaai gestaak", "A PHP extension stopped the file upload" : "n PHP-uitbreiding het die oplaai gestaak",
"Cancel" : "Kanselleer", "Cancel" : "Kanselleer",
"File already exists" : "Lêer bestaan reeds",
"Today" : "Vandag",
"Details" : "Besonderhede",
"Tags" : "Etikette", "Tags" : "Etikette",
"Can edit" : "Kan redigeer", "Can edit" : "Kan redigeer",
"Can share" : "Kan deel", "Can share" : "Kan deel",
"Delete" : "Skrap", "Delete" : "Skrap",
"Edit" : "Wysig", "Edit" : "Wysig",
"Details" : "Besonderhede",
"Due date" : "Sperdatum", "Due date" : "Sperdatum",
"Description" : "Beskrywing", "Description" : "Beskrywing",
"Comments" : "Kommentare", "Comments" : "Kommentare",
"Modified" : "Gewysig", "Modified" : "Gewysig",
"Created" : "Geskep", "Created" : "Geskep",
"Save" : "Stoor", "Save" : "Stoor",
"Reply" : "Antwoord",
"Update" : "Werk by", "Update" : "Werk by",
"seconds ago" : "sekondes gelede",
"Settings" : "Instellings", "Settings" : "Instellings",
"An error occurred" : "'n Fout het voorgekom" "An error occurred" : "'n Fout het voorgekom"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -9,10 +9,6 @@ OC.L10N.register(
"No file was uploaded" : "لم يتم رفع أي ملف", "No file was uploaded" : "لم يتم رفع أي ملف",
"Missing a temporary folder" : "المجلد المؤقت غير موجود", "Missing a temporary folder" : "المجلد المؤقت غير موجود",
"Cancel" : "إلغاء", "Cancel" : "إلغاء",
"File already exists" : "الملف موجود مسبقاً",
"Today" : "اليوم",
"Details" : "التفاصيل",
"Sharing" : "المشاركة",
"Tags" : "الوسوم", "Tags" : "الوسوم",
"Timeline" : "الخيط الزمني", "Timeline" : "الخيط الزمني",
"Undo" : "تراجع", "Undo" : "تراجع",
@@ -26,10 +22,8 @@ OC.L10N.register(
"Modified" : "آخر تعديل", "Modified" : "آخر تعديل",
"Upload attachment" : "رفع المرفقات", "Upload attachment" : "رفع المرفقات",
"Save" : "حفظ", "Save" : "حفظ",
"Reply" : "رد",
"Update" : "تحديث", "Update" : "تحديث",
"Delete card" : "حذف البطاقة", "Delete card" : "حذف البطاقة",
"seconds ago" : "ثوان مضت",
"Settings" : "الإعدادات", "Settings" : "الإعدادات",
"An error occurred" : "طرأ هناك خطأ" "An error occurred" : "طرأ هناك خطأ"
}, },

View File

@@ -7,10 +7,6 @@
"No file was uploaded" : "لم يتم رفع أي ملف", "No file was uploaded" : "لم يتم رفع أي ملف",
"Missing a temporary folder" : "المجلد المؤقت غير موجود", "Missing a temporary folder" : "المجلد المؤقت غير موجود",
"Cancel" : "إلغاء", "Cancel" : "إلغاء",
"File already exists" : "الملف موجود مسبقاً",
"Today" : "اليوم",
"Details" : "التفاصيل",
"Sharing" : "المشاركة",
"Tags" : "الوسوم", "Tags" : "الوسوم",
"Timeline" : "الخيط الزمني", "Timeline" : "الخيط الزمني",
"Undo" : "تراجع", "Undo" : "تراجع",
@@ -24,10 +20,8 @@
"Modified" : "آخر تعديل", "Modified" : "آخر تعديل",
"Upload attachment" : "رفع المرفقات", "Upload attachment" : "رفع المرفقات",
"Save" : "حفظ", "Save" : "حفظ",
"Reply" : "رد",
"Update" : "تحديث", "Update" : "تحديث",
"Delete card" : "حذف البطاقة", "Delete card" : "حذف البطاقة",
"seconds ago" : "ثوان مضت",
"Settings" : "الإعدادات", "Settings" : "الإعدادات",
"An error occurred" : "طرأ هناك خطأ" "An error occurred" : "طرأ هناك خطأ"
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"

View File

@@ -15,10 +15,7 @@ OC.L10N.register(
"Could not write file to disk" : "Nun pudo escribise nel discu'l ficheru", "Could not write file to disk" : "Nun pudo escribise nel discu'l ficheru",
"A PHP extension stopped the file upload" : "Una estensión de PHP paró la xuba de ficheros", "A PHP extension stopped the file upload" : "Una estensión de PHP paró la xuba de ficheros",
"Cancel" : "Encaboxar", "Cancel" : "Encaboxar",
"File already exists" : "Yá esiste'l ficheru",
"Today" : "Güei",
"Show archived cards" : "Amosar tarxetes archivaes", "Show archived cards" : "Amosar tarxetes archivaes",
"Details" : "Detalles",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetes", "Tags" : "Etiquetes",
"Undo" : "Desfacer", "Undo" : "Desfacer",
@@ -26,16 +23,14 @@ OC.L10N.register(
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Desaniciar", "Delete" : "Desaniciar",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Description" : "Descripción", "Description" : "Descripción",
"Attachments" : "Axuntos", "Attachments" : "Axuntos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Modified" : "Modificóse'l", "Modified" : "Modificóse'l",
"Created" : "Creóse", "Created" : "Creóse",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Rempuesta",
"Update" : "Anovar", "Update" : "Anovar",
"(group)" : "(grupu)",
"seconds ago" : "hai segundos",
"Settings" : "Settings" "Settings" : "Settings"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -13,10 +13,7 @@
"Could not write file to disk" : "Nun pudo escribise nel discu'l ficheru", "Could not write file to disk" : "Nun pudo escribise nel discu'l ficheru",
"A PHP extension stopped the file upload" : "Una estensión de PHP paró la xuba de ficheros", "A PHP extension stopped the file upload" : "Una estensión de PHP paró la xuba de ficheros",
"Cancel" : "Encaboxar", "Cancel" : "Encaboxar",
"File already exists" : "Yá esiste'l ficheru",
"Today" : "Güei",
"Show archived cards" : "Amosar tarxetes archivaes", "Show archived cards" : "Amosar tarxetes archivaes",
"Details" : "Detalles",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetes", "Tags" : "Etiquetes",
"Undo" : "Desfacer", "Undo" : "Desfacer",
@@ -24,16 +21,14 @@
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Desaniciar", "Delete" : "Desaniciar",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Description" : "Descripción", "Description" : "Descripción",
"Attachments" : "Axuntos", "Attachments" : "Axuntos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Modified" : "Modificóse'l", "Modified" : "Modificóse'l",
"Created" : "Creóse", "Created" : "Creóse",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Rempuesta",
"Update" : "Anovar", "Update" : "Anovar",
"(group)" : "(grupu)",
"seconds ago" : "hai segundos",
"Settings" : "Settings" "Settings" : "Settings"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -7,9 +7,6 @@ OC.L10N.register(
"No file was uploaded" : "Heç bir fayl yüklənilmədi", "No file was uploaded" : "Heç bir fayl yüklənilmədi",
"Missing a temporary folder" : "Müvəqqəti qovluq çatışmır", "Missing a temporary folder" : "Müvəqqəti qovluq çatışmır",
"Cancel" : "Dayandır", "Cancel" : "Dayandır",
"Today" : "Bu gün",
"Details" : "Detallar",
"Sharing" : "Paylaşılır",
"Tags" : "Işarələr", "Tags" : "Işarələr",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
@@ -18,10 +15,7 @@ OC.L10N.register(
"Description" : "Açıqlanma", "Description" : "Açıqlanma",
"Modified" : "Dəyişdirildi", "Modified" : "Dəyişdirildi",
"Save" : "Saxla", "Save" : "Saxla",
"Reply" : "Cavab",
"Update" : "Yenilənmə", "Update" : "Yenilənmə",
"(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə",
"Settings" : "Quraşdırmalar" "Settings" : "Quraşdırmalar"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -5,9 +5,6 @@
"No file was uploaded" : "Heç bir fayl yüklənilmədi", "No file was uploaded" : "Heç bir fayl yüklənilmədi",
"Missing a temporary folder" : "Müvəqqəti qovluq çatışmır", "Missing a temporary folder" : "Müvəqqəti qovluq çatışmır",
"Cancel" : "Dayandır", "Cancel" : "Dayandır",
"Today" : "Bu gün",
"Details" : "Detallar",
"Sharing" : "Paylaşılır",
"Tags" : "Işarələr", "Tags" : "Işarələr",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
@@ -16,10 +13,7 @@
"Description" : "Açıqlanma", "Description" : "Açıqlanma",
"Modified" : "Dəyişdirildi", "Modified" : "Dəyişdirildi",
"Save" : "Saxla", "Save" : "Saxla",
"Reply" : "Cavab",
"Update" : "Yenilənmə", "Update" : "Yenilənmə",
"(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə",
"Settings" : "Quraşdırmalar" "Settings" : "Quraşdırmalar"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -14,12 +14,6 @@ OC.L10N.register(
"No file was uploaded" : "Нито един файл не е качен", "No file was uploaded" : "Нито един файл не е качен",
"Missing a temporary folder" : "Липсва временна папка", "Missing a temporary folder" : "Липсва временна папка",
"Cancel" : "Отказ", "Cancel" : "Отказ",
"File already exists" : "Файлът вече съществува",
"Do you want to overwrite it?" : "Искате ли да го презапишете?",
"Filter by tag" : "Филтрирай по маркер",
"Today" : "Днес",
"Details" : "Подробности",
"Sharing" : "Споделяне",
"Tags" : "Етикети", "Tags" : "Етикети",
"Undo" : "Отмяна", "Undo" : "Отмяна",
"Can edit" : "Може да редактира", "Can edit" : "Може да редактира",
@@ -35,10 +29,7 @@ OC.L10N.register(
"Created" : "Създаден", "Created" : "Създаден",
"Upload attachment" : "Качване", "Upload attachment" : "Качване",
"Save" : "Запазване", "Save" : "Запазване",
"Reply" : "Отговори",
"Update" : "Обновяване", "Update" : "Обновяване",
"(group)" : "(група)",
"seconds ago" : "преди секунди",
"Settings" : "Настройки", "Settings" : "Настройки",
"An error occurred" : "Възникна грешка" "An error occurred" : "Възникна грешка"
}, },

View File

@@ -12,12 +12,6 @@
"No file was uploaded" : "Нито един файл не е качен", "No file was uploaded" : "Нито един файл не е качен",
"Missing a temporary folder" : "Липсва временна папка", "Missing a temporary folder" : "Липсва временна папка",
"Cancel" : "Отказ", "Cancel" : "Отказ",
"File already exists" : "Файлът вече съществува",
"Do you want to overwrite it?" : "Искате ли да го презапишете?",
"Filter by tag" : "Филтрирай по маркер",
"Today" : "Днес",
"Details" : "Подробности",
"Sharing" : "Споделяне",
"Tags" : "Етикети", "Tags" : "Етикети",
"Undo" : "Отмяна", "Undo" : "Отмяна",
"Can edit" : "Може да редактира", "Can edit" : "Може да редактира",
@@ -33,10 +27,7 @@
"Created" : "Създаден", "Created" : "Създаден",
"Upload attachment" : "Качване", "Upload attachment" : "Качване",
"Save" : "Запазване", "Save" : "Запазване",
"Reply" : "Отговори",
"Update" : "Обновяване", "Update" : "Обновяване",
"(group)" : "(група)",
"seconds ago" : "преди секунди",
"Settings" : "Настройки", "Settings" : "Настройки",
"An error occurred" : "Възникна грешка" "An error occurred" : "Възникна грешка"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -7,9 +7,6 @@ OC.L10N.register(
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি", "No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
"Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে", "Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
"Cancel" : "বাতির", "Cancel" : "বাতির",
"Today" : "আজ",
"Details" : "বিসতারিত",
"Sharing" : "ভাগাভাগিরত",
"Tags" : "ট্যাগ", "Tags" : "ট্যাগ",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
@@ -18,10 +15,7 @@ OC.L10N.register(
"Description" : "বিবরণ", "Description" : "বিবরণ",
"Modified" : "পরিবর্তিত", "Modified" : "পরিবর্তিত",
"Save" : "সংরক্ষণ", "Save" : "সংরক্ষণ",
"Reply" : "জবাব",
"Update" : "পরিবর্ধন", "Update" : "পরিবর্ধন",
"(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে",
"Settings" : "সেটিংস" "Settings" : "সেটিংস"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -5,9 +5,6 @@
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি", "No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
"Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে", "Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
"Cancel" : "বাতির", "Cancel" : "বাতির",
"Today" : "আজ",
"Details" : "বিসতারিত",
"Sharing" : "ভাগাভাগিরত",
"Tags" : "ট্যাগ", "Tags" : "ট্যাগ",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
@@ -16,10 +13,7 @@
"Description" : "বিবরণ", "Description" : "বিবরণ",
"Modified" : "পরিবর্তিত", "Modified" : "পরিবর্তিত",
"Save" : "সংরক্ষণ", "Save" : "সংরক্ষণ",
"Reply" : "জবাব",
"Update" : "পরিবর্ধন", "Update" : "পরিবর্ধন",
"(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে",
"Settings" : "সেটিংস" "Settings" : "সেটিংস"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -7,7 +7,6 @@ OC.L10N.register(
"No file was uploaded" : "Nijedna datoteka nije učitana.", "No file was uploaded" : "Nijedna datoteka nije učitana.",
"Missing a temporary folder" : "Nedostaje privremeni direktorij.", "Missing a temporary folder" : "Nedostaje privremeni direktorij.",
"Cancel" : "Otkaži", "Cancel" : "Otkaži",
"Today" : "Danas",
"Sharing" : "Dijeljenje", "Sharing" : "Dijeljenje",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
@@ -18,7 +17,6 @@ OC.L10N.register(
"Modified" : "Izmijenjeno", "Modified" : "Izmijenjeno",
"Save" : "Spremi", "Save" : "Spremi",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"Settings" : "Podešavanje", "Settings" : "Podešavanje"
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena"
}, },
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");

View File

@@ -5,7 +5,6 @@
"No file was uploaded" : "Nijedna datoteka nije učitana.", "No file was uploaded" : "Nijedna datoteka nije učitana.",
"Missing a temporary folder" : "Nedostaje privremeni direktorij.", "Missing a temporary folder" : "Nedostaje privremeni direktorij.",
"Cancel" : "Otkaži", "Cancel" : "Otkaži",
"Today" : "Danas",
"Sharing" : "Dijeljenje", "Sharing" : "Dijeljenje",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
@@ -16,7 +15,6 @@
"Modified" : "Izmijenjeno", "Modified" : "Izmijenjeno",
"Save" : "Spremi", "Save" : "Spremi",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"Settings" : "Podešavanje", "Settings" : "Podešavanje"
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena"
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
} }

View File

@@ -99,16 +99,14 @@ OC.L10N.register(
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte", "Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Select board" : "Selecciona un tauler", "Select board" : "Selecciona un tauler",
"Cancel" : "Cancel·la", "Cancel" : "Cancel·la",
"File already exists" : "El fitxer ja existeix",
"Do you want to overwrite it?" : "Voleu sobre-escriure'l?",
"Today" : "Avui",
"Show archived cards" : "Mostra les targetes arxivades", "Show archived cards" : "Mostra les targetes arxivades",
"Hide archived cards" : "Amaga les targetes arxivades",
"Toggle compact mode" : "Commuta el mode compacte", "Toggle compact mode" : "Commuta el mode compacte",
"Details" : "Detalls",
"Sharing" : "Compartició", "Sharing" : "Compartició",
"Tags" : "Etiquetes", "Tags" : "Etiquetes",
"Deleted items" : "Elements suprimits", "Deleted items" : "Elements suprimits",
"Timeline" : "Línia de temps", "Timeline" : "Línia de temps",
"Deleted stacks" : "Piles suprimides",
"Undo" : "Desfés", "Undo" : "Desfés",
"Deleted cards" : "Targetes suprimides", "Deleted cards" : "Targetes suprimides",
"(Group)" : "(Grup)", "(Group)" : "(Grup)",
@@ -118,6 +116,7 @@ OC.L10N.register(
"Add a new stack" : "Afegeix una nova pila", "Add a new stack" : "Afegeix una nova pila",
"Add card" : "Afegeix una targeta", "Add card" : "Afegeix una targeta",
"Edit" : "Edita", "Edit" : "Edita",
"Details" : "Detalls",
"Due date" : "Per la data", "Due date" : "Per la data",
"Remove due date" : "Elimina la data de venciment", "Remove due date" : "Elimina la data de venciment",
"Description" : "Descripció", "Description" : "Descripció",
@@ -128,12 +127,9 @@ OC.L10N.register(
"Created" : "Creat", "Created" : "Creat",
"Upload attachment" : "Carrega l'adjunt", "Upload attachment" : "Carrega l'adjunt",
"Save" : "Desa", "Save" : "Desa",
"Reply" : "Respon",
"Update" : "Actualitza", "Update" : "Actualitza",
"(group)" : "(grup)",
"Delete card" : "Suprimeix targeta", "Delete card" : "Suprimeix targeta",
"Move card" : "Mou la targeta", "Move card" : "Mou la targeta",
"seconds ago" : "fa uns segons",
"Archived boards" : "Taulers arxivats", "Archived boards" : "Taulers arxivats",
"Shared boards" : "Taulers compartits", "Shared boards" : "Taulers compartits",
"Settings" : "Paràmetres", "Settings" : "Paràmetres",
@@ -145,7 +141,6 @@ OC.L10N.register(
"Unarchive board" : "Desarxiva tauler", "Unarchive board" : "Desarxiva tauler",
"Delete board" : "Suprimeix tauler", "Delete board" : "Suprimeix tauler",
"Board details" : "Detalls de la junta", "Board details" : "Detalls de la junta",
"Link to a board" : "Enllaça a un tauler", "Link to a board" : "Enllaça a un tauler"
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -97,16 +97,14 @@
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte", "Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Select board" : "Selecciona un tauler", "Select board" : "Selecciona un tauler",
"Cancel" : "Cancel·la", "Cancel" : "Cancel·la",
"File already exists" : "El fitxer ja existeix",
"Do you want to overwrite it?" : "Voleu sobre-escriure'l?",
"Today" : "Avui",
"Show archived cards" : "Mostra les targetes arxivades", "Show archived cards" : "Mostra les targetes arxivades",
"Hide archived cards" : "Amaga les targetes arxivades",
"Toggle compact mode" : "Commuta el mode compacte", "Toggle compact mode" : "Commuta el mode compacte",
"Details" : "Detalls",
"Sharing" : "Compartició", "Sharing" : "Compartició",
"Tags" : "Etiquetes", "Tags" : "Etiquetes",
"Deleted items" : "Elements suprimits", "Deleted items" : "Elements suprimits",
"Timeline" : "Línia de temps", "Timeline" : "Línia de temps",
"Deleted stacks" : "Piles suprimides",
"Undo" : "Desfés", "Undo" : "Desfés",
"Deleted cards" : "Targetes suprimides", "Deleted cards" : "Targetes suprimides",
"(Group)" : "(Grup)", "(Group)" : "(Grup)",
@@ -116,6 +114,7 @@
"Add a new stack" : "Afegeix una nova pila", "Add a new stack" : "Afegeix una nova pila",
"Add card" : "Afegeix una targeta", "Add card" : "Afegeix una targeta",
"Edit" : "Edita", "Edit" : "Edita",
"Details" : "Detalls",
"Due date" : "Per la data", "Due date" : "Per la data",
"Remove due date" : "Elimina la data de venciment", "Remove due date" : "Elimina la data de venciment",
"Description" : "Descripció", "Description" : "Descripció",
@@ -126,12 +125,9 @@
"Created" : "Creat", "Created" : "Creat",
"Upload attachment" : "Carrega l'adjunt", "Upload attachment" : "Carrega l'adjunt",
"Save" : "Desa", "Save" : "Desa",
"Reply" : "Respon",
"Update" : "Actualitza", "Update" : "Actualitza",
"(group)" : "(grup)",
"Delete card" : "Suprimeix targeta", "Delete card" : "Suprimeix targeta",
"Move card" : "Mou la targeta", "Move card" : "Mou la targeta",
"seconds ago" : "fa uns segons",
"Archived boards" : "Taulers arxivats", "Archived boards" : "Taulers arxivats",
"Shared boards" : "Taulers compartits", "Shared boards" : "Taulers compartits",
"Settings" : "Paràmetres", "Settings" : "Paràmetres",
@@ -143,7 +139,6 @@
"Unarchive board" : "Desarxiva tauler", "Unarchive board" : "Desarxiva tauler",
"Delete board" : "Suprimeix tauler", "Delete board" : "Suprimeix tauler",
"Board details" : "Detalls de la junta", "Board details" : "Detalls de la junta",
"Link to a board" : "Enllaça a un tauler", "Link to a board" : "Enllaça a un tauler"
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -107,35 +107,16 @@ OC.L10N.register(
"Select a card" : "Vybrat tabuli", "Select a card" : "Vybrat tabuli",
"Link to card" : "Propojit s kartou", "Link to card" : "Propojit s kartou",
"Cancel" : "Storno", "Cancel" : "Storno",
"File already exists" : "Soubor už existuje",
"A file with the name {filename} already exists." : "Soubor nazvaný {filename} už existuje.",
"Do you want to overwrite it?" : "Chcete položku přepsat?",
"Overwrite file" : "Přepsat soubor",
"Keep existing file" : "Ponechat existující soubor",
"This board is read only" : "Tato tabule je pouze pro čtení",
"Drop your files to upload" : "Přetáhněte sem soubory, které chcete nahrát",
"Archived cards" : "Archivované karty",
"Add new list" : "Přidat nový seznam", "Add new list" : "Přidat nový seznam",
"List name" : "Název seznamu", "List name" : "Název seznamu",
"Apply filter" : "Uplatnit filtr",
"Filter by tag" : "Filtrovat podle příznaků",
"Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen",
"Filter by due date" : "Filtrovat podle termínu",
"Overdue" : "Po termínu",
"Today" : "Dnes",
"Next 7 days" : "Příštích 7 dnů",
"Next 30 days" : "Příštích 30 dnů",
"No due date" : "Žádný termín",
"Show archived cards" : "Zobrazit archivované karty", "Show archived cards" : "Zobrazit archivované karty",
"Hide archived cards" : "Skrýt archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim", "Toggle compact mode" : "Vyp/zap. kompaktní režim",
"Details" : "Podrobnosti",
"Loading board" : "Načítání tabule", "Loading board" : "Načítání tabule",
"Board not found" : "Tabule nenalezena", "Board not found" : "Tabule nenalezena",
"Sharing" : "Sdílení",
"Tags" : "Štítky", "Tags" : "Štítky",
"Deleted items" : "Smazané položky",
"Timeline" : "Časová osa", "Timeline" : "Časová osa",
"Deleted lists" : "Smazané seznamy", "Deleted stacks" : "Smazané sloupce",
"Undo" : "Vrátit zpět", "Undo" : "Vrátit zpět",
"Deleted cards" : "Smazané karty", "Deleted cards" : "Smazané karty",
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…", "Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
@@ -151,41 +132,32 @@ OC.L10N.register(
"Add card" : "Přidat kartu", "Add card" : "Přidat kartu",
"Add a new card" : "Přidat novou kartu", "Add a new card" : "Přidat novou kartu",
"Edit" : "Upravit", "Edit" : "Upravit",
"Add a new tag" : "Přidat nový štítek", "Add a new label" : "Přidat nový popisek",
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu", "title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
"Load More" : "Načíst více",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…", "Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Assign to users" : "Přiřadit k uživatelům", "Assign to users" : "Přiřadit k uživatelům",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
"Assign a user to this card…" : "Přiřadit uživatele k této kartě…", "Assign a user to this card…" : "Přiřadit uživatele k této kartě…",
"Due date" : "Termín", "Due date" : "Termín",
"Set a due date" : "Vybrat termín", "Set a due date" : "Vybrat termín",
"Remove due date" : "Odstranit termín", "Remove due date" : "Odstranit termín",
"Description" : "Popis", "Description" : "Popis",
"(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)",
"Formatting help" : "Nápověda k formátování", "Formatting help" : "Nápověda k formátování",
"Attachments" : "Přílohy", "Attachments" : "Přílohy",
"Comments" : "Komentáře", "Comments" : "Komentáře",
"Modified" : "Změněno", "Modified" : "Změněno",
"Created" : "Vytvořeno", "Created" : "Vytvořeno",
"Upload attachment" : "Nahrát přílohu", "Upload attachment" : "Nahrát přílohu",
"Delete Attachment" : "Smazat přílohu", "New comment" : "Nový komentář",
"Restore Attachment" : "Obnovit přílohu",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Save" : "Uložit", "Save" : "Uložit",
"The comment cannot be empty." : "Komentář je třeba vyplnit", "No users found" : "Nenalezení žádní uživatelé",
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.", "No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"In reply to" : "V odpověď na",
"Reply" : "Odpovědět",
"Update" : "Aktualizovat", "Update" : "Aktualizovat",
"(group)" : "(skupina)",
"(circle)" : "(okruh)",
"Assign to me" : "Přiřadit mě", "Assign to me" : "Přiřadit mě",
"Delete card" : "Smazat kartu", "Delete card" : "Smazat kartu",
"Move card" : "Přesunout kartu", "Move card" : "Přesunout kartu",
"Card details" : "Podrobnosti o kartě", "Card details" : "Podrobnosti o kartě",
"Select a stack" : "Vybrat sloupec", "Select a stack" : "Vybrat sloupec",
"seconds ago" : "před několika sekundami",
"All boards" : "Všechny tabule", "All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule", "Archived boards" : "Archivované tabule",
"Shared boards" : "Sdílené tabule", "Shared boards" : "Sdílené tabule",
@@ -200,8 +172,6 @@ OC.L10N.register(
"Delete board" : "Smazat tabuli", "Delete board" : "Smazat tabuli",
"Board details" : "Podrobnosti o desce", "Board details" : "Podrobnosti o desce",
"Link to a board" : "Propojit s tabulí", "Link to a board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou", "Link to a card" : "Propojit s kartou"
"Something went wrong" : "Něco se pokazilo",
"Maximum file size of {size} exceeded" : "Překročena nejvyšší umožněná velikost souboru {size}"
}, },
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");

View File

@@ -105,35 +105,16 @@
"Select a card" : "Vybrat tabuli", "Select a card" : "Vybrat tabuli",
"Link to card" : "Propojit s kartou", "Link to card" : "Propojit s kartou",
"Cancel" : "Storno", "Cancel" : "Storno",
"File already exists" : "Soubor už existuje",
"A file with the name {filename} already exists." : "Soubor nazvaný {filename} už existuje.",
"Do you want to overwrite it?" : "Chcete položku přepsat?",
"Overwrite file" : "Přepsat soubor",
"Keep existing file" : "Ponechat existující soubor",
"This board is read only" : "Tato tabule je pouze pro čtení",
"Drop your files to upload" : "Přetáhněte sem soubory, které chcete nahrát",
"Archived cards" : "Archivované karty",
"Add new list" : "Přidat nový seznam", "Add new list" : "Přidat nový seznam",
"List name" : "Název seznamu", "List name" : "Název seznamu",
"Apply filter" : "Uplatnit filtr",
"Filter by tag" : "Filtrovat podle příznaků",
"Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen",
"Filter by due date" : "Filtrovat podle termínu",
"Overdue" : "Po termínu",
"Today" : "Dnes",
"Next 7 days" : "Příštích 7 dnů",
"Next 30 days" : "Příštích 30 dnů",
"No due date" : "Žádný termín",
"Show archived cards" : "Zobrazit archivované karty", "Show archived cards" : "Zobrazit archivované karty",
"Hide archived cards" : "Skrýt archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim", "Toggle compact mode" : "Vyp/zap. kompaktní režim",
"Details" : "Podrobnosti",
"Loading board" : "Načítání tabule", "Loading board" : "Načítání tabule",
"Board not found" : "Tabule nenalezena", "Board not found" : "Tabule nenalezena",
"Sharing" : "Sdílení",
"Tags" : "Štítky", "Tags" : "Štítky",
"Deleted items" : "Smazané položky",
"Timeline" : "Časová osa", "Timeline" : "Časová osa",
"Deleted lists" : "Smazané seznamy", "Deleted stacks" : "Smazané sloupce",
"Undo" : "Vrátit zpět", "Undo" : "Vrátit zpět",
"Deleted cards" : "Smazané karty", "Deleted cards" : "Smazané karty",
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…", "Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
@@ -149,41 +130,32 @@
"Add card" : "Přidat kartu", "Add card" : "Přidat kartu",
"Add a new card" : "Přidat novou kartu", "Add a new card" : "Přidat novou kartu",
"Edit" : "Upravit", "Edit" : "Upravit",
"Add a new tag" : "Přidat nový štítek", "Add a new label" : "Přidat nový popisek",
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu", "title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
"Load More" : "Načíst více",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…", "Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Assign to users" : "Přiřadit k uživatelům", "Assign to users" : "Přiřadit k uživatelům",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
"Assign a user to this card…" : "Přiřadit uživatele k této kartě…", "Assign a user to this card…" : "Přiřadit uživatele k této kartě…",
"Due date" : "Termín", "Due date" : "Termín",
"Set a due date" : "Vybrat termín", "Set a due date" : "Vybrat termín",
"Remove due date" : "Odstranit termín", "Remove due date" : "Odstranit termín",
"Description" : "Popis", "Description" : "Popis",
"(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)",
"Formatting help" : "Nápověda k formátování", "Formatting help" : "Nápověda k formátování",
"Attachments" : "Přílohy", "Attachments" : "Přílohy",
"Comments" : "Komentáře", "Comments" : "Komentáře",
"Modified" : "Změněno", "Modified" : "Změněno",
"Created" : "Vytvořeno", "Created" : "Vytvořeno",
"Upload attachment" : "Nahrát přílohu", "Upload attachment" : "Nahrát přílohu",
"Delete Attachment" : "Smazat přílohu", "New comment" : "Nový komentář",
"Restore Attachment" : "Obnovit přílohu",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Save" : "Uložit", "Save" : "Uložit",
"The comment cannot be empty." : "Komentář je třeba vyplnit", "No users found" : "Nenalezení žádní uživatelé",
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.", "No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"In reply to" : "V odpověď na",
"Reply" : "Odpovědět",
"Update" : "Aktualizovat", "Update" : "Aktualizovat",
"(group)" : "(skupina)",
"(circle)" : "(okruh)",
"Assign to me" : "Přiřadit mě", "Assign to me" : "Přiřadit mě",
"Delete card" : "Smazat kartu", "Delete card" : "Smazat kartu",
"Move card" : "Přesunout kartu", "Move card" : "Přesunout kartu",
"Card details" : "Podrobnosti o kartě", "Card details" : "Podrobnosti o kartě",
"Select a stack" : "Vybrat sloupec", "Select a stack" : "Vybrat sloupec",
"seconds ago" : "před několika sekundami",
"All boards" : "Všechny tabule", "All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule", "Archived boards" : "Archivované tabule",
"Shared boards" : "Sdílené tabule", "Shared boards" : "Sdílené tabule",
@@ -198,8 +170,6 @@
"Delete board" : "Smazat tabuli", "Delete board" : "Smazat tabuli",
"Board details" : "Podrobnosti o desce", "Board details" : "Podrobnosti o desce",
"Link to a board" : "Propojit s tabulí", "Link to a board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou", "Link to a card" : "Propojit s kartou"
"Something went wrong" : "Něco se pokazilo",
"Maximum file size of {size} exceeded" : "Překročena nejvyšší umožněná velikost souboru {size}"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" },"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

@@ -7,20 +7,18 @@ OC.L10N.register(
"No file was uploaded" : "Ni lwythwyd ffeil i fyny", "No file was uploaded" : "Ni lwythwyd ffeil i fyny",
"Missing a temporary folder" : "Plygell dros dro yn eisiau", "Missing a temporary folder" : "Plygell dros dro yn eisiau",
"Cancel" : "Diddymu", "Cancel" : "Diddymu",
"Today" : "Heddiw",
"Details" : "Manylion",
"Tags" : "Tagiau", "Tags" : "Tagiau",
"Undo" : "Dadwneud", "Undo" : "Dadwneud",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Dileu", "Delete" : "Dileu",
"Edit" : "Golygu", "Edit" : "Golygu",
"Details" : "Manylion",
"Description" : "Disgrifiad", "Description" : "Disgrifiad",
"Modified" : "Addaswyd", "Modified" : "Addaswyd",
"Upload attachment" : "Llwytho atodiad", "Upload attachment" : "Llwytho atodiad",
"Save" : "Cadw", "Save" : "Cadw",
"Update" : "Diweddaru", "Update" : "Diweddaru",
"seconds ago" : "eiliad yn ôl",
"Settings" : "Gosodiadau", "Settings" : "Gosodiadau",
"An error occurred" : "Digwyddodd gwall" "An error occurred" : "Digwyddodd gwall"
}, },

View File

@@ -5,20 +5,18 @@
"No file was uploaded" : "Ni lwythwyd ffeil i fyny", "No file was uploaded" : "Ni lwythwyd ffeil i fyny",
"Missing a temporary folder" : "Plygell dros dro yn eisiau", "Missing a temporary folder" : "Plygell dros dro yn eisiau",
"Cancel" : "Diddymu", "Cancel" : "Diddymu",
"Today" : "Heddiw",
"Details" : "Manylion",
"Tags" : "Tagiau", "Tags" : "Tagiau",
"Undo" : "Dadwneud", "Undo" : "Dadwneud",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Dileu", "Delete" : "Dileu",
"Edit" : "Golygu", "Edit" : "Golygu",
"Details" : "Manylion",
"Description" : "Disgrifiad", "Description" : "Disgrifiad",
"Modified" : "Addaswyd", "Modified" : "Addaswyd",
"Upload attachment" : "Llwytho atodiad", "Upload attachment" : "Llwytho atodiad",
"Save" : "Cadw", "Save" : "Cadw",
"Update" : "Diweddaru", "Update" : "Diweddaru",
"seconds ago" : "eiliad yn ôl",
"Settings" : "Gosodiadau", "Settings" : "Gosodiadau",
"An error occurred" : "Digwyddodd gwall" "An error occurred" : "Digwyddodd gwall"
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" },"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"

View File

@@ -18,12 +18,8 @@ OC.L10N.register(
"Missing a temporary folder" : "Manglende midlertidig mappe.", "Missing a temporary folder" : "Manglende midlertidig mappe.",
"Create new board" : "Opret ny liste", "Create new board" : "Opret ny liste",
"Cancel" : "Annullér", "Cancel" : "Annullér",
"File already exists" : "Fil findes allerede",
"Do you want to overwrite it?" : "Vil du overskrive den?",
"Drop your files to upload" : "Drop dine filer for at uploade",
"Today" : "I dag",
"Show archived cards" : "Vis arkiverede kort", "Show archived cards" : "Vis arkiverede kort",
"Details" : "Detaljer", "Hide archived cards" : "Skjul arkiverede kort",
"Sharing" : "Deling", "Sharing" : "Deling",
"Tags" : "Mærkat", "Tags" : "Mærkat",
"Undo" : "Fortryd", "Undo" : "Fortryd",
@@ -33,6 +29,7 @@ OC.L10N.register(
"Add a new stack" : "Tilføj en ny stak", "Add a new stack" : "Tilføj en ny stak",
"Add card" : "Tilføj kort", "Add card" : "Tilføj kort",
"Edit" : "Redigér", "Edit" : "Redigér",
"Details" : "Detaljer",
"Due date" : "Forfaldsdato", "Due date" : "Forfaldsdato",
"Remove due date" : "Fjern forfaldsdato", "Remove due date" : "Fjern forfaldsdato",
"Description" : "Beskrivelse", "Description" : "Beskrivelse",
@@ -43,11 +40,8 @@ OC.L10N.register(
"Created" : "Oprettet", "Created" : "Oprettet",
"Upload attachment" : "Upload vedhæftning", "Upload attachment" : "Upload vedhæftning",
"Save" : "Gem", "Save" : "Gem",
"Reply" : "Besvar",
"Update" : "Opdatér", "Update" : "Opdatér",
"(group)" : "(gruppe)",
"Delete card" : "Slet kort", "Delete card" : "Slet kort",
"seconds ago" : "sekunder siden",
"Archived boards" : "Arkiverede lister", "Archived boards" : "Arkiverede lister",
"Shared boards" : "Delte lister", "Shared boards" : "Delte lister",
"Settings" : "Indstillinger", "Settings" : "Indstillinger",

View File

@@ -16,12 +16,8 @@
"Missing a temporary folder" : "Manglende midlertidig mappe.", "Missing a temporary folder" : "Manglende midlertidig mappe.",
"Create new board" : "Opret ny liste", "Create new board" : "Opret ny liste",
"Cancel" : "Annullér", "Cancel" : "Annullér",
"File already exists" : "Fil findes allerede",
"Do you want to overwrite it?" : "Vil du overskrive den?",
"Drop your files to upload" : "Drop dine filer for at uploade",
"Today" : "I dag",
"Show archived cards" : "Vis arkiverede kort", "Show archived cards" : "Vis arkiverede kort",
"Details" : "Detaljer", "Hide archived cards" : "Skjul arkiverede kort",
"Sharing" : "Deling", "Sharing" : "Deling",
"Tags" : "Mærkat", "Tags" : "Mærkat",
"Undo" : "Fortryd", "Undo" : "Fortryd",
@@ -31,6 +27,7 @@
"Add a new stack" : "Tilføj en ny stak", "Add a new stack" : "Tilføj en ny stak",
"Add card" : "Tilføj kort", "Add card" : "Tilføj kort",
"Edit" : "Redigér", "Edit" : "Redigér",
"Details" : "Detaljer",
"Due date" : "Forfaldsdato", "Due date" : "Forfaldsdato",
"Remove due date" : "Fjern forfaldsdato", "Remove due date" : "Fjern forfaldsdato",
"Description" : "Beskrivelse", "Description" : "Beskrivelse",
@@ -41,11 +38,8 @@
"Created" : "Oprettet", "Created" : "Oprettet",
"Upload attachment" : "Upload vedhæftning", "Upload attachment" : "Upload vedhæftning",
"Save" : "Gem", "Save" : "Gem",
"Reply" : "Besvar",
"Update" : "Opdatér", "Update" : "Opdatér",
"(group)" : "(gruppe)",
"Delete card" : "Slet kort", "Delete card" : "Slet kort",
"seconds ago" : "sekunder siden",
"Archived boards" : "Arkiverede lister", "Archived boards" : "Arkiverede lister",
"Shared boards" : "Delte lister", "Shared boards" : "Delte lister",
"Settings" : "Indstillinger", "Settings" : "Indstillinger",

View File

@@ -107,35 +107,18 @@ OC.L10N.register(
"Select a card" : "Eine Karte auswählen", "Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen", "Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchtest Du überschreiben?",
"Overwrite file" : "Datei überschreiben",
"Keep existing file" : "Existierende Datei behalten",
"This board is read only" : "Dieses Board ist schreibgeschützt",
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
"Archived cards" : "Archivierte Karten",
"Add new list" : "Neue Liste hinzufügen", "Add new list" : "Neue Liste hinzufügen",
"List name" : "Listenname", "List name" : "Listenname",
"Apply filter" : "Filter anwenden",
"Filter by tag" : "Nach Schlagwort filtern",
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig",
"Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Show archived cards" : "Archivierte Karten anzeigen", "Show archived cards" : "Archivierte Karten anzeigen",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Toggle compact mode" : "Kompaktmodus umschalten", "Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
"Loading board" : "Board laden", "Loading board" : "Board laden",
"Board not found" : "Board nicht gefunden", "Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen", "Sharing" : "Teilen",
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte", "Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse", "Timeline" : "Zeitachse",
"Deleted lists" : "Listen löschen", "Deleted stacks" : "Gelöschte Stapel",
"Undo" : "Rückgängig", "Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten", "Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …", "Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
@@ -151,41 +134,33 @@ OC.L10N.register(
"Add card" : "Karte hinzufügen", "Add card" : "Karte hinzufügen",
"Add a new card" : "Neue Karte hinzufügen", "Add a new card" : "Neue Karte hinzufügen",
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen", "Add a new label" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden", "title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Load More" : "Mehr laden",
"Details" : "Details",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…", "Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen", "Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…", "Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
"Due date" : "Fälligkeitsdatum", "Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen", "Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen", "Remove due date" : "Fälligkeitsdatum löschen",
"Description" : "Beschreibung", "Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe", "Formatting help" : "Formatierungshilfe",
"Attachments" : "Anhänge", "Attachments" : "Anhänge",
"Comments" : "Kommentare", "Comments" : "Kommentare",
"Modified" : "Geändert", "Modified" : "Geändert",
"Created" : "Erstellt", "Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen", "Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen", "New comment" : "Neuer Kommentar",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "No users found" : "Keine Nutzer gefunden",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
"Card details" : "Kartendetails", "Card details" : "Kartendetails",
"Select a stack" : "Stapel auswählen", "Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards", "All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards", "Archived boards" : "Archivierte Boards",
"Shared boards" : "Geteilte Boards", "Shared boards" : "Geteilte Boards",
@@ -200,8 +175,6 @@ OC.L10N.register(
"Delete board" : "Board löschen", "Delete board" : "Board löschen",
"Board details" : "Board-Details", "Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen", "Link to a card" : "Mit einer Karte verknüpfen"
"Something went wrong" : "Etwas ist schiefgelaufen",
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -105,35 +105,18 @@
"Select a card" : "Eine Karte auswählen", "Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen", "Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchtest Du überschreiben?",
"Overwrite file" : "Datei überschreiben",
"Keep existing file" : "Existierende Datei behalten",
"This board is read only" : "Dieses Board ist schreibgeschützt",
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
"Archived cards" : "Archivierte Karten",
"Add new list" : "Neue Liste hinzufügen", "Add new list" : "Neue Liste hinzufügen",
"List name" : "Listenname", "List name" : "Listenname",
"Apply filter" : "Filter anwenden",
"Filter by tag" : "Nach Schlagwort filtern",
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig",
"Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Show archived cards" : "Archivierte Karten anzeigen", "Show archived cards" : "Archivierte Karten anzeigen",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Toggle compact mode" : "Kompaktmodus umschalten", "Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
"Loading board" : "Board laden", "Loading board" : "Board laden",
"Board not found" : "Board nicht gefunden", "Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen", "Sharing" : "Teilen",
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte", "Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse", "Timeline" : "Zeitachse",
"Deleted lists" : "Listen löschen", "Deleted stacks" : "Gelöschte Stapel",
"Undo" : "Rückgängig", "Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten", "Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …", "Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
@@ -149,41 +132,33 @@
"Add card" : "Karte hinzufügen", "Add card" : "Karte hinzufügen",
"Add a new card" : "Neue Karte hinzufügen", "Add a new card" : "Neue Karte hinzufügen",
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen", "Add a new label" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden", "title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Load More" : "Mehr laden",
"Details" : "Details",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…", "Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen", "Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…", "Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
"Due date" : "Fälligkeitsdatum", "Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen", "Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen", "Remove due date" : "Fälligkeitsdatum löschen",
"Description" : "Beschreibung", "Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe", "Formatting help" : "Formatierungshilfe",
"Attachments" : "Anhänge", "Attachments" : "Anhänge",
"Comments" : "Kommentare", "Comments" : "Kommentare",
"Modified" : "Geändert", "Modified" : "Geändert",
"Created" : "Erstellt", "Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen", "Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen", "New comment" : "Neuer Kommentar",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "No users found" : "Keine Nutzer gefunden",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
"Card details" : "Kartendetails", "Card details" : "Kartendetails",
"Select a stack" : "Stapel auswählen", "Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards", "All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards", "Archived boards" : "Archivierte Boards",
"Shared boards" : "Geteilte Boards", "Shared boards" : "Geteilte Boards",
@@ -198,8 +173,6 @@
"Delete board" : "Board löschen", "Delete board" : "Board löschen",
"Board details" : "Board-Details", "Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen", "Link to a card" : "Mit einer Karte verknüpfen"
"Something went wrong" : "Etwas ist schiefgelaufen",
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -107,42 +107,25 @@ OC.L10N.register(
"Select a card" : "Eine Karte auswählen", "Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen", "Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchten Sie überschreiben?",
"Overwrite file" : "Datei überschreiben",
"Keep existing file" : "Existierende Datei behalten",
"This board is read only" : "Dieses Board ist schreibgeschützt",
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
"Archived cards" : "Archivierte Karten",
"Add new list" : "Neue Liste hinzufügen", "Add new list" : "Neue Liste hinzufügen",
"List name" : "Listenname", "List name" : "Listenname",
"Apply filter" : "Filter anwenden",
"Filter by tag" : "Nach Schlagwort filtern",
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig",
"Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Show archived cards" : "Archivierte Karten anzeigen", "Show archived cards" : "Archivierte Karten anzeigen",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Toggle compact mode" : "Kompaktmodus umschalten", "Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
"Loading board" : "Board laden", "Loading board" : "Board laden",
"Board not found" : "Board nicht gefunden", "Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen", "Sharing" : "Teilen",
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte", "Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse", "Timeline" : "Zeitachse",
"Deleted lists" : "Listen löschen", "Deleted stacks" : "Gelöschte Stapel",
"Undo" : "Rückgängig", "Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten", "Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …", "Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
"Board owner" : "Board-Besitzer", "Board owner" : "Board-Besitzer",
"(Group)" : "(Gruppe)", "(Group)" : "(Gruppe)",
"(Circle)" : "(Kreis)", "(Circle)" : "(Kreis)",
"Can edit" : "kann bearbeiten", "Can edit" : "Kann bearbeiten",
"Can share" : "kann teilen", "Can share" : "kann teilen",
"Can manage" : "kann verwalten", "Can manage" : "kann verwalten",
"Delete" : "Löschen", "Delete" : "Löschen",
@@ -151,41 +134,33 @@ OC.L10N.register(
"Add card" : "Karte hinzufügen", "Add card" : "Karte hinzufügen",
"Add a new card" : "Neue Karte hinzufügen", "Add a new card" : "Neue Karte hinzufügen",
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen", "Add a new label" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden", "title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Load More" : "Mehr laden",
"Details" : "Details",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…", "Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen", "Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…", "Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
"Due date" : "Fälligkeitsdatum", "Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen", "Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum entfernen", "Remove due date" : "Fälligkeitsdatum entfernen",
"Description" : "Beschreibung", "Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe", "Formatting help" : "Formatierungshilfe",
"Attachments" : "Anhänge", "Attachments" : "Anhänge",
"Comments" : "Kommentare", "Comments" : "Kommentare",
"Modified" : "Geändert", "Modified" : "Geändert",
"Created" : "Erstellt", "Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen", "Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen", "New comment" : "Neuer Kommentar",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "No users found" : "Keine Nutzer gefunden",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
"Card details" : "Kartendetails", "Card details" : "Kartendetails",
"Select a stack" : "Stapel auswählen", "Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards", "All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards", "Archived boards" : "Archivierte Boards",
"Shared boards" : "Geteilte Boards", "Shared boards" : "Geteilte Boards",
@@ -200,8 +175,6 @@ OC.L10N.register(
"Delete board" : "Board löschen", "Delete board" : "Board löschen",
"Board details" : "Board-Details", "Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen", "Link to a card" : "Mit einer Karte verknüpfen"
"Something went wrong" : "Etwas ist schiefgelaufen",
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -105,42 +105,25 @@
"Select a card" : "Eine Karte auswählen", "Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen", "Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchten Sie überschreiben?",
"Overwrite file" : "Datei überschreiben",
"Keep existing file" : "Existierende Datei behalten",
"This board is read only" : "Dieses Board ist schreibgeschützt",
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
"Archived cards" : "Archivierte Karten",
"Add new list" : "Neue Liste hinzufügen", "Add new list" : "Neue Liste hinzufügen",
"List name" : "Listenname", "List name" : "Listenname",
"Apply filter" : "Filter anwenden",
"Filter by tag" : "Nach Schlagwort filtern",
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig",
"Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Show archived cards" : "Archivierte Karten anzeigen", "Show archived cards" : "Archivierte Karten anzeigen",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Toggle compact mode" : "Kompaktmodus umschalten", "Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
"Loading board" : "Board laden", "Loading board" : "Board laden",
"Board not found" : "Board nicht gefunden", "Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen", "Sharing" : "Teilen",
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte", "Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse", "Timeline" : "Zeitachse",
"Deleted lists" : "Listen löschen", "Deleted stacks" : "Gelöschte Stapel",
"Undo" : "Rückgängig", "Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten", "Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …", "Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
"Board owner" : "Board-Besitzer", "Board owner" : "Board-Besitzer",
"(Group)" : "(Gruppe)", "(Group)" : "(Gruppe)",
"(Circle)" : "(Kreis)", "(Circle)" : "(Kreis)",
"Can edit" : "kann bearbeiten", "Can edit" : "Kann bearbeiten",
"Can share" : "kann teilen", "Can share" : "kann teilen",
"Can manage" : "kann verwalten", "Can manage" : "kann verwalten",
"Delete" : "Löschen", "Delete" : "Löschen",
@@ -149,41 +132,33 @@
"Add card" : "Karte hinzufügen", "Add card" : "Karte hinzufügen",
"Add a new card" : "Neue Karte hinzufügen", "Add a new card" : "Neue Karte hinzufügen",
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen", "Add a new label" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden", "title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Load More" : "Mehr laden",
"Details" : "Details",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…", "Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen", "Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…", "Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
"Due date" : "Fälligkeitsdatum", "Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen", "Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum entfernen", "Remove due date" : "Fälligkeitsdatum entfernen",
"Description" : "Beschreibung", "Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe", "Formatting help" : "Formatierungshilfe",
"Attachments" : "Anhänge", "Attachments" : "Anhänge",
"Comments" : "Kommentare", "Comments" : "Kommentare",
"Modified" : "Geändert", "Modified" : "Geändert",
"Created" : "Erstellt", "Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen", "Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen", "New comment" : "Neuer Kommentar",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "No users found" : "Keine Nutzer gefunden",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
"Card details" : "Kartendetails", "Card details" : "Kartendetails",
"Select a stack" : "Stapel auswählen", "Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards", "All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards", "Archived boards" : "Archivierte Boards",
"Shared boards" : "Geteilte Boards", "Shared boards" : "Geteilte Boards",
@@ -198,8 +173,6 @@
"Delete board" : "Board löschen", "Delete board" : "Board löschen",
"Board details" : "Board-Details", "Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen", "Link to a card" : "Mit einer Karte verknüpfen"
"Something went wrong" : "Etwas ist schiefgelaufen",
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -107,35 +107,18 @@ OC.L10N.register(
"Select a card" : "Επίλογή μιας καρτέλας", "Select a card" : "Επίλογή μιας καρτέλας",
"Link to card" : "Σύνδεσμος σε καρτέλα", "Link to card" : "Σύνδεσμος σε καρτέλα",
"Cancel" : "Aκύρωση", "Cancel" : "Aκύρωση",
"File already exists" : "Το αρχείο υπάρχει ήδη",
"A file with the name {filename} already exists." : "Το αρχείο με όνομα {filename} υπάρχει ήδη.",
"Do you want to overwrite it?" : "Επιθυμείτε να γίνει αντικατάσταση του?",
"Overwrite file" : "Αντικατάσταση αρχείου",
"Keep existing file" : "Διατήρηση υπάρχων αρχείου",
"This board is read only" : "Ο πίνακας είναι μόνο για ανάγνωση",
"Drop your files to upload" : "Αποθέστε τα αρχεία σας για ανέβασμα",
"Archived cards" : "Αρχειοθετημένες κάρτες",
"Add new list" : "Προσθήκη νέας λιστάς", "Add new list" : "Προσθήκη νέας λιστάς",
"List name" : "Λίστα ονομάτων", "List name" : "Λίστα ονομάτων",
"Apply filter" : "Εφαρμογή φίλτρου",
"Filter by tag" : "Φίλτρο ανά ετικέτα",
"Filter by assigned user" : "Φίλτρο ανά χρήστη",
"Filter by due date" : "Φίλτρο ανά ημερομηνία λήξης",
"Overdue" : "Εκπρόθεσμος",
"Today" : "Σήμερα",
"Next 7 days" : "Επόμενες 7 ημέρες",
"Next 30 days" : "Επόμενες 30 ημέρες",
"No due date" : "Χωρίς ημερομηνία λήξης",
"Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν", "Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν",
"Hide archived cards" : "Απόκρυψη καρτελών που αρχειοθετήθηκαν",
"Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους", "Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους",
"Details" : "Λεπτομέρειες",
"Loading board" : "Φόρτωση πίνακα", "Loading board" : "Φόρτωση πίνακα",
"Board not found" : "Ο πίνακας δεν βρέθηκε", "Board not found" : "Ο πίνακας δεν βρέθηκε",
"Sharing" : "Διαμοιρασμός", "Sharing" : "Διαμοιρασμός",
"Tags" : "Ετικέτες", "Tags" : "Ετικέτες",
"Deleted items" : "Διαγραμμένα αντικείμενα", "Deleted items" : "Διαγραμμένα αντικείμενα",
"Timeline" : "Χρονοδιάγραμμα", "Timeline" : "Χρονοδιάγραμμα",
"Deleted lists" : "Διαγραμμένες λίστες", "Deleted stacks" : "Διαγραμμένες στοίβες",
"Undo" : "Αναίρεση", "Undo" : "Αναίρεση",
"Deleted cards" : "Διαγραμμένες καρτέλες", "Deleted cards" : "Διαγραμμένες καρτέλες",
"Share board with a user, group or circle …" : "Διαμοιράστε τον πίνακα με χρήστη, ομάδα ή κύκλο ...", "Share board with a user, group or circle …" : "Διαμοιράστε τον πίνακα με χρήστη, ομάδα ή κύκλο ...",
@@ -151,41 +134,33 @@ OC.L10N.register(
"Add card" : "Προσθήκη κάρτας", "Add card" : "Προσθήκη κάρτας",
"Add a new card" : "Προσθήκη νέας καρτέλας", "Add a new card" : "Προσθήκη νέας καρτέλας",
"Edit" : "Επεξεργασία", "Edit" : "Επεξεργασία",
"Add a new tag" : "Προσθήκη νέας ετικέτας", "Add a new label" : "Προσθήκη νέας ετικέτας",
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται", "title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"Load More" : "Φόρτωση Περισσότερων",
"Details" : "Λεπτομέρειες",
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...", "Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
"Assign to users" : "Αναθέστε στους χρήστες", "Assign to users" : "Αναθέστε στους χρήστες",
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
"Assign a user to this card…" : "Αναθέστε χρήστη στην καρτέλα...", "Assign a user to this card…" : "Αναθέστε χρήστη στην καρτέλα...",
"Due date" : "Ημερομηνία λήξης", "Due date" : "Ημερομηνία λήξης",
"Set a due date" : "Καθορίστε ημερομηνίας λήξης", "Set a due date" : "Καθορίστε ημερομηνίας λήξης",
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης", "Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
"Description" : "Περιγραφή", "Description" : "Περιγραφή",
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
"(Saving…)" : "(Αποθήκευση...)",
"Formatting help" : "Βοήθεια μορφοποίησης", "Formatting help" : "Βοήθεια μορφοποίησης",
"Attachments" : "Συνημμένα", "Attachments" : "Συνημμένα",
"Comments" : "Σχόλια", "Comments" : "Σχόλια",
"Modified" : "Τροποποιήθηκε", "Modified" : "Τροποποιήθηκε",
"Created" : "Δημιουργήθηκε", "Created" : "Δημιουργήθηκε",
"Upload attachment" : "Μεταφόρτωση συνημμένων", "Upload attachment" : "Μεταφόρτωση συνημμένων",
"Delete Attachment" : "Διαγραφή Συνημμένου", "New comment" : "Νέο σχόλιο",
"Restore Attachment" : "Επαναφορά Συνημμένου",
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"Save" : "Αποθήκευση", "Save" : "Αποθήκευση",
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.", "No users found" : "Δεν βρέθηκαν χρήστες",
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.", "No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"In reply to" : "Ως απάντηση σε",
"Reply" : "Απάντηση",
"Update" : "Ενημέρωση", "Update" : "Ενημέρωση",
"(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)",
"Assign to me" : "Ανάθεση σε εμένα", "Assign to me" : "Ανάθεση σε εμένα",
"Delete card" : "Διαγραφή κάρτας", "Delete card" : "Διαγραφή κάρτας",
"Move card" : "Μετακίνηση κάρτας", "Move card" : "Μετακίνηση κάρτας",
"Card details" : "Λεπτομέρειες καρτέλας", "Card details" : "Λεπτομέρειες καρτέλας",
"Select a stack" : "Επιλέξτε στοίβα", "Select a stack" : "Επιλέξτε στοίβα",
"seconds ago" : " δευτερόλεπτα πριν ",
"All boards" : "Όλοι οι πίνακες", "All boards" : "Όλοι οι πίνακες",
"Archived boards" : "Αρχειοθέτηση πινάκων ", "Archived boards" : "Αρχειοθέτηση πινάκων ",
"Shared boards" : "Διαμοιρασμένοι πίνακες", "Shared boards" : "Διαμοιρασμένοι πίνακες",
@@ -200,8 +175,6 @@ OC.L10N.register(
"Delete board" : "Διαγραφή πίνακα", "Delete board" : "Διαγραφή πίνακα",
"Board details" : "Λεπτομέριες πίνακα", "Board details" : "Λεπτομέριες πίνακα",
"Link to a board" : "Σύνδεσμος στον πίνακα", "Link to a board" : "Σύνδεσμος στον πίνακα",
"Link to a card" : "Σύνδεσμος σε καρτέλα", "Link to a card" : "Σύνδεσμος σε καρτέλα"
"Something went wrong" : "Κάτι πήγε στραβά",
"Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -105,35 +105,18 @@
"Select a card" : "Επίλογή μιας καρτέλας", "Select a card" : "Επίλογή μιας καρτέλας",
"Link to card" : "Σύνδεσμος σε καρτέλα", "Link to card" : "Σύνδεσμος σε καρτέλα",
"Cancel" : "Aκύρωση", "Cancel" : "Aκύρωση",
"File already exists" : "Το αρχείο υπάρχει ήδη",
"A file with the name {filename} already exists." : "Το αρχείο με όνομα {filename} υπάρχει ήδη.",
"Do you want to overwrite it?" : "Επιθυμείτε να γίνει αντικατάσταση του?",
"Overwrite file" : "Αντικατάσταση αρχείου",
"Keep existing file" : "Διατήρηση υπάρχων αρχείου",
"This board is read only" : "Ο πίνακας είναι μόνο για ανάγνωση",
"Drop your files to upload" : "Αποθέστε τα αρχεία σας για ανέβασμα",
"Archived cards" : "Αρχειοθετημένες κάρτες",
"Add new list" : "Προσθήκη νέας λιστάς", "Add new list" : "Προσθήκη νέας λιστάς",
"List name" : "Λίστα ονομάτων", "List name" : "Λίστα ονομάτων",
"Apply filter" : "Εφαρμογή φίλτρου",
"Filter by tag" : "Φίλτρο ανά ετικέτα",
"Filter by assigned user" : "Φίλτρο ανά χρήστη",
"Filter by due date" : "Φίλτρο ανά ημερομηνία λήξης",
"Overdue" : "Εκπρόθεσμος",
"Today" : "Σήμερα",
"Next 7 days" : "Επόμενες 7 ημέρες",
"Next 30 days" : "Επόμενες 30 ημέρες",
"No due date" : "Χωρίς ημερομηνία λήξης",
"Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν", "Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν",
"Hide archived cards" : "Απόκρυψη καρτελών που αρχειοθετήθηκαν",
"Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους", "Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους",
"Details" : "Λεπτομέρειες",
"Loading board" : "Φόρτωση πίνακα", "Loading board" : "Φόρτωση πίνακα",
"Board not found" : "Ο πίνακας δεν βρέθηκε", "Board not found" : "Ο πίνακας δεν βρέθηκε",
"Sharing" : "Διαμοιρασμός", "Sharing" : "Διαμοιρασμός",
"Tags" : "Ετικέτες", "Tags" : "Ετικέτες",
"Deleted items" : "Διαγραμμένα αντικείμενα", "Deleted items" : "Διαγραμμένα αντικείμενα",
"Timeline" : "Χρονοδιάγραμμα", "Timeline" : "Χρονοδιάγραμμα",
"Deleted lists" : "Διαγραμμένες λίστες", "Deleted stacks" : "Διαγραμμένες στοίβες",
"Undo" : "Αναίρεση", "Undo" : "Αναίρεση",
"Deleted cards" : "Διαγραμμένες καρτέλες", "Deleted cards" : "Διαγραμμένες καρτέλες",
"Share board with a user, group or circle …" : "Διαμοιράστε τον πίνακα με χρήστη, ομάδα ή κύκλο ...", "Share board with a user, group or circle …" : "Διαμοιράστε τον πίνακα με χρήστη, ομάδα ή κύκλο ...",
@@ -149,41 +132,33 @@
"Add card" : "Προσθήκη κάρτας", "Add card" : "Προσθήκη κάρτας",
"Add a new card" : "Προσθήκη νέας καρτέλας", "Add a new card" : "Προσθήκη νέας καρτέλας",
"Edit" : "Επεξεργασία", "Edit" : "Επεξεργασία",
"Add a new tag" : "Προσθήκη νέας ετικέτας", "Add a new label" : "Προσθήκη νέας ετικέτας",
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται", "title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"Load More" : "Φόρτωση Περισσότερων",
"Details" : "Λεπτομέρειες",
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...", "Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
"Assign to users" : "Αναθέστε στους χρήστες", "Assign to users" : "Αναθέστε στους χρήστες",
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
"Assign a user to this card…" : "Αναθέστε χρήστη στην καρτέλα...", "Assign a user to this card…" : "Αναθέστε χρήστη στην καρτέλα...",
"Due date" : "Ημερομηνία λήξης", "Due date" : "Ημερομηνία λήξης",
"Set a due date" : "Καθορίστε ημερομηνίας λήξης", "Set a due date" : "Καθορίστε ημερομηνίας λήξης",
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης", "Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
"Description" : "Περιγραφή", "Description" : "Περιγραφή",
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
"(Saving…)" : "(Αποθήκευση...)",
"Formatting help" : "Βοήθεια μορφοποίησης", "Formatting help" : "Βοήθεια μορφοποίησης",
"Attachments" : "Συνημμένα", "Attachments" : "Συνημμένα",
"Comments" : "Σχόλια", "Comments" : "Σχόλια",
"Modified" : "Τροποποιήθηκε", "Modified" : "Τροποποιήθηκε",
"Created" : "Δημιουργήθηκε", "Created" : "Δημιουργήθηκε",
"Upload attachment" : "Μεταφόρτωση συνημμένων", "Upload attachment" : "Μεταφόρτωση συνημμένων",
"Delete Attachment" : "Διαγραφή Συνημμένου", "New comment" : "Νέο σχόλιο",
"Restore Attachment" : "Επαναφορά Συνημμένου",
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"Save" : "Αποθήκευση", "Save" : "Αποθήκευση",
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.", "No users found" : "Δεν βρέθηκαν χρήστες",
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.", "No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"In reply to" : "Ως απάντηση σε",
"Reply" : "Απάντηση",
"Update" : "Ενημέρωση", "Update" : "Ενημέρωση",
"(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)",
"Assign to me" : "Ανάθεση σε εμένα", "Assign to me" : "Ανάθεση σε εμένα",
"Delete card" : "Διαγραφή κάρτας", "Delete card" : "Διαγραφή κάρτας",
"Move card" : "Μετακίνηση κάρτας", "Move card" : "Μετακίνηση κάρτας",
"Card details" : "Λεπτομέρειες καρτέλας", "Card details" : "Λεπτομέρειες καρτέλας",
"Select a stack" : "Επιλέξτε στοίβα", "Select a stack" : "Επιλέξτε στοίβα",
"seconds ago" : " δευτερόλεπτα πριν ",
"All boards" : "Όλοι οι πίνακες", "All boards" : "Όλοι οι πίνακες",
"Archived boards" : "Αρχειοθέτηση πινάκων ", "Archived boards" : "Αρχειοθέτηση πινάκων ",
"Shared boards" : "Διαμοιρασμένοι πίνακες", "Shared boards" : "Διαμοιρασμένοι πίνακες",
@@ -198,8 +173,6 @@
"Delete board" : "Διαγραφή πίνακα", "Delete board" : "Διαγραφή πίνακα",
"Board details" : "Λεπτομέριες πίνακα", "Board details" : "Λεπτομέριες πίνακα",
"Link to a board" : "Σύνδεσμος στον πίνακα", "Link to a board" : "Σύνδεσμος στον πίνακα",
"Link to a card" : "Σύνδεσμος σε καρτέλα", "Link to a card" : "Σύνδεσμος σε καρτέλα"
"Something went wrong" : "Κάτι πήγε στραβά",
"Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -21,13 +21,8 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "A PHP extension stopped the file upload", "A PHP extension stopped the file upload" : "A PHP extension stopped the file upload",
"Create new board" : "Create new board", "Create new board" : "Create new board",
"Cancel" : "Cancel", "Cancel" : "Cancel",
"File already exists" : "File already exists",
"Do you want to overwrite it?" : "Do you want to overwrite it?",
"Filter by tag" : "Filter by tag",
"Today" : "Today",
"Show archived cards" : "Show archived cards", "Show archived cards" : "Show archived cards",
"Details" : "Details", "Hide archived cards" : "Hide archived cards",
"Sharing" : "Sharing",
"Tags" : "Tags", "Tags" : "Tags",
"Undo" : "Undo", "Undo" : "Undo",
"Can edit" : "Can edit", "Can edit" : "Can edit",
@@ -46,11 +41,8 @@ OC.L10N.register(
"Created" : "Created", "Created" : "Created",
"Upload attachment" : "Upload attachment", "Upload attachment" : "Upload attachment",
"Save" : "Save", "Save" : "Save",
"Reply" : "Reply",
"Update" : "Update", "Update" : "Update",
"(group)" : "(group)",
"Delete card" : "Delete card", "Delete card" : "Delete card",
"seconds ago" : "seconds ago",
"Archived boards" : "Archived boards", "Archived boards" : "Archived boards",
"Shared boards" : "Shared boards", "Shared boards" : "Shared boards",
"Settings" : "Settings", "Settings" : "Settings",

View File

@@ -19,13 +19,8 @@
"A PHP extension stopped the file upload" : "A PHP extension stopped the file upload", "A PHP extension stopped the file upload" : "A PHP extension stopped the file upload",
"Create new board" : "Create new board", "Create new board" : "Create new board",
"Cancel" : "Cancel", "Cancel" : "Cancel",
"File already exists" : "File already exists",
"Do you want to overwrite it?" : "Do you want to overwrite it?",
"Filter by tag" : "Filter by tag",
"Today" : "Today",
"Show archived cards" : "Show archived cards", "Show archived cards" : "Show archived cards",
"Details" : "Details", "Hide archived cards" : "Hide archived cards",
"Sharing" : "Sharing",
"Tags" : "Tags", "Tags" : "Tags",
"Undo" : "Undo", "Undo" : "Undo",
"Can edit" : "Can edit", "Can edit" : "Can edit",
@@ -44,11 +39,8 @@
"Created" : "Created", "Created" : "Created",
"Upload attachment" : "Upload attachment", "Upload attachment" : "Upload attachment",
"Save" : "Save", "Save" : "Save",
"Reply" : "Reply",
"Update" : "Update", "Update" : "Update",
"(group)" : "(group)",
"Delete card" : "Delete card", "Delete card" : "Delete card",
"seconds ago" : "seconds ago",
"Archived boards" : "Archived boards", "Archived boards" : "Archived boards",
"Shared boards" : "Shared boards", "Shared boards" : "Shared boards",
"Settings" : "Settings", "Settings" : "Settings",

View File

@@ -101,15 +101,14 @@ OC.L10N.register(
"Select the board to link to a project" : "Elekti la tabulon ligotan al projekto", "Select the board to link to a project" : "Elekti la tabulon ligotan al projekto",
"Select board" : "Elekti tabulon", "Select board" : "Elekti tabulon",
"Cancel" : "Nuligi", "Cancel" : "Nuligi",
"File already exists" : "La dosiero jam ekzistas",
"Today" : "Hodiaŭ",
"Show archived cards" : "Montri arĥivigitajn kartojn", "Show archived cards" : "Montri arĥivigitajn kartojn",
"Hide archived cards" : "Kaŝi arĥivigitajn kartojn",
"Toggle compact mode" : "Baskuligi densigan vidon", "Toggle compact mode" : "Baskuligi densigan vidon",
"Details" : "Detaloj",
"Sharing" : "Kunhavigo", "Sharing" : "Kunhavigo",
"Tags" : "Etikedoj", "Tags" : "Etikedoj",
"Deleted items" : "Forigitaj elementoj", "Deleted items" : "Forigitaj elementoj",
"Timeline" : "Kronologio", "Timeline" : "Kronologio",
"Deleted stacks" : "Forigitaj stakoj",
"Undo" : "Malfari", "Undo" : "Malfari",
"Deleted cards" : "Forigitaj kartoj", "Deleted cards" : "Forigitaj kartoj",
"(Group)" : "(grupo)", "(Group)" : "(grupo)",
@@ -119,6 +118,7 @@ OC.L10N.register(
"Add a new stack" : "Aldoni novan stakon", "Add a new stack" : "Aldoni novan stakon",
"Add card" : "Aldoni karton", "Add card" : "Aldoni karton",
"Edit" : "Redakti", "Edit" : "Redakti",
"Details" : "Detaloj",
"Due date" : "Limdato", "Due date" : "Limdato",
"Remove due date" : "Viŝi limdaton", "Remove due date" : "Viŝi limdaton",
"Description" : "Priskribo", "Description" : "Priskribo",
@@ -129,11 +129,8 @@ OC.L10N.register(
"Created" : "Kreita", "Created" : "Kreita",
"Upload attachment" : "Alŝuti dosieran aldonaĵon", "Upload attachment" : "Alŝuti dosieran aldonaĵon",
"Save" : "Konservi", "Save" : "Konservi",
"Reply" : "Respondi",
"Update" : "Ĝisdatigi", "Update" : "Ĝisdatigi",
"(group)" : "(grupo)",
"Delete card" : "Forigi karton", "Delete card" : "Forigi karton",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Archived boards" : "Arĥivigitaj tabuloj", "Archived boards" : "Arĥivigitaj tabuloj",
"Shared boards" : "Kunhavigitaj tabuloj", "Shared boards" : "Kunhavigitaj tabuloj",
"Settings" : "Agordo", "Settings" : "Agordo",
@@ -144,7 +141,6 @@ OC.L10N.register(
"Archive board" : "Enarĥivigi tabulon", "Archive board" : "Enarĥivigi tabulon",
"Unarchive board" : "Elarĥivigi tabulon", "Unarchive board" : "Elarĥivigi tabulon",
"Delete board" : "Forigi tabulon", "Delete board" : "Forigi tabulon",
"Link to a board" : "Ligilo al tabulo", "Link to a board" : "Ligilo al tabulo"
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -99,15 +99,14 @@
"Select the board to link to a project" : "Elekti la tabulon ligotan al projekto", "Select the board to link to a project" : "Elekti la tabulon ligotan al projekto",
"Select board" : "Elekti tabulon", "Select board" : "Elekti tabulon",
"Cancel" : "Nuligi", "Cancel" : "Nuligi",
"File already exists" : "La dosiero jam ekzistas",
"Today" : "Hodiaŭ",
"Show archived cards" : "Montri arĥivigitajn kartojn", "Show archived cards" : "Montri arĥivigitajn kartojn",
"Hide archived cards" : "Kaŝi arĥivigitajn kartojn",
"Toggle compact mode" : "Baskuligi densigan vidon", "Toggle compact mode" : "Baskuligi densigan vidon",
"Details" : "Detaloj",
"Sharing" : "Kunhavigo", "Sharing" : "Kunhavigo",
"Tags" : "Etikedoj", "Tags" : "Etikedoj",
"Deleted items" : "Forigitaj elementoj", "Deleted items" : "Forigitaj elementoj",
"Timeline" : "Kronologio", "Timeline" : "Kronologio",
"Deleted stacks" : "Forigitaj stakoj",
"Undo" : "Malfari", "Undo" : "Malfari",
"Deleted cards" : "Forigitaj kartoj", "Deleted cards" : "Forigitaj kartoj",
"(Group)" : "(grupo)", "(Group)" : "(grupo)",
@@ -117,6 +116,7 @@
"Add a new stack" : "Aldoni novan stakon", "Add a new stack" : "Aldoni novan stakon",
"Add card" : "Aldoni karton", "Add card" : "Aldoni karton",
"Edit" : "Redakti", "Edit" : "Redakti",
"Details" : "Detaloj",
"Due date" : "Limdato", "Due date" : "Limdato",
"Remove due date" : "Viŝi limdaton", "Remove due date" : "Viŝi limdaton",
"Description" : "Priskribo", "Description" : "Priskribo",
@@ -127,11 +127,8 @@
"Created" : "Kreita", "Created" : "Kreita",
"Upload attachment" : "Alŝuti dosieran aldonaĵon", "Upload attachment" : "Alŝuti dosieran aldonaĵon",
"Save" : "Konservi", "Save" : "Konservi",
"Reply" : "Respondi",
"Update" : "Ĝisdatigi", "Update" : "Ĝisdatigi",
"(group)" : "(grupo)",
"Delete card" : "Forigi karton", "Delete card" : "Forigi karton",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Archived boards" : "Arĥivigitaj tabuloj", "Archived boards" : "Arĥivigitaj tabuloj",
"Shared boards" : "Kunhavigitaj tabuloj", "Shared boards" : "Kunhavigitaj tabuloj",
"Settings" : "Agordo", "Settings" : "Agordo",
@@ -142,7 +139,6 @@
"Archive board" : "Enarĥivigi tabulon", "Archive board" : "Enarĥivigi tabulon",
"Unarchive board" : "Elarĥivigi tabulon", "Unarchive board" : "Elarĥivigi tabulon",
"Delete board" : "Forigi tabulon", "Delete board" : "Forigi tabulon",
"Link to a board" : "Ligilo al tabulo", "Link to a board" : "Ligilo al tabulo"
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -107,35 +107,18 @@ OC.L10N.register(
"Select a card" : "Seleccionar una tarjeta", "Select a card" : "Seleccionar una tarjeta",
"Link to card" : "Enlace a tarjeta", "Link to card" : "Enlace a tarjeta",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"A file with the name {filename} already exists." : "Ya existe un archivo con el nombre {filename}.",
"Do you want to overwrite it?" : "¿Desea sobreescribirlo?",
"Overwrite file" : "Sobreescribir archivo",
"Keep existing file" : "Mantener el archivo existente",
"This board is read only" : "Este tablero es de sólo lectura",
"Drop your files to upload" : "Arrastra tus archivos para subir",
"Archived cards" : "Tarjetas archivadas",
"Add new list" : "Añadir nueva lista", "Add new list" : "Añadir nueva lista",
"List name" : "Nombre de la lista", "List name" : "Nombre de la lista",
"Apply filter" : "Aplicar filtro",
"Filter by tag" : "Filtrar por etiqueta",
"Filter by assigned user" : "Filtrar por usuario asignado",
"Filter by due date" : "Filtrar por fecha de finalización",
"Overdue" : "Demorado",
"Today" : "Hoy",
"Next 7 days" : "Siguientes 7 días",
"Next 30 days" : "Siguientes 30 días",
"No due date" : "Sin fecha de vencimiento",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Toggle compact mode" : "Mostrar/ocultar modo compacto", "Toggle compact mode" : "Mostrar/ocultar modo compacto",
"Details" : "Detalles",
"Loading board" : "Cargando tablero", "Loading board" : "Cargando tablero",
"Board not found" : "Tablero no encontrado", "Board not found" : "Tablero no encontrado",
"Sharing" : "Compartir", "Sharing" : "Compartir",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados", "Deleted items" : "Elementos eliminados",
"Timeline" : "Línea de tiempo", "Timeline" : "Línea de tiempo",
"Deleted lists" : "Listas eliminadas", "Deleted stacks" : "Pilas eliminadas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Deleted cards" : "Cartas eliminadas", "Deleted cards" : "Cartas eliminadas",
"Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo ...", "Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo ...",
@@ -151,41 +134,33 @@ OC.L10N.register(
"Add card" : "Añadir tarjeta", "Add card" : "Añadir tarjeta",
"Add a new card" : "Añadir una nueva tarjeta", "Add a new card" : "Añadir una nueva tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Add a new tag" : "Añade una nueva etiqueta", "Add a new label" : "Añadir una etiqueta nueva",
"title and color value must be provided" : "Se debe indicar un valor para título y color ", "title and color value must be provided" : "Se debe indicar un valor para título y color ",
"Load More" : "Cargar más",
"Details" : "Detalles",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...", "Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Assign to users" : "Asignar a usuarios", "Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Assign a user to this card…" : "Asignar un usuario a esta tarjeta...", "Assign a user to this card…" : "Asignar un usuario a esta tarjeta...",
"Due date" : "Fecha límite", "Due date" : "Fecha límite",
"Set a due date" : "Fijar una fecha límite", "Set a due date" : "Fijar una fecha límite",
"Remove due date" : "Eliminar fecha límite", "Remove due date" : "Eliminar fecha límite",
"Description" : "Descripción", "Description" : "Descripción",
"(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)",
"Formatting help" : "Ayuda de formato", "Formatting help" : "Ayuda de formato",
"Attachments" : "Adjuntos", "Attachments" : "Adjuntos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Modified" : "Modificado", "Modified" : "Modificado",
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Subir adjunto", "Upload attachment" : "Subir adjunto",
"Delete Attachment" : "Eliminar adjunto", "New comment" : "Comentario nuevo",
"Restore Attachment" : "Restaurar Adjunto",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Save" : "Guardar", "Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.", "No users found" : "No se han encontrado usuarios",
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.", "No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"In reply to" : "En respuesta a",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(circle)",
"Assign to me" : "Asignarme a mí", "Assign to me" : "Asignarme a mí",
"Delete card" : "Eliminar tarjeta", "Delete card" : "Eliminar tarjeta",
"Move card" : "Mover tarjeta", "Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta", "Card details" : "Detalles de la tarjeta",
"Select a stack" : "Seleccionar una pila", "Select a stack" : "Seleccionar una pila",
"seconds ago" : "hace unos segundos",
"All boards" : "Todos los tableros", "All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
@@ -200,8 +175,6 @@ OC.L10N.register(
"Delete board" : "Eliminar tablero", "Delete board" : "Eliminar tablero",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Link to a board" : "Enlace a un tablero", "Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta", "Link to a card" : "Enlace a una tarjeta"
"Something went wrong" : "Algo ha ido mal",
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -105,35 +105,18 @@
"Select a card" : "Seleccionar una tarjeta", "Select a card" : "Seleccionar una tarjeta",
"Link to card" : "Enlace a tarjeta", "Link to card" : "Enlace a tarjeta",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"A file with the name {filename} already exists." : "Ya existe un archivo con el nombre {filename}.",
"Do you want to overwrite it?" : "¿Desea sobreescribirlo?",
"Overwrite file" : "Sobreescribir archivo",
"Keep existing file" : "Mantener el archivo existente",
"This board is read only" : "Este tablero es de sólo lectura",
"Drop your files to upload" : "Arrastra tus archivos para subir",
"Archived cards" : "Tarjetas archivadas",
"Add new list" : "Añadir nueva lista", "Add new list" : "Añadir nueva lista",
"List name" : "Nombre de la lista", "List name" : "Nombre de la lista",
"Apply filter" : "Aplicar filtro",
"Filter by tag" : "Filtrar por etiqueta",
"Filter by assigned user" : "Filtrar por usuario asignado",
"Filter by due date" : "Filtrar por fecha de finalización",
"Overdue" : "Demorado",
"Today" : "Hoy",
"Next 7 days" : "Siguientes 7 días",
"Next 30 days" : "Siguientes 30 días",
"No due date" : "Sin fecha de vencimiento",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Toggle compact mode" : "Mostrar/ocultar modo compacto", "Toggle compact mode" : "Mostrar/ocultar modo compacto",
"Details" : "Detalles",
"Loading board" : "Cargando tablero", "Loading board" : "Cargando tablero",
"Board not found" : "Tablero no encontrado", "Board not found" : "Tablero no encontrado",
"Sharing" : "Compartir", "Sharing" : "Compartir",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados", "Deleted items" : "Elementos eliminados",
"Timeline" : "Línea de tiempo", "Timeline" : "Línea de tiempo",
"Deleted lists" : "Listas eliminadas", "Deleted stacks" : "Pilas eliminadas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Deleted cards" : "Cartas eliminadas", "Deleted cards" : "Cartas eliminadas",
"Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo ...", "Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo ...",
@@ -149,41 +132,33 @@
"Add card" : "Añadir tarjeta", "Add card" : "Añadir tarjeta",
"Add a new card" : "Añadir una nueva tarjeta", "Add a new card" : "Añadir una nueva tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Add a new tag" : "Añade una nueva etiqueta", "Add a new label" : "Añadir una etiqueta nueva",
"title and color value must be provided" : "Se debe indicar un valor para título y color ", "title and color value must be provided" : "Se debe indicar un valor para título y color ",
"Load More" : "Cargar más",
"Details" : "Detalles",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...", "Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Assign to users" : "Asignar a usuarios", "Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Assign a user to this card…" : "Asignar un usuario a esta tarjeta...", "Assign a user to this card…" : "Asignar un usuario a esta tarjeta...",
"Due date" : "Fecha límite", "Due date" : "Fecha límite",
"Set a due date" : "Fijar una fecha límite", "Set a due date" : "Fijar una fecha límite",
"Remove due date" : "Eliminar fecha límite", "Remove due date" : "Eliminar fecha límite",
"Description" : "Descripción", "Description" : "Descripción",
"(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)",
"Formatting help" : "Ayuda de formato", "Formatting help" : "Ayuda de formato",
"Attachments" : "Adjuntos", "Attachments" : "Adjuntos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Modified" : "Modificado", "Modified" : "Modificado",
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Subir adjunto", "Upload attachment" : "Subir adjunto",
"Delete Attachment" : "Eliminar adjunto", "New comment" : "Comentario nuevo",
"Restore Attachment" : "Restaurar Adjunto",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Save" : "Guardar", "Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.", "No users found" : "No se han encontrado usuarios",
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.", "No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"In reply to" : "En respuesta a",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(circle)",
"Assign to me" : "Asignarme a mí", "Assign to me" : "Asignarme a mí",
"Delete card" : "Eliminar tarjeta", "Delete card" : "Eliminar tarjeta",
"Move card" : "Mover tarjeta", "Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta", "Card details" : "Detalles de la tarjeta",
"Select a stack" : "Seleccionar una pila", "Select a stack" : "Seleccionar una pila",
"seconds ago" : "hace unos segundos",
"All boards" : "Todos los tableros", "All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
@@ -198,8 +173,6 @@
"Delete board" : "Eliminar tablero", "Delete board" : "Eliminar tablero",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Link to a board" : "Enlace a un tablero", "Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta", "Link to a card" : "Enlace a una tarjeta"
"Something went wrong" : "Algo ha ido mal",
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -17,13 +17,8 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Filter by tag" : "Filtrar por etiqueta",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Can edit" : "Puede editar", "Can edit" : "Puede editar",
@@ -41,10 +36,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -15,13 +15,8 @@
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Filter by tag" : "Filtrar por etiqueta",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Can edit" : "Puede editar", "Can edit" : "Puede editar",
@@ -39,10 +34,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -14,9 +14,8 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta un directorio temporal", "Missing a temporary folder" : "Falta un directorio temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -24,6 +23,7 @@ OC.L10N.register(
"Can share" : "Puede compartir", "Can share" : "Puede compartir",
"Delete" : "Eliminar", "Delete" : "Eliminar",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Description" : "Descripción", "Description" : "Descripción",
"Formatting help" : "Ayuda de formato", "Formatting help" : "Ayuda de formato",
@@ -32,10 +32,7 @@ OC.L10N.register(
"Modified" : "Modificado", "Modified" : "Modificado",
"Created" : "Creado", "Created" : "Creado",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "segundos",
"Settings" : "Ajustes", "Settings" : "Ajustes",
"New board title" : "Nuevo título de tablero", "New board title" : "Nuevo título de tablero",
"An error occurred" : "Ocurrió un error", "An error occurred" : "Ocurrió un error",

View File

@@ -12,9 +12,8 @@
"Missing a temporary folder" : "Falta un directorio temporal", "Missing a temporary folder" : "Falta un directorio temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -22,6 +21,7 @@
"Can share" : "Puede compartir", "Can share" : "Puede compartir",
"Delete" : "Eliminar", "Delete" : "Eliminar",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Description" : "Descripción", "Description" : "Descripción",
"Formatting help" : "Ayuda de formato", "Formatting help" : "Ayuda de formato",
@@ -30,10 +30,7 @@
"Modified" : "Modificado", "Modified" : "Modificado",
"Created" : "Creado", "Created" : "Creado",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "segundos",
"Settings" : "Ajustes", "Settings" : "Ajustes",
"New board title" : "Nuevo título de tablero", "New board title" : "Nuevo título de tablero",
"An error occurred" : "Ocurrió un error", "An error occurred" : "Ocurrió un error",

View File

@@ -21,11 +21,8 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -35,6 +32,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -44,10 +42,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -19,11 +19,8 @@
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -33,6 +30,7 @@
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -42,10 +40,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -21,12 +21,8 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Can edit" : "Puede editar", "Can edit" : "Puede editar",
@@ -44,10 +40,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -19,12 +19,8 @@
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Can edit" : "Puede editar", "Can edit" : "Puede editar",
@@ -42,10 +38,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -21,11 +21,8 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -35,6 +32,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -44,10 +42,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -19,11 +19,8 @@
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -33,6 +30,7 @@
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -42,10 +40,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -21,12 +21,8 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Can edit" : "Puede editar", "Can edit" : "Puede editar",
@@ -44,10 +40,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -19,12 +19,8 @@
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Can edit" : "Puede editar", "Can edit" : "Puede editar",
@@ -42,10 +38,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -21,11 +21,8 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -35,6 +32,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -44,10 +42,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -19,11 +19,8 @@
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -33,6 +30,7 @@
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -42,10 +40,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -21,12 +21,8 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Can edit" : "Puede editar", "Can edit" : "Puede editar",
@@ -44,10 +40,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -19,12 +19,8 @@
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Can edit" : "Puede editar", "Can edit" : "Puede editar",
@@ -42,10 +38,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -17,11 +17,8 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -31,6 +28,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -40,10 +38,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -15,11 +15,8 @@
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -29,6 +26,7 @@
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -38,10 +36,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -21,12 +21,8 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Filter by tag" : "Filtrar por etiqueta",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -36,6 +32,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -46,10 +43,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -19,12 +19,8 @@
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Filter by tag" : "Filtrar por etiqueta",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -34,6 +30,7 @@
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -44,10 +41,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -17,11 +17,8 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -31,6 +28,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -40,10 +38,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -15,11 +15,8 @@
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -29,6 +26,7 @@
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -38,10 +36,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -17,11 +17,8 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -31,6 +28,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -40,10 +38,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -15,11 +15,8 @@
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -29,6 +26,7 @@
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -38,10 +36,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -17,11 +17,8 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -31,6 +28,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -40,10 +38,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -15,11 +15,8 @@
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -29,6 +26,7 @@
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -38,10 +36,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -17,11 +17,8 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -31,6 +28,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -40,10 +38,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -15,11 +15,8 @@
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -29,6 +26,7 @@
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -38,10 +36,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -17,11 +17,8 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -31,6 +28,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -40,10 +38,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -15,11 +15,8 @@
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -29,6 +26,7 @@
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -38,10 +36,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -21,12 +21,8 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Can edit" : "Puede editar", "Can edit" : "Puede editar",
@@ -44,10 +40,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -19,12 +19,8 @@
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
"Can edit" : "Puede editar", "Can edit" : "Puede editar",
@@ -42,10 +38,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -17,11 +17,8 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -31,6 +28,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -40,10 +38,7 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -15,11 +15,8 @@
"Missing a temporary folder" : "Falta una carpeta temporal", "Missing a temporary folder" : "Falta una carpeta temporal",
"Create new board" : "Crear un nuevo tablero", "Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Undo" : "Deshacer", "Undo" : "Deshacer",
@@ -29,6 +26,7 @@
"Add a new stack" : "Agregar una nueva pila", "Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta", "Add card" : "Agregar tarjeta",
"Edit" : "Editar", "Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción", "Description" : "Descripción",
@@ -38,10 +36,7 @@
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Cargar adjunto", "Upload attachment" : "Cargar adjunto",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",

View File

@@ -10,25 +10,20 @@ OC.L10N.register(
"No file was uploaded" : "Ühtegi faili ei latud üles", "No file was uploaded" : "Ühtegi faili ei latud üles",
"Missing a temporary folder" : "Ajutine kausta on puudu", "Missing a temporary folder" : "Ajutine kausta on puudu",
"Cancel" : "Loobu", "Cancel" : "Loobu",
"Today" : "Täna",
"Details" : "Üksikasjad",
"Sharing" : "Jagamine", "Sharing" : "Jagamine",
"Tags" : "Sildid", "Tags" : "Sildid",
"Can edit" : "Võib redigeerida", "Can edit" : "Võib redigeerida",
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Kustuta", "Delete" : "Kustuta",
"Edit" : "Redigeeri", "Edit" : "Redigeeri",
"Details" : "Üksikasjad",
"Due date" : "Tähtaeg", "Due date" : "Tähtaeg",
"Description" : "Kirjeldus", "Description" : "Kirjeldus",
"Comments" : "Kommentaarid", "Comments" : "Kommentaarid",
"Modified" : "Muudetud", "Modified" : "Muudetud",
"Created" : "Loodud", "Created" : "Loodud",
"Save" : "Salvesta", "Save" : "Salvesta",
"Reply" : "Vasta",
"Update" : "Uuenda", "Update" : "Uuenda",
"(group)" : "(grupp)", "Settings" : "Seaded"
"seconds ago" : "sekundit tagasi",
"Settings" : "Seaded",
"An error occurred" : "Tekkis tõrge"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -8,25 +8,20 @@
"No file was uploaded" : "Ühtegi faili ei latud üles", "No file was uploaded" : "Ühtegi faili ei latud üles",
"Missing a temporary folder" : "Ajutine kausta on puudu", "Missing a temporary folder" : "Ajutine kausta on puudu",
"Cancel" : "Loobu", "Cancel" : "Loobu",
"Today" : "Täna",
"Details" : "Üksikasjad",
"Sharing" : "Jagamine", "Sharing" : "Jagamine",
"Tags" : "Sildid", "Tags" : "Sildid",
"Can edit" : "Võib redigeerida", "Can edit" : "Võib redigeerida",
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Kustuta", "Delete" : "Kustuta",
"Edit" : "Redigeeri", "Edit" : "Redigeeri",
"Details" : "Üksikasjad",
"Due date" : "Tähtaeg", "Due date" : "Tähtaeg",
"Description" : "Kirjeldus", "Description" : "Kirjeldus",
"Comments" : "Kommentaarid", "Comments" : "Kommentaarid",
"Modified" : "Muudetud", "Modified" : "Muudetud",
"Created" : "Loodud", "Created" : "Loodud",
"Save" : "Salvesta", "Save" : "Salvesta",
"Reply" : "Vasta",
"Update" : "Uuenda", "Update" : "Uuenda",
"(group)" : "(grupp)", "Settings" : "Seaded"
"seconds ago" : "sekundit tagasi",
"Settings" : "Seaded",
"An error occurred" : "Tekkis tõrge"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -96,112 +96,52 @@ OC.L10N.register(
"Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi", "Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi",
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du", "A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du", "No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
"Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
"Create new board" : "Sortu taula berri bat", "Create new board" : "Sortu taula berri bat",
"new board" : "taula berria",
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", "Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
"Select board" : "Hautatu taula", "Select board" : "Hautatu taula",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Select a board" : "Hautatu taula bat",
"Select a card" : "Hautatu txartel bat",
"Link to card" : "Estekatu txartelera",
"Cancel" : "Utzi", "Cancel" : "Utzi",
"File already exists" : "Badago izen bereko fitxategi bat",
"A file with the name {filename} already exists." : "{filename} izeneko fitxategia existitzen da dagoeneko.",
"Do you want to overwrite it?" : "Gainidatzi nahi duzu?",
"Overwrite file" : "Gainidatzi fitxategia",
"Keep existing file" : "Mantendu dagoen fitxategia",
"This board is read only" : "Taula hau irakurtzeko soilik da",
"Drop your files to upload" : "Jaregin zure fitxategiak kargatzeko",
"Archived cards" : "Artxibatutako txartelak",
"Add new list" : "Gehitu zerrenda berria",
"List name" : "Zerrendaren izena",
"Apply filter" : "Ezarri iragazkia",
"Filter by tag" : "Iragazi etiketaz",
"Filter by assigned user" : "Iragazi esleitutako erabiltzailez",
"Filter by due date" : "Iragazi epe-mugaz",
"Overdue" : "Atzeratuta",
"Today" : "Gaur",
"Next 7 days" : "Hurrengo 7 egunetan",
"Next 30 days" : "Hurrengo 30 egunetan",
"No due date" : "Epe-mugarik gabe",
"Show archived cards" : "Erakutsi artxibatutako txartelak", "Show archived cards" : "Erakutsi artxibatutako txartelak",
"Hide archived cards" : "Ezkutatu artxibatutako txartelak",
"Toggle compact mode" : "Txandakatu modu trinkoa", "Toggle compact mode" : "Txandakatu modu trinkoa",
"Details" : "Xehetasunak",
"Loading board" : "Taula kargatzen",
"Board not found" : "Ez da taula aurkitu",
"Sharing" : "Partekatzea", "Sharing" : "Partekatzea",
"Tags" : "Etiketak", "Tags" : "Etiketak",
"Deleted items" : "Ezabatutako elementuak", "Deleted items" : "Ezabatutako elementuak",
"Timeline" : "Denbora-lerroa", "Timeline" : "Denbora-lerroa",
"Deleted lists" : "Ezabatutako zerrendak", "Deleted stacks" : "Ezabatutako pilak",
"Undo" : "Desegin", "Undo" : "Desegin",
"Deleted cards" : "Ezabatutako txartelak", "Deleted cards" : "Ezabatutako txartelak",
"Share board with a user, group or circle …" : "Partekatu taula erabiltzaile, talde edo zirkulu batekin ...",
"Board owner" : "Taularen jabea",
"(Group)" : "(Taldea)",
"(Circle)" : "(Zirkulua)",
"Can edit" : "Editatu dezake", "Can edit" : "Editatu dezake",
"Can share" : "Partekatu dezake", "Can share" : "Partekatu dezake",
"Can manage" : "Kudeatu dezake",
"Delete" : "Ezabatu", "Delete" : "Ezabatu",
"Add a new stack" : "Gehitu pila berria", "Add a new stack" : "Gehitu pila berria",
"Delete list" : "Zerrenda ezabatu",
"Add card" : "Gehitu txartela", "Add card" : "Gehitu txartela",
"Add a new card" : "Gehitu txartel berri bat",
"Edit" : "Editatu", "Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat", "Details" : "Xehetasunak",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
"Assign to users" : "Esleitu erabiltzaileei",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
"Assign a user to this card…" : "Esleitu erabiltzaile bat txartel honi...",
"Due date" : "Epe-muga", "Due date" : "Epe-muga",
"Set a due date" : "Ezarri epe-muga",
"Remove due date" : "Ezabatu epe-muga", "Remove due date" : "Ezabatu epe-muga",
"Description" : "Deskribapena", "Description" : "Deskribapena",
"(Unsaved)" : "(Gorde gabe)",
"(Saving…)" : "(Gordetzen...)",
"Formatting help" : "Formatua emateko laguntza", "Formatting help" : "Formatua emateko laguntza",
"Attachments" : "Eranskinak", "Attachments" : "Eranskinak",
"Comments" : "Iruzkinak", "Comments" : "Iruzkinak",
"Modified" : "Aldatua", "Modified" : "Aldatua",
"Created" : "Sortua", "Created" : "Sortua",
"Upload attachment" : "Igo eranskina", "Upload attachment" : "Igo eranskina",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Save" : "Gorde", "Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
"In reply to" : "Honi erantzunez",
"Reply" : "Erantzun",
"Update" : "Eguneratu", "Update" : "Eguneratu",
"(group)" : "(taldea)",
"(circle)" : "(zirkulua)",
"Assign to me" : "Esleitu niri",
"Delete card" : "Ezabatu txartela", "Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu txartela", "Move card" : "Mugitu txartela",
"Card details" : "Txartelaren xehetasunak", "Archived boards" : "Artxibatutako txartelak",
"Select a stack" : "Hautatu pila bat", "Shared boards" : "Partekatutako txartelak",
"seconds ago" : "segundo lehenago",
"All boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako taulak",
"Shared boards" : "Partekatutako taulak",
"Settings" : "Ezarpenak", "Settings" : "Ezarpenak",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute.", "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute.",
"New board title" : "Taula berriaren izenburua", "New board title" : "Taula berriaren izenburua",
"Edit board" : "Editatu taula", "Edit board" : "Editatu taula",
"An error occurred" : "Errore bat gertatu da", "An error occurred" : "Errore bat gertatu da",
"Clone board" : "Klonatu taula",
"Archive board" : "Artxibatu taula", "Archive board" : "Artxibatu taula",
"Unarchive board" : "Atera taula artxibotik", "Unarchive board" : "Atera taula artxibotik",
"Delete board" : "Ezabatu taula", "Delete board" : "Ezabatu taula",
"Board details" : "Mahaigainaren xehetasunak", "Board details" : "Mahaigainaren xehetasunak",
"Link to a board" : "Estekatu taula batera", "Link to a board" : "Estekatu taula batera"
"Link to a card" : "Estekatu txartel batera",
"Something went wrong" : "Zerbait gaizki joan da",
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -94,112 +94,52 @@
"Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi", "Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi",
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du", "A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du", "No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
"Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
"Create new board" : "Sortu taula berri bat", "Create new board" : "Sortu taula berri bat",
"new board" : "taula berria",
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", "Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
"Select board" : "Hautatu taula", "Select board" : "Hautatu taula",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Select a board" : "Hautatu taula bat",
"Select a card" : "Hautatu txartel bat",
"Link to card" : "Estekatu txartelera",
"Cancel" : "Utzi", "Cancel" : "Utzi",
"File already exists" : "Badago izen bereko fitxategi bat",
"A file with the name {filename} already exists." : "{filename} izeneko fitxategia existitzen da dagoeneko.",
"Do you want to overwrite it?" : "Gainidatzi nahi duzu?",
"Overwrite file" : "Gainidatzi fitxategia",
"Keep existing file" : "Mantendu dagoen fitxategia",
"This board is read only" : "Taula hau irakurtzeko soilik da",
"Drop your files to upload" : "Jaregin zure fitxategiak kargatzeko",
"Archived cards" : "Artxibatutako txartelak",
"Add new list" : "Gehitu zerrenda berria",
"List name" : "Zerrendaren izena",
"Apply filter" : "Ezarri iragazkia",
"Filter by tag" : "Iragazi etiketaz",
"Filter by assigned user" : "Iragazi esleitutako erabiltzailez",
"Filter by due date" : "Iragazi epe-mugaz",
"Overdue" : "Atzeratuta",
"Today" : "Gaur",
"Next 7 days" : "Hurrengo 7 egunetan",
"Next 30 days" : "Hurrengo 30 egunetan",
"No due date" : "Epe-mugarik gabe",
"Show archived cards" : "Erakutsi artxibatutako txartelak", "Show archived cards" : "Erakutsi artxibatutako txartelak",
"Hide archived cards" : "Ezkutatu artxibatutako txartelak",
"Toggle compact mode" : "Txandakatu modu trinkoa", "Toggle compact mode" : "Txandakatu modu trinkoa",
"Details" : "Xehetasunak",
"Loading board" : "Taula kargatzen",
"Board not found" : "Ez da taula aurkitu",
"Sharing" : "Partekatzea", "Sharing" : "Partekatzea",
"Tags" : "Etiketak", "Tags" : "Etiketak",
"Deleted items" : "Ezabatutako elementuak", "Deleted items" : "Ezabatutako elementuak",
"Timeline" : "Denbora-lerroa", "Timeline" : "Denbora-lerroa",
"Deleted lists" : "Ezabatutako zerrendak", "Deleted stacks" : "Ezabatutako pilak",
"Undo" : "Desegin", "Undo" : "Desegin",
"Deleted cards" : "Ezabatutako txartelak", "Deleted cards" : "Ezabatutako txartelak",
"Share board with a user, group or circle …" : "Partekatu taula erabiltzaile, talde edo zirkulu batekin ...",
"Board owner" : "Taularen jabea",
"(Group)" : "(Taldea)",
"(Circle)" : "(Zirkulua)",
"Can edit" : "Editatu dezake", "Can edit" : "Editatu dezake",
"Can share" : "Partekatu dezake", "Can share" : "Partekatu dezake",
"Can manage" : "Kudeatu dezake",
"Delete" : "Ezabatu", "Delete" : "Ezabatu",
"Add a new stack" : "Gehitu pila berria", "Add a new stack" : "Gehitu pila berria",
"Delete list" : "Zerrenda ezabatu",
"Add card" : "Gehitu txartela", "Add card" : "Gehitu txartela",
"Add a new card" : "Gehitu txartel berri bat",
"Edit" : "Editatu", "Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat", "Details" : "Xehetasunak",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
"Assign to users" : "Esleitu erabiltzaileei",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
"Assign a user to this card…" : "Esleitu erabiltzaile bat txartel honi...",
"Due date" : "Epe-muga", "Due date" : "Epe-muga",
"Set a due date" : "Ezarri epe-muga",
"Remove due date" : "Ezabatu epe-muga", "Remove due date" : "Ezabatu epe-muga",
"Description" : "Deskribapena", "Description" : "Deskribapena",
"(Unsaved)" : "(Gorde gabe)",
"(Saving…)" : "(Gordetzen...)",
"Formatting help" : "Formatua emateko laguntza", "Formatting help" : "Formatua emateko laguntza",
"Attachments" : "Eranskinak", "Attachments" : "Eranskinak",
"Comments" : "Iruzkinak", "Comments" : "Iruzkinak",
"Modified" : "Aldatua", "Modified" : "Aldatua",
"Created" : "Sortua", "Created" : "Sortua",
"Upload attachment" : "Igo eranskina", "Upload attachment" : "Igo eranskina",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Save" : "Gorde", "Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
"In reply to" : "Honi erantzunez",
"Reply" : "Erantzun",
"Update" : "Eguneratu", "Update" : "Eguneratu",
"(group)" : "(taldea)",
"(circle)" : "(zirkulua)",
"Assign to me" : "Esleitu niri",
"Delete card" : "Ezabatu txartela", "Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu txartela", "Move card" : "Mugitu txartela",
"Card details" : "Txartelaren xehetasunak", "Archived boards" : "Artxibatutako txartelak",
"Select a stack" : "Hautatu pila bat", "Shared boards" : "Partekatutako txartelak",
"seconds ago" : "segundo lehenago",
"All boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako taulak",
"Shared boards" : "Partekatutako taulak",
"Settings" : "Ezarpenak", "Settings" : "Ezarpenak",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute.", "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute.",
"New board title" : "Taula berriaren izenburua", "New board title" : "Taula berriaren izenburua",
"Edit board" : "Editatu taula", "Edit board" : "Editatu taula",
"An error occurred" : "Errore bat gertatu da", "An error occurred" : "Errore bat gertatu da",
"Clone board" : "Klonatu taula",
"Archive board" : "Artxibatu taula", "Archive board" : "Artxibatu taula",
"Unarchive board" : "Atera taula artxibotik", "Unarchive board" : "Atera taula artxibotik",
"Delete board" : "Ezabatu taula", "Delete board" : "Ezabatu taula",
"Board details" : "Mahaigainaren xehetasunak", "Board details" : "Mahaigainaren xehetasunak",
"Link to a board" : "Estekatu taula batera", "Link to a board" : "Estekatu taula batera"
"Link to a card" : "Estekatu txartel batera",
"Something went wrong" : "Zerbait gaizki joan da",
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -9,10 +9,6 @@ OC.L10N.register(
"No file was uploaded" : "هیچ پروندهای بارگذاری نشده", "No file was uploaded" : "هیچ پروندهای بارگذاری نشده",
"Missing a temporary folder" : "یک پوشه موقت گم شده", "Missing a temporary folder" : "یک پوشه موقت گم شده",
"Cancel" : "لغو", "Cancel" : "لغو",
"File already exists" : "فایل از قبل موجود میباشد",
"Today" : "Today",
"Details" : "جزئیات",
"Sharing" : "اشتراک گذاری",
"Tags" : "برچسب‌ها", "Tags" : "برچسب‌ها",
"Undo" : "برگرداندن", "Undo" : "برگرداندن",
"(Group)" : "(گروه)", "(Group)" : "(گروه)",
@@ -27,17 +23,12 @@ OC.L10N.register(
"Comments" : "نظرات", "Comments" : "نظرات",
"Modified" : "تغییر یافته", "Modified" : "تغییر یافته",
"Created" : "ایجاد شده", "Created" : "ایجاد شده",
"Upload attachment" : "پیوست را بارگیری کنید",
"Save" : "ذخیره", "Save" : "ذخیره",
"Reply" : "پاسخ",
"Update" : "به روز رسانی", "Update" : "به روز رسانی",
"(group)" : "(گروه)",
"Delete card" : "حذف کارت", "Delete card" : "حذف کارت",
"Move card" : "انتقال کارت", "Move card" : "انتقال کارت",
"seconds ago" : "ثانیه‌هایی پیش",
"Settings" : "تنظیمات", "Settings" : "تنظیمات",
"Edit board" : "ویرایش تخته ها", "Edit board" : "ویرایش تخته ها",
"An error occurred" : "خطایی روی داد",
"Archive board" : " بایگانی تابلو", "Archive board" : " بایگانی تابلو",
"Delete board" : "حذف تابلو" "Delete board" : "حذف تابلو"
}, },

View File

@@ -7,10 +7,6 @@
"No file was uploaded" : "هیچ پروندهای بارگذاری نشده", "No file was uploaded" : "هیچ پروندهای بارگذاری نشده",
"Missing a temporary folder" : "یک پوشه موقت گم شده", "Missing a temporary folder" : "یک پوشه موقت گم شده",
"Cancel" : "لغو", "Cancel" : "لغو",
"File already exists" : "فایل از قبل موجود میباشد",
"Today" : "Today",
"Details" : "جزئیات",
"Sharing" : "اشتراک گذاری",
"Tags" : "برچسب‌ها", "Tags" : "برچسب‌ها",
"Undo" : "برگرداندن", "Undo" : "برگرداندن",
"(Group)" : "(گروه)", "(Group)" : "(گروه)",
@@ -25,17 +21,12 @@
"Comments" : "نظرات", "Comments" : "نظرات",
"Modified" : "تغییر یافته", "Modified" : "تغییر یافته",
"Created" : "ایجاد شده", "Created" : "ایجاد شده",
"Upload attachment" : "پیوست را بارگیری کنید",
"Save" : "ذخیره", "Save" : "ذخیره",
"Reply" : "پاسخ",
"Update" : "به روز رسانی", "Update" : "به روز رسانی",
"(group)" : "(گروه)",
"Delete card" : "حذف کارت", "Delete card" : "حذف کارت",
"Move card" : "انتقال کارت", "Move card" : "انتقال کارت",
"seconds ago" : "ثانیه‌هایی پیش",
"Settings" : "تنظیمات", "Settings" : "تنظیمات",
"Edit board" : "ویرایش تخته ها", "Edit board" : "ویرایش تخته ها",
"An error occurred" : "خطایی روی داد",
"Archive board" : " بایگانی تابلو", "Archive board" : " بایگانی تابلو",
"Delete board" : "حذف تابلو" "Delete board" : "حذف تابلو"
},"pluralForm" :"nplurals=2; plural=(n > 1);" },"pluralForm" :"nplurals=2; plural=(n > 1);"

View File

@@ -58,7 +58,6 @@ OC.L10N.register(
"You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}", "You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} päivitti kortin {card} liitteen {attachment}", "{user} has updated the attachment {attachment} on card {card}" : "{user} päivitti kortin {card} liitteen {attachment}",
"You have deleted the attachment {attachment} from card {card}" : "Poistit liitteen {attachment} kortilta {card}", "You have deleted the attachment {attachment} from card {card}" : "Poistit liitteen {attachment} kortilta {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} poisti liitteen {attachment} kortilta {card}",
"You have restored the attachment {attachment} to card {card}" : "Palautit liitteen {attachment} kortille {card}", "You have restored the attachment {attachment} to card {card}" : "Palautit liitteen {attachment} kortille {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}",
"You have commented on card {card}" : "Kommentoit korttia {card}", "You have commented on card {card}" : "Kommentoit korttia {card}",
@@ -71,7 +70,6 @@ OC.L10N.register(
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.", "The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
"{user} has mentioned you in a comment on \"%s\"." : "{user} mainitsi sinut kommentissa kortilla \"%s\".",
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.", "The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
"{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.", "{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.",
"Finished" : "Valmistunut", "Finished" : "Valmistunut",
@@ -96,58 +94,28 @@ OC.L10N.register(
"No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s", "No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa",
"Create new board" : "Luo uusi taulu", "Create new board" : "Luo uusi taulu",
"new board" : "uusi taulu",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu", "Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Select board" : "Valitse taulu", "Select board" : "Valitse taulu",
"Select the card to link to a project" : "Valitse projektiin linkitettävä kortti",
"Select a board" : "Valitse taulu",
"Select a card" : "Valitse kortti",
"Link to card" : "Linkitä korttiin",
"Cancel" : "Peruuta", "Cancel" : "Peruuta",
"File already exists" : "Tiedosto on jo olemassa",
"A file with the name {filename} already exists." : "Tiedosto nimellä {filename} on jo olemassa.",
"Do you want to overwrite it?" : "Haluatko ylikirjoittaa sen?",
"Overwrite file" : "Päällekirjoita tiedosto",
"Keep existing file" : "Pidä nykyinen tiedosto",
"This board is read only" : "Tämä taulu on kirjoitussuojattu",
"Drop your files to upload" : "Pudota tiedostot lähettääksesi ne",
"Add new list" : "Lisää uusi lista",
"List name" : "Listan nimi",
"Apply filter" : "Toteuta suodatus",
"Filter by tag" : "Suodata tunnisteen perusteella",
"Overdue" : "Myöhässä",
"Today" : "Tänään",
"Next 7 days" : "Seuraavat 7 päivää",
"Next 30 days" : "Seuraavat 30 päivää",
"No due date" : "Ei eräpäivää",
"Show archived cards" : "Näytä arkistoidut kortit", "Show archived cards" : "Näytä arkistoidut kortit",
"Hide archived cards" : "Piilota arkistoidut kortit",
"Toggle compact mode" : "Käytä kompaktia tilaa", "Toggle compact mode" : "Käytä kompaktia tilaa",
"Details" : "Tiedot",
"Loading board" : "Ladataan taulua",
"Board not found" : "Taulua ei löydy",
"Sharing" : "Jakaminen", "Sharing" : "Jakaminen",
"Tags" : "Tunnisteet", "Tags" : "Tunnisteet",
"Deleted items" : "Poistetut tietueet", "Deleted items" : "Poistetut tietueet",
"Timeline" : "Aikajana", "Timeline" : "Aikajana",
"Deleted stacks" : "Poistetut pinot",
"Undo" : "Kumoa", "Undo" : "Kumoa",
"Deleted cards" : "Poistetut kortit", "Deleted cards" : "Poistetut kortit",
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
"Board owner" : "Taulun omistaja",
"(Group)" : "(Ryhmä)", "(Group)" : "(Ryhmä)",
"(Circle)" : "(Piiri)",
"Can edit" : "Voi muokata", "Can edit" : "Voi muokata",
"Can share" : "Voi jakaa", "Can share" : "Voi jakaa",
"Can manage" : "Voi hallita",
"Delete" : "Poista", "Delete" : "Poista",
"Add a new stack" : "Lisää uusi pino", "Add a new stack" : "Lisää uusi pino",
"Delete list" : "Poista lista",
"Add card" : "Lisää kortti", "Add card" : "Lisää kortti",
"Add a new card" : "Lisää uusi kortti",
"Edit" : "Muokkaa", "Edit" : "Muokkaa",
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri", "Details" : "Tiedot",
"Assign a tag to this card…" : "Lisää kortille tunniste...",
"Due date" : "Eräpäivä", "Due date" : "Eräpäivä",
"Set a due date" : "Aseta eräpäivä",
"Remove due date" : "Poista eräpäivä", "Remove due date" : "Poista eräpäivä",
"Description" : "Kuvaus", "Description" : "Kuvaus",
"Formatting help" : "Muotoiluapu", "Formatting help" : "Muotoiluapu",
@@ -156,21 +124,9 @@ OC.L10N.register(
"Modified" : "Muokattu", "Modified" : "Muokattu",
"Created" : "Luotu", "Created" : "Luotu",
"Upload attachment" : "Lähetä liite", "Upload attachment" : "Lähetä liite",
"Delete Attachment" : "Poista liite",
"Restore Attachment" : "Palauta liite",
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
"Save" : "Tallenna", "Save" : "Tallenna",
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
"Reply" : "Vastaa",
"Update" : "Päivitä", "Update" : "Päivitä",
"(group)" : "(ryhmä)",
"Delete card" : "Poista kortti", "Delete card" : "Poista kortti",
"Move card" : "Siirrä kortti",
"Card details" : "Näytä kortin sisältö",
"Select a stack" : "Valitse pino",
"seconds ago" : "sekuntia sitten",
"All boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut", "Archived boards" : "Arkistoidut taulut",
"Shared boards" : "Jaetut taulut", "Shared boards" : "Jaetut taulut",
"Settings" : "Asetukset", "Settings" : "Asetukset",
@@ -178,14 +134,10 @@ OC.L10N.register(
"New board title" : "Uusi taulun otsikko", "New board title" : "Uusi taulun otsikko",
"Edit board" : "Muokkaa taulua", "Edit board" : "Muokkaa taulua",
"An error occurred" : "Tapahtui virhe", "An error occurred" : "Tapahtui virhe",
"Clone board" : "Monista taulu",
"Archive board" : "Arkistoi taulu", "Archive board" : "Arkistoi taulu",
"Unarchive board" : "Kumoa taulun arkistointi", "Unarchive board" : "Kumoa taulun arkistointi",
"Delete board" : "Poista taulu", "Delete board" : "Poista taulu",
"Board details" : "Taulun tiedot", "Board details" : "Taulun tiedot",
"Link to a board" : "Linkki taululle", "Link to a board" : "Linkki taululle"
"Link to a card" : "Linkitä korttiin",
"Something went wrong" : "Jokin meni vikaan",
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -56,7 +56,6 @@
"You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}", "You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} päivitti kortin {card} liitteen {attachment}", "{user} has updated the attachment {attachment} on card {card}" : "{user} päivitti kortin {card} liitteen {attachment}",
"You have deleted the attachment {attachment} from card {card}" : "Poistit liitteen {attachment} kortilta {card}", "You have deleted the attachment {attachment} from card {card}" : "Poistit liitteen {attachment} kortilta {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} poisti liitteen {attachment} kortilta {card}",
"You have restored the attachment {attachment} to card {card}" : "Palautit liitteen {attachment} kortille {card}", "You have restored the attachment {attachment} to card {card}" : "Palautit liitteen {attachment} kortille {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}",
"You have commented on card {card}" : "Kommentoit korttia {card}", "You have commented on card {card}" : "Kommentoit korttia {card}",
@@ -69,7 +68,6 @@
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.", "The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
"{user} has mentioned you in a comment on \"%s\"." : "{user} mainitsi sinut kommentissa kortilla \"%s\".",
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.", "The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
"{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.", "{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.",
"Finished" : "Valmistunut", "Finished" : "Valmistunut",
@@ -94,58 +92,28 @@
"No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s", "No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa",
"Create new board" : "Luo uusi taulu", "Create new board" : "Luo uusi taulu",
"new board" : "uusi taulu",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu", "Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Select board" : "Valitse taulu", "Select board" : "Valitse taulu",
"Select the card to link to a project" : "Valitse projektiin linkitettävä kortti",
"Select a board" : "Valitse taulu",
"Select a card" : "Valitse kortti",
"Link to card" : "Linkitä korttiin",
"Cancel" : "Peruuta", "Cancel" : "Peruuta",
"File already exists" : "Tiedosto on jo olemassa",
"A file with the name {filename} already exists." : "Tiedosto nimellä {filename} on jo olemassa.",
"Do you want to overwrite it?" : "Haluatko ylikirjoittaa sen?",
"Overwrite file" : "Päällekirjoita tiedosto",
"Keep existing file" : "Pidä nykyinen tiedosto",
"This board is read only" : "Tämä taulu on kirjoitussuojattu",
"Drop your files to upload" : "Pudota tiedostot lähettääksesi ne",
"Add new list" : "Lisää uusi lista",
"List name" : "Listan nimi",
"Apply filter" : "Toteuta suodatus",
"Filter by tag" : "Suodata tunnisteen perusteella",
"Overdue" : "Myöhässä",
"Today" : "Tänään",
"Next 7 days" : "Seuraavat 7 päivää",
"Next 30 days" : "Seuraavat 30 päivää",
"No due date" : "Ei eräpäivää",
"Show archived cards" : "Näytä arkistoidut kortit", "Show archived cards" : "Näytä arkistoidut kortit",
"Hide archived cards" : "Piilota arkistoidut kortit",
"Toggle compact mode" : "Käytä kompaktia tilaa", "Toggle compact mode" : "Käytä kompaktia tilaa",
"Details" : "Tiedot",
"Loading board" : "Ladataan taulua",
"Board not found" : "Taulua ei löydy",
"Sharing" : "Jakaminen", "Sharing" : "Jakaminen",
"Tags" : "Tunnisteet", "Tags" : "Tunnisteet",
"Deleted items" : "Poistetut tietueet", "Deleted items" : "Poistetut tietueet",
"Timeline" : "Aikajana", "Timeline" : "Aikajana",
"Deleted stacks" : "Poistetut pinot",
"Undo" : "Kumoa", "Undo" : "Kumoa",
"Deleted cards" : "Poistetut kortit", "Deleted cards" : "Poistetut kortit",
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
"Board owner" : "Taulun omistaja",
"(Group)" : "(Ryhmä)", "(Group)" : "(Ryhmä)",
"(Circle)" : "(Piiri)",
"Can edit" : "Voi muokata", "Can edit" : "Voi muokata",
"Can share" : "Voi jakaa", "Can share" : "Voi jakaa",
"Can manage" : "Voi hallita",
"Delete" : "Poista", "Delete" : "Poista",
"Add a new stack" : "Lisää uusi pino", "Add a new stack" : "Lisää uusi pino",
"Delete list" : "Poista lista",
"Add card" : "Lisää kortti", "Add card" : "Lisää kortti",
"Add a new card" : "Lisää uusi kortti",
"Edit" : "Muokkaa", "Edit" : "Muokkaa",
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri", "Details" : "Tiedot",
"Assign a tag to this card…" : "Lisää kortille tunniste...",
"Due date" : "Eräpäivä", "Due date" : "Eräpäivä",
"Set a due date" : "Aseta eräpäivä",
"Remove due date" : "Poista eräpäivä", "Remove due date" : "Poista eräpäivä",
"Description" : "Kuvaus", "Description" : "Kuvaus",
"Formatting help" : "Muotoiluapu", "Formatting help" : "Muotoiluapu",
@@ -154,21 +122,9 @@
"Modified" : "Muokattu", "Modified" : "Muokattu",
"Created" : "Luotu", "Created" : "Luotu",
"Upload attachment" : "Lähetä liite", "Upload attachment" : "Lähetä liite",
"Delete Attachment" : "Poista liite",
"Restore Attachment" : "Palauta liite",
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
"Save" : "Tallenna", "Save" : "Tallenna",
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
"Reply" : "Vastaa",
"Update" : "Päivitä", "Update" : "Päivitä",
"(group)" : "(ryhmä)",
"Delete card" : "Poista kortti", "Delete card" : "Poista kortti",
"Move card" : "Siirrä kortti",
"Card details" : "Näytä kortin sisältö",
"Select a stack" : "Valitse pino",
"seconds ago" : "sekuntia sitten",
"All boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut", "Archived boards" : "Arkistoidut taulut",
"Shared boards" : "Jaetut taulut", "Shared boards" : "Jaetut taulut",
"Settings" : "Asetukset", "Settings" : "Asetukset",
@@ -176,14 +132,10 @@
"New board title" : "Uusi taulun otsikko", "New board title" : "Uusi taulun otsikko",
"Edit board" : "Muokkaa taulua", "Edit board" : "Muokkaa taulua",
"An error occurred" : "Tapahtui virhe", "An error occurred" : "Tapahtui virhe",
"Clone board" : "Monista taulu",
"Archive board" : "Arkistoi taulu", "Archive board" : "Arkistoi taulu",
"Unarchive board" : "Kumoa taulun arkistointi", "Unarchive board" : "Kumoa taulun arkistointi",
"Delete board" : "Poista taulu", "Delete board" : "Poista taulu",
"Board details" : "Taulun tiedot", "Board details" : "Taulun tiedot",
"Link to a board" : "Linkki taululle", "Link to a board" : "Linkki taululle"
"Link to a card" : "Linkitä korttiin",
"Something went wrong" : "Jokin meni vikaan",
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -1,7 +1,7 @@
OC.L10N.register( OC.L10N.register(
"deck", "deck",
{ {
"You have created a new board {board}" : "Vous avez créé un nouveau tableau {board}", "You have created a new board {board}" : "Vous avez créé un nouveau tableau {tableau}",
"{user} has created a new board {board}" : "{user} a créé un nouveau tableau {board}", "{user} has created a new board {board}" : "{user} a créé un nouveau tableau {board}",
"You have deleted the board {board}" : "Vous avez supprimé le tableau {board}", "You have deleted the board {board}" : "Vous avez supprimé le tableau {board}",
"{user} has deleted the board {board}" : "{user} a supprimé le tableau {board}", "{user} has deleted the board {board}" : "{user} a supprimé le tableau {board}",
@@ -12,11 +12,11 @@ OC.L10N.register(
"You have removed {acl} from the board {board}" : "Vous avez supprimé {acl} du tableau {board}", "You have removed {acl} from the board {board}" : "Vous avez supprimé {acl} du tableau {board}",
"{user} has removed {acl} from the board {board}" : "{user} a supprimé {acl} du tableau {board}", "{user} has removed {acl} from the board {board}" : "{user} a supprimé {acl} du tableau {board}",
"You have renamed the board {before} to {board}" : "Vous avez renommé le tableau {before} en {board}", "You have renamed the board {before} to {board}" : "Vous avez renommé le tableau {before} en {board}",
"{user} has renamed the board {before} to {board}" : "{user} a renommé le tableau {before} en {board}", "{user} has renamed the board {before} to {board}" : "{user} a renommé le tableau {before} à {board}",
"You have archived the board {board}" : "Vous avez archivé le tableau {board}", "You have archived the board {board}" : "Vous avez archivé le tableau {board}",
"{user} has archived the board {before}" : "{user} a archivé le tableau {before}", "{user} has archived the board {before}" : "{user} a archivé le tableau {before}",
"You have unarchived the board {board}" : "Vous avez désarchivé le tableau {board}", "You have unarchived the board {board}" : "Vous avez sorti des archives le tableau {board}",
"{user} has unarchived the board {before}" : "{user} a désarchivé le tableau {before}", "{user} has unarchived the board {before}" : "{user} a sorti des archives le tableau {board}",
"You have created a new stack {stack} on board {board}" : "Vous avez créé une nouvelle pile {stack} sur le tableau {board}", "You have created a new stack {stack} on board {board}" : "Vous avez créé une nouvelle pile {stack} sur le tableau {board}",
"{user} has created a new stack {stack} on board {board}" : "{user} a créé une nouvelle pile {stack} sur le tableau {board}", "{user} has created a new stack {stack} on board {board}" : "{user} a créé une nouvelle pile {stack} sur le tableau {board}",
"You have renamed stack {before} to {stack} on board {board}" : "Vous avez renommé la pile {before} en {stack} sur le tableau {board}", "You have renamed stack {before} to {stack} on board {board}" : "Vous avez renommé la pile {before} en {stack} sur le tableau {board}",
@@ -35,8 +35,8 @@ OC.L10N.register(
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} a mis à jour la description de la carte {card} de la pile {stack} du tableau {board}", "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} a mis à jour la description de la carte {card} de la pile {stack} du tableau {board}",
"You have archived card {card} in stack {stack} on board {board}" : "Vous avez archivé la carte {card} de la pile {stack} du tableau {board}", "You have archived card {card} in stack {stack} on board {board}" : "Vous avez archivé la carte {card} de la pile {stack} du tableau {board}",
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} a archivé la carte {card} de la pile {stack} du tableau {board}", "{user} has archived card {card} in stack {stack} on board {board}" : "{user} a archivé la carte {card} de la pile {stack} du tableau {board}",
"You have unarchived card {card} in stack {stack} on board {board}" : "Vous avez désarchivé la carte {card} de la pile {stack} du tableau {board}", "You have unarchived card {card} in stack {stack} on board {board}" : "Vous avez retiré des archives la carte {card} de la pile {stack} du tableau {board}",
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} a désarchivé la carte {card} de la pile {stack} du tableau {board}", "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} a retiré des archives la carte {card} de la pile {stack} du tableau {board}",
"You have removed the due date of card {card}" : "Vous avez supprimé la date d'échéance de la carte {card}", "You have removed the due date of card {card}" : "Vous avez supprimé la date d'échéance de la carte {card}",
"{user} has removed the due date of card {card}" : "{user} a supprimé la date d'échéance de la carte {card}", "{user} has removed the due date of card {card}" : "{user} a supprimé la date d'échéance de la carte {card}",
"You have set the due date of card {card} to {after}" : "Vous avez établi la date d'échéance de la carte {card} à {after}", "You have set the due date of card {card} to {after}" : "Vous avez établi la date d'échéance de la carte {card} à {after}",
@@ -63,7 +63,7 @@ OC.L10N.register(
"{user} has restored the attachment {attachment} to card {card}" : "{user} a restauré la pièce jointe {attachment} de la carte {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} a restauré la pièce jointe {attachment} de la carte {card}",
"You have commented on card {card}" : "Vous avez commenté la carte {card}", "You have commented on card {card}" : "Vous avez commenté la carte {card}",
"{user} has commented on card {card}" : "{user} a commenté la carte {card}", "{user} has commented on card {card}" : "{user} a commenté la carte {card}",
"A <strong>card description</strong> inside the Deck app has been changed" : "La <strong>description de la carte</strong> présente dans l'application Deck a été modifiée", "A <strong>card description</strong> inside the Deck app has been changed" : "La <strong>description de la carte</strong> présente dans lapplication Deck a été modifiée",
"Deck" : "Deck", "Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Modifications dans <strong>Deck app</strong>", "Changes in the <strong>Deck app</strong>" : "Modifications dans <strong>Deck app</strong>",
"A <strong>comment</strong> was created on a card" : "Un <strong>commentaire</strong> a été créé sur une carte", "A <strong>comment</strong> was created on a card" : "Un <strong>commentaire</strong> a été créé sur une carte",
@@ -107,84 +107,60 @@ OC.L10N.register(
"Select a card" : "Sélectionnez une carte", "Select a card" : "Sélectionnez une carte",
"Link to card" : "Relier à une carte", "Link to card" : "Relier à une carte",
"Cancel" : "Annuler", "Cancel" : "Annuler",
"File already exists" : "Le fichier existe déjà",
"A file with the name {filename} already exists." : "Un fichier avec le nom {filename} existe déjà.",
"Do you want to overwrite it?" : "Souhaitez-vous l'écraser ?",
"Overwrite file" : "Remplacer le fichier",
"Keep existing file" : "Conserver le fichier existant",
"This board is read only" : "Ce tableau est en lecture seule",
"Drop your files to upload" : "Glissez vos fichiers pour les envoyer",
"Add new list" : "Ajouter une nouvelle liste", "Add new list" : "Ajouter une nouvelle liste",
"List name" : "Nom de la liste", "List name" : "Nom de la liste",
"Apply filter" : "Filtrer",
"Filter by tag" : "Filtrer par étiquette",
"Filter by assigned user" : "Filtrer par utilisateur",
"Filter by due date" : "Filtrer par échéance",
"Overdue" : "En retard",
"Today" : "Aujourd'hui",
"Next 7 days" : "7 prochains jours",
"Next 30 days" : "30 prochains jours",
"No due date" : "Sans échéance",
"Show archived cards" : "Afficher les cartes archivées", "Show archived cards" : "Afficher les cartes archivées",
"Hide archived cards" : "Masquer les cartes archivées",
"Toggle compact mode" : "Basculer le mode compact", "Toggle compact mode" : "Basculer le mode compact",
"Details" : "Détails",
"Loading board" : "Chargement du tableau…", "Loading board" : "Chargement du tableau…",
"Board not found" : "Tableau non trouvé", "Board not found" : "Tableau non trouvé",
"Sharing" : "Partagé", "Sharing" : "Partagé",
"Tags" : "Étiquettes", "Tags" : "Étiquettes",
"Deleted items" : "Éléments supprimés", "Deleted items" : "Éléments supprimés",
"Timeline" : "Chronologie", "Timeline" : "Chronologie",
"Deleted lists" : "Listes supprimées", "Deleted stacks" : "Piles supprimées",
"Undo" : "Annuler", "Undo" : "Annuler",
"Deleted cards" : "Cartes supprimées", "Deleted cards" : "Cartes supprimées",
"Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…", "Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…",
"Board owner" : "Propriétaire du tableau", "Board owner" : "Propriétaire du tableau",
"(Group)" : "(Groupe)", "(Group)" : "(Groupe)",
"(Circle)" : "(Cercle)", "(Circle)" : "(Cercle)",
"Can edit" : "Peut modifier", "Can edit" : "Peut éditer",
"Can share" : "Peut partager", "Can share" : "Peut partager",
"Can manage" : "Peut gérer", "Can manage" : "Peut éditer",
"Delete" : "Supprimer", "Delete" : "Supprimer",
"Add a new stack" : "Nouvelle pile", "Add a new stack" : "Nouvelle pile",
"Delete list" : "Supprimer la liste", "Delete list" : "Supprimer la liste",
"Add card" : "Ajouter une carte", "Add card" : "Ajouter une carte",
"Add a new card" : "Ajouter une nouvelle carte", "Add a new card" : "Ajouter une nouvelle carte",
"Edit" : "Modifier", "Edit" : "Modifier",
"Add a new tag" : "Ajouter une nouvelle étiquette", "Add a new label" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "le titre et la couleur doivent être renseignés", "title and color value must be provided" : "Vous devez indiquer un titre et une couleur",
"Assign a tag to this card…" : "Associer une étiquette à cette carte…", "Load More" : "Charger d'avantage",
"Details" : "Détails",
"Assign a tag to this card…" : "Associer une étiquette à cette carte...",
"Assign to users" : "Attribuer aux utilisateurs", "Assign to users" : "Attribuer aux utilisateurs",
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles", "Assign a user to this card…" : "Attribuer cette carte à un utilisateur...",
"Assign a user to this card…" : "Attribuer cette carte à un utilisateur…",
"Due date" : "Date d'échéance", "Due date" : "Date d'échéance",
"Set a due date" : "Définir une date d'échéance", "Set a due date" : "Définir une date d'échéance",
"Remove due date" : "Supprimer la date d'échéance", "Remove due date" : "Supprimer la date d'échéance",
"Description" : "Description", "Description" : "Description",
"(Unsaved)" : "(Non enregistré)",
"(Saving…)" : "(Enregistrement ...)",
"Formatting help" : "Aide sur la mise en forme", "Formatting help" : "Aide sur la mise en forme",
"Attachments" : "Pièces jointes", "Attachments" : "Pièces jointes",
"Comments" : "Commentaires", "Comments" : "Commentaires",
"Modified" : "Modifié", "Modified" : "Modifié",
"Created" : "Créé", "Created" : "Créé",
"Upload attachment" : "Envoyer une pièce jointe", "Upload attachment" : "Envoyer une pièce jointe",
"Delete Attachment" : "Supprimer la pièce jointe", "New comment" : "Nouveau commentaire",
"Restore Attachment" : "Restaurer la pièce jointe",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Save" : "Enregistrer", "Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.", "No users found" : "Aucun utilisateur trouvé",
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.", "No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"In reply to" : "En réponse à",
"Reply" : "Répondre",
"Update" : "Mettre à jour", "Update" : "Mettre à jour",
"(group)" : "(groupe)",
"(circle)" : "(cercle)",
"Assign to me" : "Me l'assigner", "Assign to me" : "Me l'assigner",
"Delete card" : "Supprimer la carte", "Delete card" : "Supprimer la carte",
"Move card" : "Déplacer la carte", "Move card" : "Déplacer la carte",
"Card details" : "Détails de la carte", "Card details" : "Détails de la carte",
"Select a stack" : "Sélectionner une pile", "Select a stack" : "Sélectionner une pile",
"seconds ago" : "à l'instant",
"All boards" : "Tous les tableaux", "All boards" : "Tous les tableaux",
"Archived boards" : "Tableaux archivés", "Archived boards" : "Tableaux archivés",
"Shared boards" : "Tableaux partagés", "Shared boards" : "Tableaux partagés",
@@ -195,12 +171,10 @@ OC.L10N.register(
"An error occurred" : "Une erreur est survenue", "An error occurred" : "Une erreur est survenue",
"Clone board" : "Dupliquer le tableau", "Clone board" : "Dupliquer le tableau",
"Archive board" : "Archiver le tableau", "Archive board" : "Archiver le tableau",
"Unarchive board" : "Désarchiver le tableau", "Unarchive board" : "Sortir le tableau des archives",
"Delete board" : "Supprimer le tableau", "Delete board" : "Supprimer le tableau",
"Board details" : "Détails du tableau", "Board details" : "Détails du tableau",
"Link to a board" : "Relier à un tableau", "Link to a board" : "Lier à un tableau",
"Link to a card" : "Relier à une carte", "Link to a card" : "Relier à une carte"
"Something went wrong" : "Quelque chose s'est mal passé",
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée"
}, },
"nplurals=2; plural=(n > 1);"); "nplurals=2; plural=(n > 1);");

View File

@@ -1,5 +1,5 @@
{ "translations": { { "translations": {
"You have created a new board {board}" : "Vous avez créé un nouveau tableau {board}", "You have created a new board {board}" : "Vous avez créé un nouveau tableau {tableau}",
"{user} has created a new board {board}" : "{user} a créé un nouveau tableau {board}", "{user} has created a new board {board}" : "{user} a créé un nouveau tableau {board}",
"You have deleted the board {board}" : "Vous avez supprimé le tableau {board}", "You have deleted the board {board}" : "Vous avez supprimé le tableau {board}",
"{user} has deleted the board {board}" : "{user} a supprimé le tableau {board}", "{user} has deleted the board {board}" : "{user} a supprimé le tableau {board}",
@@ -10,11 +10,11 @@
"You have removed {acl} from the board {board}" : "Vous avez supprimé {acl} du tableau {board}", "You have removed {acl} from the board {board}" : "Vous avez supprimé {acl} du tableau {board}",
"{user} has removed {acl} from the board {board}" : "{user} a supprimé {acl} du tableau {board}", "{user} has removed {acl} from the board {board}" : "{user} a supprimé {acl} du tableau {board}",
"You have renamed the board {before} to {board}" : "Vous avez renommé le tableau {before} en {board}", "You have renamed the board {before} to {board}" : "Vous avez renommé le tableau {before} en {board}",
"{user} has renamed the board {before} to {board}" : "{user} a renommé le tableau {before} en {board}", "{user} has renamed the board {before} to {board}" : "{user} a renommé le tableau {before} à {board}",
"You have archived the board {board}" : "Vous avez archivé le tableau {board}", "You have archived the board {board}" : "Vous avez archivé le tableau {board}",
"{user} has archived the board {before}" : "{user} a archivé le tableau {before}", "{user} has archived the board {before}" : "{user} a archivé le tableau {before}",
"You have unarchived the board {board}" : "Vous avez désarchivé le tableau {board}", "You have unarchived the board {board}" : "Vous avez sorti des archives le tableau {board}",
"{user} has unarchived the board {before}" : "{user} a désarchivé le tableau {before}", "{user} has unarchived the board {before}" : "{user} a sorti des archives le tableau {board}",
"You have created a new stack {stack} on board {board}" : "Vous avez créé une nouvelle pile {stack} sur le tableau {board}", "You have created a new stack {stack} on board {board}" : "Vous avez créé une nouvelle pile {stack} sur le tableau {board}",
"{user} has created a new stack {stack} on board {board}" : "{user} a créé une nouvelle pile {stack} sur le tableau {board}", "{user} has created a new stack {stack} on board {board}" : "{user} a créé une nouvelle pile {stack} sur le tableau {board}",
"You have renamed stack {before} to {stack} on board {board}" : "Vous avez renommé la pile {before} en {stack} sur le tableau {board}", "You have renamed stack {before} to {stack} on board {board}" : "Vous avez renommé la pile {before} en {stack} sur le tableau {board}",
@@ -33,8 +33,8 @@
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} a mis à jour la description de la carte {card} de la pile {stack} du tableau {board}", "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} a mis à jour la description de la carte {card} de la pile {stack} du tableau {board}",
"You have archived card {card} in stack {stack} on board {board}" : "Vous avez archivé la carte {card} de la pile {stack} du tableau {board}", "You have archived card {card} in stack {stack} on board {board}" : "Vous avez archivé la carte {card} de la pile {stack} du tableau {board}",
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} a archivé la carte {card} de la pile {stack} du tableau {board}", "{user} has archived card {card} in stack {stack} on board {board}" : "{user} a archivé la carte {card} de la pile {stack} du tableau {board}",
"You have unarchived card {card} in stack {stack} on board {board}" : "Vous avez désarchivé la carte {card} de la pile {stack} du tableau {board}", "You have unarchived card {card} in stack {stack} on board {board}" : "Vous avez retiré des archives la carte {card} de la pile {stack} du tableau {board}",
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} a désarchivé la carte {card} de la pile {stack} du tableau {board}", "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} a retiré des archives la carte {card} de la pile {stack} du tableau {board}",
"You have removed the due date of card {card}" : "Vous avez supprimé la date d'échéance de la carte {card}", "You have removed the due date of card {card}" : "Vous avez supprimé la date d'échéance de la carte {card}",
"{user} has removed the due date of card {card}" : "{user} a supprimé la date d'échéance de la carte {card}", "{user} has removed the due date of card {card}" : "{user} a supprimé la date d'échéance de la carte {card}",
"You have set the due date of card {card} to {after}" : "Vous avez établi la date d'échéance de la carte {card} à {after}", "You have set the due date of card {card} to {after}" : "Vous avez établi la date d'échéance de la carte {card} à {after}",
@@ -61,7 +61,7 @@
"{user} has restored the attachment {attachment} to card {card}" : "{user} a restauré la pièce jointe {attachment} de la carte {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} a restauré la pièce jointe {attachment} de la carte {card}",
"You have commented on card {card}" : "Vous avez commenté la carte {card}", "You have commented on card {card}" : "Vous avez commenté la carte {card}",
"{user} has commented on card {card}" : "{user} a commenté la carte {card}", "{user} has commented on card {card}" : "{user} a commenté la carte {card}",
"A <strong>card description</strong> inside the Deck app has been changed" : "La <strong>description de la carte</strong> présente dans l'application Deck a été modifiée", "A <strong>card description</strong> inside the Deck app has been changed" : "La <strong>description de la carte</strong> présente dans lapplication Deck a été modifiée",
"Deck" : "Deck", "Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Modifications dans <strong>Deck app</strong>", "Changes in the <strong>Deck app</strong>" : "Modifications dans <strong>Deck app</strong>",
"A <strong>comment</strong> was created on a card" : "Un <strong>commentaire</strong> a été créé sur une carte", "A <strong>comment</strong> was created on a card" : "Un <strong>commentaire</strong> a été créé sur une carte",
@@ -105,84 +105,60 @@
"Select a card" : "Sélectionnez une carte", "Select a card" : "Sélectionnez une carte",
"Link to card" : "Relier à une carte", "Link to card" : "Relier à une carte",
"Cancel" : "Annuler", "Cancel" : "Annuler",
"File already exists" : "Le fichier existe déjà",
"A file with the name {filename} already exists." : "Un fichier avec le nom {filename} existe déjà.",
"Do you want to overwrite it?" : "Souhaitez-vous l'écraser ?",
"Overwrite file" : "Remplacer le fichier",
"Keep existing file" : "Conserver le fichier existant",
"This board is read only" : "Ce tableau est en lecture seule",
"Drop your files to upload" : "Glissez vos fichiers pour les envoyer",
"Add new list" : "Ajouter une nouvelle liste", "Add new list" : "Ajouter une nouvelle liste",
"List name" : "Nom de la liste", "List name" : "Nom de la liste",
"Apply filter" : "Filtrer",
"Filter by tag" : "Filtrer par étiquette",
"Filter by assigned user" : "Filtrer par utilisateur",
"Filter by due date" : "Filtrer par échéance",
"Overdue" : "En retard",
"Today" : "Aujourd'hui",
"Next 7 days" : "7 prochains jours",
"Next 30 days" : "30 prochains jours",
"No due date" : "Sans échéance",
"Show archived cards" : "Afficher les cartes archivées", "Show archived cards" : "Afficher les cartes archivées",
"Hide archived cards" : "Masquer les cartes archivées",
"Toggle compact mode" : "Basculer le mode compact", "Toggle compact mode" : "Basculer le mode compact",
"Details" : "Détails",
"Loading board" : "Chargement du tableau…", "Loading board" : "Chargement du tableau…",
"Board not found" : "Tableau non trouvé", "Board not found" : "Tableau non trouvé",
"Sharing" : "Partagé", "Sharing" : "Partagé",
"Tags" : "Étiquettes", "Tags" : "Étiquettes",
"Deleted items" : "Éléments supprimés", "Deleted items" : "Éléments supprimés",
"Timeline" : "Chronologie", "Timeline" : "Chronologie",
"Deleted lists" : "Listes supprimées", "Deleted stacks" : "Piles supprimées",
"Undo" : "Annuler", "Undo" : "Annuler",
"Deleted cards" : "Cartes supprimées", "Deleted cards" : "Cartes supprimées",
"Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…", "Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…",
"Board owner" : "Propriétaire du tableau", "Board owner" : "Propriétaire du tableau",
"(Group)" : "(Groupe)", "(Group)" : "(Groupe)",
"(Circle)" : "(Cercle)", "(Circle)" : "(Cercle)",
"Can edit" : "Peut modifier", "Can edit" : "Peut éditer",
"Can share" : "Peut partager", "Can share" : "Peut partager",
"Can manage" : "Peut gérer", "Can manage" : "Peut éditer",
"Delete" : "Supprimer", "Delete" : "Supprimer",
"Add a new stack" : "Nouvelle pile", "Add a new stack" : "Nouvelle pile",
"Delete list" : "Supprimer la liste", "Delete list" : "Supprimer la liste",
"Add card" : "Ajouter une carte", "Add card" : "Ajouter une carte",
"Add a new card" : "Ajouter une nouvelle carte", "Add a new card" : "Ajouter une nouvelle carte",
"Edit" : "Modifier", "Edit" : "Modifier",
"Add a new tag" : "Ajouter une nouvelle étiquette", "Add a new label" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "le titre et la couleur doivent être renseignés", "title and color value must be provided" : "Vous devez indiquer un titre et une couleur",
"Assign a tag to this card…" : "Associer une étiquette à cette carte…", "Load More" : "Charger d'avantage",
"Details" : "Détails",
"Assign a tag to this card…" : "Associer une étiquette à cette carte...",
"Assign to users" : "Attribuer aux utilisateurs", "Assign to users" : "Attribuer aux utilisateurs",
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles", "Assign a user to this card…" : "Attribuer cette carte à un utilisateur...",
"Assign a user to this card…" : "Attribuer cette carte à un utilisateur…",
"Due date" : "Date d'échéance", "Due date" : "Date d'échéance",
"Set a due date" : "Définir une date d'échéance", "Set a due date" : "Définir une date d'échéance",
"Remove due date" : "Supprimer la date d'échéance", "Remove due date" : "Supprimer la date d'échéance",
"Description" : "Description", "Description" : "Description",
"(Unsaved)" : "(Non enregistré)",
"(Saving…)" : "(Enregistrement ...)",
"Formatting help" : "Aide sur la mise en forme", "Formatting help" : "Aide sur la mise en forme",
"Attachments" : "Pièces jointes", "Attachments" : "Pièces jointes",
"Comments" : "Commentaires", "Comments" : "Commentaires",
"Modified" : "Modifié", "Modified" : "Modifié",
"Created" : "Créé", "Created" : "Créé",
"Upload attachment" : "Envoyer une pièce jointe", "Upload attachment" : "Envoyer une pièce jointe",
"Delete Attachment" : "Supprimer la pièce jointe", "New comment" : "Nouveau commentaire",
"Restore Attachment" : "Restaurer la pièce jointe",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Save" : "Enregistrer", "Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.", "No users found" : "Aucun utilisateur trouvé",
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.", "No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"In reply to" : "En réponse à",
"Reply" : "Répondre",
"Update" : "Mettre à jour", "Update" : "Mettre à jour",
"(group)" : "(groupe)",
"(circle)" : "(cercle)",
"Assign to me" : "Me l'assigner", "Assign to me" : "Me l'assigner",
"Delete card" : "Supprimer la carte", "Delete card" : "Supprimer la carte",
"Move card" : "Déplacer la carte", "Move card" : "Déplacer la carte",
"Card details" : "Détails de la carte", "Card details" : "Détails de la carte",
"Select a stack" : "Sélectionner une pile", "Select a stack" : "Sélectionner une pile",
"seconds ago" : "à l'instant",
"All boards" : "Tous les tableaux", "All boards" : "Tous les tableaux",
"Archived boards" : "Tableaux archivés", "Archived boards" : "Tableaux archivés",
"Shared boards" : "Tableaux partagés", "Shared boards" : "Tableaux partagés",
@@ -193,12 +169,10 @@
"An error occurred" : "Une erreur est survenue", "An error occurred" : "Une erreur est survenue",
"Clone board" : "Dupliquer le tableau", "Clone board" : "Dupliquer le tableau",
"Archive board" : "Archiver le tableau", "Archive board" : "Archiver le tableau",
"Unarchive board" : "Désarchiver le tableau", "Unarchive board" : "Sortir le tableau des archives",
"Delete board" : "Supprimer le tableau", "Delete board" : "Supprimer le tableau",
"Board details" : "Détails du tableau", "Board details" : "Détails du tableau",
"Link to a board" : "Relier à un tableau", "Link to a board" : "Lier à un tableau",
"Link to a card" : "Relier à une carte", "Link to a card" : "Relier à une carte"
"Something went wrong" : "Quelque chose s'est mal passé",
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée"
},"pluralForm" :"nplurals=2; plural=(n > 1);" },"pluralForm" :"nplurals=2; plural=(n > 1);"
} }

View File

@@ -78,7 +78,7 @@ OC.L10N.register(
"No data was provided to create an attachment." : "Non se forneceu ningún dato para crear un anexo.", "No data was provided to create an attachment." : "Non se forneceu ningún dato para crear un anexo.",
"Finished" : "Rematado", "Finished" : "Rematado",
"To review" : "Para revisar", "To review" : "Para revisar",
"Action needed" : "Necesita unha acción", "Action needed" : "Necesita atención",
"Later" : "Despois", "Later" : "Despois",
"copy" : "copiar", "copy" : "copiar",
"To do" : "Para facer", "To do" : "Para facer",
@@ -107,35 +107,18 @@ OC.L10N.register(
"Select a card" : "Seleccione unha tarxeta", "Select a card" : "Seleccione unha tarxeta",
"Link to card" : "Ligar á tarxeta", "Link to card" : "Ligar á tarxeta",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "O ficheiro xa existe",
"A file with the name {filename} already exists." : "Xa existe un ficheiro co nome {filename}.",
"Do you want to overwrite it?" : "Quere sobrescribilo?",
"Overwrite file" : "Sobrescribir o ficheiro",
"Keep existing file" : "Conservar o ficheiro existente",
"This board is read only" : "Este taboleiro é só de lectura",
"Drop your files to upload" : "Arrastre os seus ficheiros para envialos",
"Archived cards" : "Tarxetas arquivadas",
"Add new list" : "Engadir unha lista nova", "Add new list" : "Engadir unha lista nova",
"List name" : "Nome da lista", "List name" : "Nome da lista",
"Apply filter" : "Aplicar filtro",
"Filter by tag" : "Filtrar pola etiqueta",
"Filter by assigned user" : "Filtrar polo usuario asignado",
"Filter by due date" : "Filtrar pola data de caducidade",
"Overdue" : "Caducado",
"Today" : "Hoxe",
"Next 7 days" : "Próximos 7 días",
"Next 30 days" : "Próximos 30 días",
"No due date" : "Sen data de caducidade",
"Show archived cards" : "Amosar as tarxetas arquivadas", "Show archived cards" : "Amosar as tarxetas arquivadas",
"Hide archived cards" : "Agochar as tarxetas arquivadas",
"Toggle compact mode" : "Alternar o modo compacto", "Toggle compact mode" : "Alternar o modo compacto",
"Details" : "Detalles",
"Loading board" : "Cargando o taboleiro", "Loading board" : "Cargando o taboleiro",
"Board not found" : "Non se atopou o taboleiro", "Board not found" : "Non se atopou o taboleiro",
"Sharing" : "Compartindo", "Sharing" : "Compartindo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados", "Deleted items" : "Elementos eliminados",
"Timeline" : "Liña temporal", "Timeline" : "Liña temporal",
"Deleted lists" : "Listas eliminadas", "Deleted stacks" : "Eliminar rimas",
"Undo" : "Desfacer", "Undo" : "Desfacer",
"Deleted cards" : "Eliminar tarxetas", "Deleted cards" : "Eliminar tarxetas",
"Share board with a user, group or circle …" : "Compartir taboleiro cun usuario, grupo ou círculo…", "Share board with a user, group or circle …" : "Compartir taboleiro cun usuario, grupo ou círculo…",
@@ -151,41 +134,33 @@ OC.L10N.register(
"Add card" : "Engadir tarxeta", "Add card" : "Engadir tarxeta",
"Add a new card" : "Engadir unha nova tarxeta", "Add a new card" : "Engadir unha nova tarxeta",
"Edit" : "Editar", "Edit" : "Editar",
"Add a new tag" : "Engadir unha nova etiqueta", "Add a new label" : "Engadir unha nova etiqueta",
"title and color value must be provided" : "debe indicar o título e o valor da cor", "title and color value must be provided" : "debe indicar o título e o valor da cor",
"Load More" : "Cargar máis",
"Details" : "Detalles",
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…", "Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Assign to users" : "Asignar a usuarios", "Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Assign a user to this card…" : "Asigna un usuario a esta tarxeta…", "Assign a user to this card…" : "Asigna un usuario a esta tarxeta…",
"Due date" : "Data de caducidade", "Due date" : "Data de caducidade",
"Set a due date" : "Estabelecer a data de caducidade", "Set a due date" : "Estabelecer a data de caducidade",
"Remove due date" : "Retirar a data de caducidade", "Remove due date" : "Retirar a data de caducidade",
"Description" : "Descrición", "Description" : "Descrición",
"(Unsaved)" : "(Sen gardar)",
"(Saving…)" : "(Gardando…)",
"Formatting help" : "Axuda de formatado", "Formatting help" : "Axuda de formatado",
"Attachments" : "Anexos", "Attachments" : "Anexos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Modified" : "Modificado", "Modified" : "Modificado",
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Enviar anexos", "Upload attachment" : "Enviar anexos",
"Delete Attachment" : "Eliminar anexo", "New comment" : "Comentario novo",
"Restore Attachment" : "Restaurar anexo",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Save" : "Gardar", "Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro", "No users found" : "Non se atoparon usuarios",
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.", "No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"In reply to" : "En resposta a",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(círculo)",
"Assign to me" : "Asignarme", "Assign to me" : "Asignarme",
"Delete card" : "Eliminar tarxeta", "Delete card" : "Eliminar tarxeta",
"Move card" : "Mover a tarxeta", "Move card" : "Mover a tarxeta",
"Card details" : "Detalles da tarxeta", "Card details" : "Detalles da tarxeta",
"Select a stack" : "Seleccione unha rima", "Select a stack" : "Seleccione unha rima",
"seconds ago" : "segundos atrás",
"All boards" : "Todos os taboleiros", "All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados", "Archived boards" : "Taboleiros arquivados",
"Shared boards" : "Taboleiros compartidos", "Shared boards" : "Taboleiros compartidos",
@@ -200,8 +175,6 @@ OC.L10N.register(
"Delete board" : "Eliminar taboleiro", "Delete board" : "Eliminar taboleiro",
"Board details" : "Detalles do taboleiro", "Board details" : "Detalles do taboleiro",
"Link to a board" : "Ligar a un taboleiro", "Link to a board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta", "Link to a card" : "Ligar a unha tarxeta"
"Something went wrong" : "Algo foi mal",
"Maximum file size of {size} exceeded" : "Excedeuse o tamaño máximo de ficheiro de {size}"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -76,7 +76,7 @@
"No data was provided to create an attachment." : "Non se forneceu ningún dato para crear un anexo.", "No data was provided to create an attachment." : "Non se forneceu ningún dato para crear un anexo.",
"Finished" : "Rematado", "Finished" : "Rematado",
"To review" : "Para revisar", "To review" : "Para revisar",
"Action needed" : "Necesita unha acción", "Action needed" : "Necesita atención",
"Later" : "Despois", "Later" : "Despois",
"copy" : "copiar", "copy" : "copiar",
"To do" : "Para facer", "To do" : "Para facer",
@@ -105,35 +105,18 @@
"Select a card" : "Seleccione unha tarxeta", "Select a card" : "Seleccione unha tarxeta",
"Link to card" : "Ligar á tarxeta", "Link to card" : "Ligar á tarxeta",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"File already exists" : "O ficheiro xa existe",
"A file with the name {filename} already exists." : "Xa existe un ficheiro co nome {filename}.",
"Do you want to overwrite it?" : "Quere sobrescribilo?",
"Overwrite file" : "Sobrescribir o ficheiro",
"Keep existing file" : "Conservar o ficheiro existente",
"This board is read only" : "Este taboleiro é só de lectura",
"Drop your files to upload" : "Arrastre os seus ficheiros para envialos",
"Archived cards" : "Tarxetas arquivadas",
"Add new list" : "Engadir unha lista nova", "Add new list" : "Engadir unha lista nova",
"List name" : "Nome da lista", "List name" : "Nome da lista",
"Apply filter" : "Aplicar filtro",
"Filter by tag" : "Filtrar pola etiqueta",
"Filter by assigned user" : "Filtrar polo usuario asignado",
"Filter by due date" : "Filtrar pola data de caducidade",
"Overdue" : "Caducado",
"Today" : "Hoxe",
"Next 7 days" : "Próximos 7 días",
"Next 30 days" : "Próximos 30 días",
"No due date" : "Sen data de caducidade",
"Show archived cards" : "Amosar as tarxetas arquivadas", "Show archived cards" : "Amosar as tarxetas arquivadas",
"Hide archived cards" : "Agochar as tarxetas arquivadas",
"Toggle compact mode" : "Alternar o modo compacto", "Toggle compact mode" : "Alternar o modo compacto",
"Details" : "Detalles",
"Loading board" : "Cargando o taboleiro", "Loading board" : "Cargando o taboleiro",
"Board not found" : "Non se atopou o taboleiro", "Board not found" : "Non se atopou o taboleiro",
"Sharing" : "Compartindo", "Sharing" : "Compartindo",
"Tags" : "Etiquetas", "Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados", "Deleted items" : "Elementos eliminados",
"Timeline" : "Liña temporal", "Timeline" : "Liña temporal",
"Deleted lists" : "Listas eliminadas", "Deleted stacks" : "Eliminar rimas",
"Undo" : "Desfacer", "Undo" : "Desfacer",
"Deleted cards" : "Eliminar tarxetas", "Deleted cards" : "Eliminar tarxetas",
"Share board with a user, group or circle …" : "Compartir taboleiro cun usuario, grupo ou círculo…", "Share board with a user, group or circle …" : "Compartir taboleiro cun usuario, grupo ou círculo…",
@@ -149,41 +132,33 @@
"Add card" : "Engadir tarxeta", "Add card" : "Engadir tarxeta",
"Add a new card" : "Engadir unha nova tarxeta", "Add a new card" : "Engadir unha nova tarxeta",
"Edit" : "Editar", "Edit" : "Editar",
"Add a new tag" : "Engadir unha nova etiqueta", "Add a new label" : "Engadir unha nova etiqueta",
"title and color value must be provided" : "debe indicar o título e o valor da cor", "title and color value must be provided" : "debe indicar o título e o valor da cor",
"Load More" : "Cargar máis",
"Details" : "Detalles",
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…", "Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Assign to users" : "Asignar a usuarios", "Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Assign a user to this card…" : "Asigna un usuario a esta tarxeta…", "Assign a user to this card…" : "Asigna un usuario a esta tarxeta…",
"Due date" : "Data de caducidade", "Due date" : "Data de caducidade",
"Set a due date" : "Estabelecer a data de caducidade", "Set a due date" : "Estabelecer a data de caducidade",
"Remove due date" : "Retirar a data de caducidade", "Remove due date" : "Retirar a data de caducidade",
"Description" : "Descrición", "Description" : "Descrición",
"(Unsaved)" : "(Sen gardar)",
"(Saving…)" : "(Gardando…)",
"Formatting help" : "Axuda de formatado", "Formatting help" : "Axuda de formatado",
"Attachments" : "Anexos", "Attachments" : "Anexos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Modified" : "Modificado", "Modified" : "Modificado",
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Enviar anexos", "Upload attachment" : "Enviar anexos",
"Delete Attachment" : "Eliminar anexo", "New comment" : "Comentario novo",
"Restore Attachment" : "Restaurar anexo",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Save" : "Gardar", "Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro", "No users found" : "Non se atoparon usuarios",
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.", "No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"In reply to" : "En resposta a",
"Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(círculo)",
"Assign to me" : "Asignarme", "Assign to me" : "Asignarme",
"Delete card" : "Eliminar tarxeta", "Delete card" : "Eliminar tarxeta",
"Move card" : "Mover a tarxeta", "Move card" : "Mover a tarxeta",
"Card details" : "Detalles da tarxeta", "Card details" : "Detalles da tarxeta",
"Select a stack" : "Seleccione unha rima", "Select a stack" : "Seleccione unha rima",
"seconds ago" : "segundos atrás",
"All boards" : "Todos os taboleiros", "All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados", "Archived boards" : "Taboleiros arquivados",
"Shared boards" : "Taboleiros compartidos", "Shared boards" : "Taboleiros compartidos",
@@ -198,8 +173,6 @@
"Delete board" : "Eliminar taboleiro", "Delete board" : "Eliminar taboleiro",
"Board details" : "Detalles do taboleiro", "Board details" : "Detalles do taboleiro",
"Link to a board" : "Ligar a un taboleiro", "Link to a board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta", "Link to a card" : "Ligar a unha tarxeta"
"Something went wrong" : "Algo foi mal",
"Maximum file size of {size} exceeded" : "Excedeuse o tamaño máximo de ficheiro de {size}"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -24,22 +24,18 @@ OC.L10N.register(
"No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s", "No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s",
"Create new board" : "יצירת לוח חדש", "Create new board" : "יצירת לוח חדש",
"Cancel" : "ביטול", "Cancel" : "ביטול",
"File already exists" : "הקובץ כבר קיים",
"Do you want to overwrite it?" : "לשכתב עליו?",
"Filter by tag" : "סינון לפי תגית",
"Today" : "היום",
"Show archived cards" : "הצגת כרטיסים בארכיון", "Show archived cards" : "הצגת כרטיסים בארכיון",
"Details" : "פרטים", "Hide archived cards" : "הסתרת כרטיסים בארכיון",
"Sharing" : "שיתוף", "Sharing" : "שיתוף",
"Tags" : "תגיות", "Tags" : "תגיות",
"Undo" : "ביטול", "Undo" : "ביטול",
"(Group)" : "(קבוצה)",
"Can edit" : "ניתן לערוך", "Can edit" : "ניתן לערוך",
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "מחיקה", "Delete" : "מחיקה",
"Add a new stack" : "הוספת ערימה חדשה", "Add a new stack" : "הוספת ערימה חדשה",
"Add card" : "הוספת כרטיס", "Add card" : "הוספת כרטיס",
"Edit" : "עריכה", "Edit" : "עריכה",
"Details" : "פרטים",
"Due date" : "מועד תפוגה", "Due date" : "מועד תפוגה",
"Remove due date" : "הסרת מועד התפוגה", "Remove due date" : "הסרת מועד התפוגה",
"Description" : "תיאוג", "Description" : "תיאוג",
@@ -50,11 +46,8 @@ OC.L10N.register(
"Created" : "מועד היצירה", "Created" : "מועד היצירה",
"Upload attachment" : "העלאת קבצים מצורפים", "Upload attachment" : "העלאת קבצים מצורפים",
"Save" : "שמור", "Save" : "שמור",
"Reply" : "תגובה",
"Update" : "עדכון", "Update" : "עדכון",
"(group)" : "(קבוצה)",
"Delete card" : "מחיקת כרטיס לארכיון", "Delete card" : "מחיקת כרטיס לארכיון",
"seconds ago" : "לפני מספר שניות",
"Archived boards" : "לוחות שנשמרו בארכיון", "Archived boards" : "לוחות שנשמרו בארכיון",
"Shared boards" : "לוחות משותפים", "Shared boards" : "לוחות משותפים",
"Settings" : "הגדרות", "Settings" : "הגדרות",
@@ -64,7 +57,6 @@ OC.L10N.register(
"Archive board" : "העברת לוח לארכיון", "Archive board" : "העברת לוח לארכיון",
"Unarchive board" : "הוצאת ארכיון מהלוח", "Unarchive board" : "הוצאת ארכיון מהלוח",
"Delete board" : "מחיקת לו", "Delete board" : "מחיקת לו",
"Board details" : "פרטי לוח", "Board details" : "פרטי לוח"
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג"
}, },
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"); "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;");

View File

@@ -22,22 +22,18 @@
"No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s", "No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s",
"Create new board" : "יצירת לוח חדש", "Create new board" : "יצירת לוח חדש",
"Cancel" : "ביטול", "Cancel" : "ביטול",
"File already exists" : "הקובץ כבר קיים",
"Do you want to overwrite it?" : "לשכתב עליו?",
"Filter by tag" : "סינון לפי תגית",
"Today" : "היום",
"Show archived cards" : "הצגת כרטיסים בארכיון", "Show archived cards" : "הצגת כרטיסים בארכיון",
"Details" : "פרטים", "Hide archived cards" : "הסתרת כרטיסים בארכיון",
"Sharing" : "שיתוף", "Sharing" : "שיתוף",
"Tags" : "תגיות", "Tags" : "תגיות",
"Undo" : "ביטול", "Undo" : "ביטול",
"(Group)" : "(קבוצה)",
"Can edit" : "ניתן לערוך", "Can edit" : "ניתן לערוך",
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "מחיקה", "Delete" : "מחיקה",
"Add a new stack" : "הוספת ערימה חדשה", "Add a new stack" : "הוספת ערימה חדשה",
"Add card" : "הוספת כרטיס", "Add card" : "הוספת כרטיס",
"Edit" : "עריכה", "Edit" : "עריכה",
"Details" : "פרטים",
"Due date" : "מועד תפוגה", "Due date" : "מועד תפוגה",
"Remove due date" : "הסרת מועד התפוגה", "Remove due date" : "הסרת מועד התפוגה",
"Description" : "תיאוג", "Description" : "תיאוג",
@@ -48,11 +44,8 @@
"Created" : "מועד היצירה", "Created" : "מועד היצירה",
"Upload attachment" : "העלאת קבצים מצורפים", "Upload attachment" : "העלאת קבצים מצורפים",
"Save" : "שמור", "Save" : "שמור",
"Reply" : "תגובה",
"Update" : "עדכון", "Update" : "עדכון",
"(group)" : "(קבוצה)",
"Delete card" : "מחיקת כרטיס לארכיון", "Delete card" : "מחיקת כרטיס לארכיון",
"seconds ago" : "לפני מספר שניות",
"Archived boards" : "לוחות שנשמרו בארכיון", "Archived boards" : "לוחות שנשמרו בארכיון",
"Shared boards" : "לוחות משותפים", "Shared boards" : "לוחות משותפים",
"Settings" : "הגדרות", "Settings" : "הגדרות",
@@ -62,7 +55,6 @@
"Archive board" : "העברת לוח לארכיון", "Archive board" : "העברת לוח לארכיון",
"Unarchive board" : "הוצאת ארכיון מהלוח", "Unarchive board" : "הוצאת ארכיון מהלוח",
"Delete board" : "מחיקת לו", "Delete board" : "מחיקת לו",
"Board details" : "פרטי לוח", "Board details" : "פרטי לוח"
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"
} }

View File

@@ -66,7 +66,7 @@ OC.L10N.register(
"A <strong>card description</strong> inside the Deck app has been changed" : "Promijenjen je <strong>opis kartice</strong> u aplikaciji Deck", "A <strong>card description</strong> inside the Deck app has been changed" : "Promijenjen je <strong>opis kartice</strong> u aplikaciji Deck",
"Deck" : "Deck", "Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Promjene u <strong>aplikaciji Deck</strong>", "Changes in the <strong>Deck app</strong>" : "Promjene u <strong>aplikaciji Deck</strong>",
"A <strong>comment</strong> was created on a card" : "Na kartici je stvoren <strong>komentar</strong>", "A <strong>comment</strong> was created on a card" : "<strong>Komentar</strong> je stvoren na kartici",
"Personal" : "Osobno", "Personal" : "Osobno",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.",
@@ -96,65 +96,30 @@ OC.L10N.register(
"Could not write file to disk" : "Nije moguće zapisati datoteku na disk", "Could not write file to disk" : "Nije moguće zapisati datoteku na disk",
"A PHP extension stopped the file upload" : "Proširenje PHP-a zaustavilo je otpremanje datoteke", "A PHP extension stopped the file upload" : "Proširenje PHP-a zaustavilo je otpremanje datoteke",
"No file uploaded or file size exceeds maximum of %s" : "Nijedna datoteka nije otpremljena ili veličina datoteke premašuje maksimalnu veličinu od %s", "No file uploaded or file size exceeds maximum of %s" : "Nijedna datoteka nije otpremljena ili veličina datoteke premašuje maksimalnu veličinu od %s",
"Personal planning and team project organization" : "Osobno planiranje i organizacija timskih projekata",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt",
"Create new board" : "Stvori novu ploču", "Create new board" : "Stvori novu ploču",
"new board" : "nova ploča",
"Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom", "Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom",
"Select board" : "Odaberi ploču", "Select board" : "Odaberi ploču",
"Select the card to link to a project" : "Odaberite karticu za povezivanje s projektom",
"Select a board" : "Odaberite ploču",
"Select a card" : "Odaberite karticu",
"Link to card" : "Poveznica na karticu",
"Cancel" : "Odustani", "Cancel" : "Odustani",
"File already exists" : "Datoteka već postoji",
"A file with the name {filename} already exists." : "Datoteka s nazivom {filename} već postoji.",
"Do you want to overwrite it?" : "Želite li prepisati?",
"Overwrite file" : "Prepiši datoteku",
"Keep existing file" : "Zadrži postojeću datoteku",
"This board is read only" : "Ova je ploča samo za čitanje",
"Drop your files to upload" : "Ispustite datoteke za otpremu",
"Add new list" : "Dodaj novi popis",
"List name" : "Naziv popisa",
"Apply filter" : "Primijeni filtar",
"Filter by tag" : "Filtriraj prema oznaci",
"Filter by assigned user" : "Filtriraj prema dodijeljenom korisniku",
"Filter by due date" : "Filtriraj prema datumu dospijeća",
"Overdue" : "Kasni",
"Today" : "Danas",
"Next 7 days" : "Sljedećih 7 dana",
"Next 30 days" : "Sljedećih 30 dana",
"No due date" : "Nema datuma dospijeća",
"Show archived cards" : "Prikaži arhivirane kartice", "Show archived cards" : "Prikaži arhivirane kartice",
"Hide archived cards" : "Sakrij arhivirane kartice",
"Toggle compact mode" : "Prebaci u kompaktni način rada", "Toggle compact mode" : "Prebaci u kompaktni način rada",
"Details" : "Pojedinosti",
"Loading board" : "Učitavanje ploče",
"Board not found" : "Ploča nije pronađena",
"Sharing" : "Dijeljenje", "Sharing" : "Dijeljenje",
"Tags" : "Oznake", "Tags" : "Oznake",
"Deleted items" : "Izbrisane stavke", "Deleted items" : "Izbrisane stavke",
"Timeline" : "Vremenska crta", "Timeline" : "Vremenska crta",
"Deleted stacks" : "Izbrisani stogovi",
"Undo" : "Poništi", "Undo" : "Poništi",
"Deleted cards" : "Izbrisane kartice", "Deleted cards" : "Izbrisane kartice",
"Share board with a user, group or circle …" : "Dijelite ploču s korisnikom, grupom ili krugom...",
"Board owner" : "Vlasnik ploče",
"(Group)" : "(Grupa)", "(Group)" : "(Grupa)",
"(Circle)" : "(Krug)",
"Can edit" : "Uređivanje moguće", "Can edit" : "Uređivanje moguće",
"Can share" : "Dijeljenje moguće", "Can share" : "Dijeljenje moguće",
"Can manage" : "Upravljanje moguće",
"Delete" : "Izbriši", "Delete" : "Izbriši",
"Add a new stack" : "Dodaj novi stog", "Add a new stack" : "Dodaj novi stog",
"Delete list" : "Izbriši popis",
"Add card" : "Dodaj karticu", "Add card" : "Dodaj karticu",
"Add a new card" : "Dodaj novu karticu", "Edit" : "Uređivanje",
"Edit" : "Uredi", "Details" : "Pojedinosti",
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
"Assign to users" : "Dodijeli korisnicima",
"Assign a user to this card…" : "Dodijeli korisnika ovoj kartici...",
"Due date" : "Datum dospijeća", "Due date" : "Datum dospijeća",
"Set a due date" : "Postavi datum dospijeća",
"Remove due date" : "Ukloni datum dospijeća", "Remove due date" : "Ukloni datum dospijeća",
"Description" : "Opis", "Description" : "Opis",
"Formatting help" : "Pomoć pri oblikovanju", "Formatting help" : "Pomoć pri oblikovanju",
@@ -163,23 +128,10 @@ OC.L10N.register(
"Modified" : "Promijenjeno", "Modified" : "Promijenjeno",
"Created" : "Stvoreno", "Created" : "Stvoreno",
"Upload attachment" : "Otpremi privitak", "Upload attachment" : "Otpremi privitak",
"Delete Attachment" : "Izbriši privitak",
"Restore Attachment" : "Vrati privitak",
"No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!",
"Save" : "Spremi", "Save" : "Spremi",
"The comment cannot be empty." : "Komentar ne može biti prazan.",
"The comment cannot be longer than 1000 characters." : "Komentar ne može duži od 1000 znakova.",
"In reply to" : "Kao odgovor",
"Reply" : "Odgovori",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"(group)" : "(grupa)",
"Assign to me" : "Dodijeli meni",
"Delete card" : "Izbriši karticu", "Delete card" : "Izbriši karticu",
"Move card" : "Premjesti karticu", "Move card" : "Premjesti karticu",
"Card details" : "Pojedinosti o kartici",
"Select a stack" : "Odaberi stog",
"seconds ago" : "prije nekoliko sekundi",
"All boards" : "Sve ploče",
"Archived boards" : "Arhivirane ploče", "Archived boards" : "Arhivirane ploče",
"Shared boards" : "Dijeljene ploče", "Shared boards" : "Dijeljene ploče",
"Settings" : "Postavke", "Settings" : "Postavke",
@@ -187,14 +139,10 @@ OC.L10N.register(
"New board title" : "Novi naslov ploče", "New board title" : "Novi naslov ploče",
"Edit board" : "Uredi ploču", "Edit board" : "Uredi ploču",
"An error occurred" : "Došlo je do pogreške", "An error occurred" : "Došlo je do pogreške",
"Clone board" : "Kloniraj ploču",
"Archive board" : "Arhiviraj ploču", "Archive board" : "Arhiviraj ploču",
"Unarchive board" : "Dearhiviraj ploču", "Unarchive board" : "Dearhiviraj ploču",
"Delete board" : "Izbriši ploču", "Delete board" : "Izbriši ploču",
"Board details" : "Pojedinosti o ploči", "Board details" : "Pojedinosti o ploči",
"Link to a board" : "Poveznica na ploču", "Link to a board" : "Poveznica na ploču"
"Link to a card" : "Poveznica na karticu",
"Something went wrong" : "Nešto je pošlo po krivu",
"Maximum file size of {size} exceeded" : "Prekoračena je maksimalna veličina datoteke od {size}"
}, },
"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"); "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;");

View File

@@ -64,7 +64,7 @@
"A <strong>card description</strong> inside the Deck app has been changed" : "Promijenjen je <strong>opis kartice</strong> u aplikaciji Deck", "A <strong>card description</strong> inside the Deck app has been changed" : "Promijenjen je <strong>opis kartice</strong> u aplikaciji Deck",
"Deck" : "Deck", "Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Promjene u <strong>aplikaciji Deck</strong>", "Changes in the <strong>Deck app</strong>" : "Promjene u <strong>aplikaciji Deck</strong>",
"A <strong>comment</strong> was created on a card" : "Na kartici je stvoren <strong>komentar</strong>", "A <strong>comment</strong> was created on a card" : "<strong>Komentar</strong> je stvoren na kartici",
"Personal" : "Osobno", "Personal" : "Osobno",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.", "{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.",
@@ -94,65 +94,30 @@
"Could not write file to disk" : "Nije moguće zapisati datoteku na disk", "Could not write file to disk" : "Nije moguće zapisati datoteku na disk",
"A PHP extension stopped the file upload" : "Proširenje PHP-a zaustavilo je otpremanje datoteke", "A PHP extension stopped the file upload" : "Proširenje PHP-a zaustavilo je otpremanje datoteke",
"No file uploaded or file size exceeds maximum of %s" : "Nijedna datoteka nije otpremljena ili veličina datoteke premašuje maksimalnu veličinu od %s", "No file uploaded or file size exceeds maximum of %s" : "Nijedna datoteka nije otpremljena ili veličina datoteke premašuje maksimalnu veličinu od %s",
"Personal planning and team project organization" : "Osobno planiranje i organizacija timskih projekata",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt",
"Create new board" : "Stvori novu ploču", "Create new board" : "Stvori novu ploču",
"new board" : "nova ploča",
"Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom", "Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom",
"Select board" : "Odaberi ploču", "Select board" : "Odaberi ploču",
"Select the card to link to a project" : "Odaberite karticu za povezivanje s projektom",
"Select a board" : "Odaberite ploču",
"Select a card" : "Odaberite karticu",
"Link to card" : "Poveznica na karticu",
"Cancel" : "Odustani", "Cancel" : "Odustani",
"File already exists" : "Datoteka već postoji",
"A file with the name {filename} already exists." : "Datoteka s nazivom {filename} već postoji.",
"Do you want to overwrite it?" : "Želite li prepisati?",
"Overwrite file" : "Prepiši datoteku",
"Keep existing file" : "Zadrži postojeću datoteku",
"This board is read only" : "Ova je ploča samo za čitanje",
"Drop your files to upload" : "Ispustite datoteke za otpremu",
"Add new list" : "Dodaj novi popis",
"List name" : "Naziv popisa",
"Apply filter" : "Primijeni filtar",
"Filter by tag" : "Filtriraj prema oznaci",
"Filter by assigned user" : "Filtriraj prema dodijeljenom korisniku",
"Filter by due date" : "Filtriraj prema datumu dospijeća",
"Overdue" : "Kasni",
"Today" : "Danas",
"Next 7 days" : "Sljedećih 7 dana",
"Next 30 days" : "Sljedećih 30 dana",
"No due date" : "Nema datuma dospijeća",
"Show archived cards" : "Prikaži arhivirane kartice", "Show archived cards" : "Prikaži arhivirane kartice",
"Hide archived cards" : "Sakrij arhivirane kartice",
"Toggle compact mode" : "Prebaci u kompaktni način rada", "Toggle compact mode" : "Prebaci u kompaktni način rada",
"Details" : "Pojedinosti",
"Loading board" : "Učitavanje ploče",
"Board not found" : "Ploča nije pronađena",
"Sharing" : "Dijeljenje", "Sharing" : "Dijeljenje",
"Tags" : "Oznake", "Tags" : "Oznake",
"Deleted items" : "Izbrisane stavke", "Deleted items" : "Izbrisane stavke",
"Timeline" : "Vremenska crta", "Timeline" : "Vremenska crta",
"Deleted stacks" : "Izbrisani stogovi",
"Undo" : "Poništi", "Undo" : "Poništi",
"Deleted cards" : "Izbrisane kartice", "Deleted cards" : "Izbrisane kartice",
"Share board with a user, group or circle …" : "Dijelite ploču s korisnikom, grupom ili krugom...",
"Board owner" : "Vlasnik ploče",
"(Group)" : "(Grupa)", "(Group)" : "(Grupa)",
"(Circle)" : "(Krug)",
"Can edit" : "Uređivanje moguće", "Can edit" : "Uređivanje moguće",
"Can share" : "Dijeljenje moguće", "Can share" : "Dijeljenje moguće",
"Can manage" : "Upravljanje moguće",
"Delete" : "Izbriši", "Delete" : "Izbriši",
"Add a new stack" : "Dodaj novi stog", "Add a new stack" : "Dodaj novi stog",
"Delete list" : "Izbriši popis",
"Add card" : "Dodaj karticu", "Add card" : "Dodaj karticu",
"Add a new card" : "Dodaj novu karticu", "Edit" : "Uređivanje",
"Edit" : "Uredi", "Details" : "Pojedinosti",
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
"Assign to users" : "Dodijeli korisnicima",
"Assign a user to this card…" : "Dodijeli korisnika ovoj kartici...",
"Due date" : "Datum dospijeća", "Due date" : "Datum dospijeća",
"Set a due date" : "Postavi datum dospijeća",
"Remove due date" : "Ukloni datum dospijeća", "Remove due date" : "Ukloni datum dospijeća",
"Description" : "Opis", "Description" : "Opis",
"Formatting help" : "Pomoć pri oblikovanju", "Formatting help" : "Pomoć pri oblikovanju",
@@ -161,23 +126,10 @@
"Modified" : "Promijenjeno", "Modified" : "Promijenjeno",
"Created" : "Stvoreno", "Created" : "Stvoreno",
"Upload attachment" : "Otpremi privitak", "Upload attachment" : "Otpremi privitak",
"Delete Attachment" : "Izbriši privitak",
"Restore Attachment" : "Vrati privitak",
"No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!",
"Save" : "Spremi", "Save" : "Spremi",
"The comment cannot be empty." : "Komentar ne može biti prazan.",
"The comment cannot be longer than 1000 characters." : "Komentar ne može duži od 1000 znakova.",
"In reply to" : "Kao odgovor",
"Reply" : "Odgovori",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"(group)" : "(grupa)",
"Assign to me" : "Dodijeli meni",
"Delete card" : "Izbriši karticu", "Delete card" : "Izbriši karticu",
"Move card" : "Premjesti karticu", "Move card" : "Premjesti karticu",
"Card details" : "Pojedinosti o kartici",
"Select a stack" : "Odaberi stog",
"seconds ago" : "prije nekoliko sekundi",
"All boards" : "Sve ploče",
"Archived boards" : "Arhivirane ploče", "Archived boards" : "Arhivirane ploče",
"Shared boards" : "Dijeljene ploče", "Shared boards" : "Dijeljene ploče",
"Settings" : "Postavke", "Settings" : "Postavke",
@@ -185,14 +137,10 @@
"New board title" : "Novi naslov ploče", "New board title" : "Novi naslov ploče",
"Edit board" : "Uredi ploču", "Edit board" : "Uredi ploču",
"An error occurred" : "Došlo je do pogreške", "An error occurred" : "Došlo je do pogreške",
"Clone board" : "Kloniraj ploču",
"Archive board" : "Arhiviraj ploču", "Archive board" : "Arhiviraj ploču",
"Unarchive board" : "Dearhiviraj ploču", "Unarchive board" : "Dearhiviraj ploču",
"Delete board" : "Izbriši ploču", "Delete board" : "Izbriši ploču",
"Board details" : "Pojedinosti o ploči", "Board details" : "Pojedinosti o ploči",
"Link to a board" : "Poveznica na ploču", "Link to a board" : "Poveznica na ploču"
"Link to a card" : "Poveznica na karticu",
"Something went wrong" : "Nešto je pošlo po krivu",
"Maximum file size of {size} exceeded" : "Prekoračena je maksimalna veličina datoteke od {size}"
},"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;" },"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"
} }

View File

@@ -99,18 +99,12 @@ OC.L10N.register(
"Select the board to link to a project" : "Válasszon ki egy táblát, amely egy projektre fog hivatkozni", "Select the board to link to a project" : "Válasszon ki egy táblát, amely egy projektre fog hivatkozni",
"Select board" : "Válasszon táblát", "Select board" : "Válasszon táblát",
"Cancel" : "Mégse", "Cancel" : "Mégse",
"File already exists" : "A fájl már létezik",
"Do you want to overwrite it?" : "Felülírod?",
"Drop your files to upload" : "Dobja el a fájlokat a feltöltéshez",
"Filter by tag" : "Címke szerinti szűrés",
"Today" : "Ma",
"Show archived cards" : "Archivált kártyák megjelenítése", "Show archived cards" : "Archivált kártyák megjelenítése",
"Hide archived cards" : "Archivált kártyák elrejtése",
"Toggle compact mode" : "Kompakt mód be/ki", "Toggle compact mode" : "Kompakt mód be/ki",
"Details" : "Részletek",
"Sharing" : "Megosztás",
"Tags" : "Címkék", "Tags" : "Címkék",
"Deleted items" : "Törölt elemek",
"Timeline" : "Idővonal", "Timeline" : "Idővonal",
"Deleted stacks" : "Törölt rakások",
"Undo" : "Visszavonás", "Undo" : "Visszavonás",
"Deleted cards" : "Törölt kártyák", "Deleted cards" : "Törölt kártyák",
"(Group)" : "(Csoport)", "(Group)" : "(Csoport)",
@@ -130,12 +124,8 @@ OC.L10N.register(
"Created" : "Létrehozva", "Created" : "Létrehozva",
"Upload attachment" : "Melléklet feltöltése", "Upload attachment" : "Melléklet feltöltése",
"Save" : "Mentés", "Save" : "Mentés",
"Reply" : "Válasz",
"Update" : "Frissítés", "Update" : "Frissítés",
"(group)" : "(csoport)",
"Delete card" : "Kártya törlése", "Delete card" : "Kártya törlése",
"Move card" : "Kártya áthelyezése",
"seconds ago" : "másodperce",
"Archived boards" : "Archivált táblák", "Archived boards" : "Archivált táblák",
"Shared boards" : "Megosztott táblák", "Shared boards" : "Megosztott táblák",
"Settings" : "Beállítások", "Settings" : "Beállítások",
@@ -147,7 +137,6 @@ OC.L10N.register(
"Unarchive board" : "Tábla archiválásának visszavonása", "Unarchive board" : "Tábla archiválásának visszavonása",
"Delete board" : "Tábla törlése", "Delete board" : "Tábla törlése",
"Board details" : "Tábla részletek", "Board details" : "Tábla részletek",
"Link to a board" : "Hivatkozás egy táblához", "Link to a board" : "Hivatkozás egy táblához"
"Maximum file size of {size} exceeded" : "A legnagyobb fájlméret ({size}) túllépve"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

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