Compare commits

..

1 Commits

Author SHA1 Message Date
Jakob Röhrl
8d58e6b584 add calendar link
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-01-30 14:19:56 +01:00
277 changed files with 6779 additions and 10663 deletions

View File

@@ -130,3 +130,28 @@ trigger:
event:
- pull_request
- 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'
],
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
run: |
npm run build --if-present
- name: eslint
run: |
npm run lint
env:
CI: true

View File

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

View File

@@ -1,36 +1,6 @@
# Changelog
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
## 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
- :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)

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
</description>
<version>1.0.0-beta2</version>
<version>1.0.0-alpha1</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<namespace>Deck</namespace>
@@ -36,7 +36,7 @@
<database min-version="9.4">pgsql</database>
<database>sqlite</database>
<database min-version="5.5">mysql</database>
<nextcloud min-version="18" max-version="19" />
<nextcloud min-version="17" max-version="19" />
</dependencies>
<background-jobs>
<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#removeLabel', 'url' => '/cards/{cardId}/label/{labelId}', 'verb' => 'DELETE'],
['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#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#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' => '.+']],
],
'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",
"jakub-onderka/php-parallel-lint": "^1.0.0",
"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('circles', '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('reply', 'deck', 1);
.icon-toggle-compact-collapsed {
@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 |
| type | String | Type of the card (for later use) use 'plain' for now |
| 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
@@ -938,232 +936,3 @@ For now only `deck_file` is supported as an attachment type.
##### 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",
"A PHP extension stopped the file upload" : "n PHP-uitbreiding het die oplaai gestaak",
"Cancel" : "Kanselleer",
"File already exists" : "Lêer bestaan reeds",
"Today" : "Vandag",
"Details" : "Besonderhede",
"Tags" : "Etikette",
"Can edit" : "Kan redigeer",
"Can share" : "Kan deel",
"Delete" : "Skrap",
"Edit" : "Wysig",
"Details" : "Besonderhede",
"Due date" : "Sperdatum",
"Description" : "Beskrywing",
"Comments" : "Kommentare",
"Modified" : "Gewysig",
"Created" : "Geskep",
"Save" : "Stoor",
"Reply" : "Antwoord",
"Update" : "Werk by",
"seconds ago" : "sekondes gelede",
"Settings" : "Instellings",
"An error occurred" : "'n Fout het voorgekom"
},

View File

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

View File

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

View File

@@ -7,10 +7,6 @@
"No file was uploaded" : "لم يتم رفع أي ملف",
"Missing a temporary folder" : "المجلد المؤقت غير موجود",
"Cancel" : "إلغاء",
"File already exists" : "الملف موجود مسبقاً",
"Today" : "اليوم",
"Details" : "التفاصيل",
"Sharing" : "المشاركة",
"Tags" : "الوسوم",
"Timeline" : "الخيط الزمني",
"Undo" : "تراجع",
@@ -24,10 +20,8 @@
"Modified" : "آخر تعديل",
"Upload attachment" : "رفع المرفقات",
"Save" : "حفظ",
"Reply" : "رد",
"Update" : "تحديث",
"Delete card" : "حذف البطاقة",
"seconds ago" : "ثوان مضت",
"Settings" : "الإعدادات",
"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;"

View File

@@ -15,10 +15,7 @@ OC.L10N.register(
"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",
"Cancel" : "Encaboxar",
"File already exists" : "Yá esiste'l ficheru",
"Today" : "Güei",
"Show archived cards" : "Amosar tarxetes archivaes",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetes",
"Undo" : "Desfacer",
@@ -26,16 +23,14 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Desaniciar",
"Edit" : "Editar",
"Details" : "Detalles",
"Description" : "Descripción",
"Attachments" : "Axuntos",
"Comments" : "Comentarios",
"Modified" : "Modificóse'l",
"Created" : "Creóse",
"Save" : "Guardar",
"Reply" : "Rempuesta",
"Update" : "Anovar",
"(group)" : "(grupu)",
"seconds ago" : "hai segundos",
"Settings" : "Settings"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -13,10 +13,7 @@
"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",
"Cancel" : "Encaboxar",
"File already exists" : "Yá esiste'l ficheru",
"Today" : "Güei",
"Show archived cards" : "Amosar tarxetes archivaes",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetes",
"Undo" : "Desfacer",
@@ -24,16 +21,14 @@
"Can share" : "Can share",
"Delete" : "Desaniciar",
"Edit" : "Editar",
"Details" : "Detalles",
"Description" : "Descripción",
"Attachments" : "Axuntos",
"Comments" : "Comentarios",
"Modified" : "Modificóse'l",
"Created" : "Creóse",
"Save" : "Guardar",
"Reply" : "Rempuesta",
"Update" : "Anovar",
"(group)" : "(grupu)",
"seconds ago" : "hai segundos",
"Settings" : "Settings"
},"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",
"Missing a temporary folder" : "Müvəqqəti qovluq çatışmır",
"Cancel" : "Dayandır",
"Today" : "Bu gün",
"Details" : "Detallar",
"Sharing" : "Paylaşılır",
"Tags" : "Işarələr",
"Can edit" : "Can edit",
"Can share" : "Can share",
@@ -18,10 +15,7 @@ OC.L10N.register(
"Description" : "Açıqlanma",
"Modified" : "Dəyişdirildi",
"Save" : "Saxla",
"Reply" : "Cavab",
"Update" : "Yenilənmə",
"(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə",
"Settings" : "Quraşdırmalar"
},
"nplurals=2; plural=(n != 1);");

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -7,7 +7,6 @@ OC.L10N.register(
"No file was uploaded" : "Nijedna datoteka nije učitana.",
"Missing a temporary folder" : "Nedostaje privremeni direktorij.",
"Cancel" : "Otkaži",
"Today" : "Danas",
"Sharing" : "Dijeljenje",
"Can edit" : "Can edit",
"Can share" : "Can share",
@@ -18,7 +17,6 @@ OC.L10N.register(
"Modified" : "Izmijenjeno",
"Save" : "Spremi",
"Update" : "Ažuriraj",
"Settings" : "Podešavanje",
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena"
"Settings" : "Podešavanje"
},
"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.",
"Missing a temporary folder" : "Nedostaje privremeni direktorij.",
"Cancel" : "Otkaži",
"Today" : "Danas",
"Sharing" : "Dijeljenje",
"Can edit" : "Can edit",
"Can share" : "Can share",
@@ -16,7 +15,6 @@
"Modified" : "Izmijenjeno",
"Save" : "Spremi",
"Update" : "Ažuriraj",
"Settings" : "Podešavanje",
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena"
"Settings" : "Podešavanje"
},"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 board" : "Selecciona un tauler",
"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",
"Hide archived cards" : "Amaga les targetes arxivades",
"Toggle compact mode" : "Commuta el mode compacte",
"Details" : "Detalls",
"Sharing" : "Compartició",
"Tags" : "Etiquetes",
"Deleted items" : "Elements suprimits",
"Timeline" : "Línia de temps",
"Deleted stacks" : "Piles suprimides",
"Undo" : "Desfés",
"Deleted cards" : "Targetes suprimides",
"(Group)" : "(Grup)",
@@ -118,6 +116,7 @@ OC.L10N.register(
"Add a new stack" : "Afegeix una nova pila",
"Add card" : "Afegeix una targeta",
"Edit" : "Edita",
"Details" : "Detalls",
"Due date" : "Per la data",
"Remove due date" : "Elimina la data de venciment",
"Description" : "Descripció",
@@ -128,12 +127,9 @@ OC.L10N.register(
"Created" : "Creat",
"Upload attachment" : "Carrega l'adjunt",
"Save" : "Desa",
"Reply" : "Respon",
"Update" : "Actualitza",
"(group)" : "(grup)",
"Delete card" : "Suprimeix targeta",
"Move card" : "Mou la targeta",
"seconds ago" : "fa uns segons",
"Archived boards" : "Taulers arxivats",
"Shared boards" : "Taulers compartits",
"Settings" : "Paràmetres",
@@ -145,7 +141,6 @@ OC.L10N.register(
"Unarchive board" : "Desarxiva tauler",
"Delete board" : "Suprimeix tauler",
"Board details" : "Detalls de la junta",
"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}"
"Link to a board" : "Enllaça a un tauler"
},
"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 board" : "Selecciona un tauler",
"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",
"Hide archived cards" : "Amaga les targetes arxivades",
"Toggle compact mode" : "Commuta el mode compacte",
"Details" : "Detalls",
"Sharing" : "Compartició",
"Tags" : "Etiquetes",
"Deleted items" : "Elements suprimits",
"Timeline" : "Línia de temps",
"Deleted stacks" : "Piles suprimides",
"Undo" : "Desfés",
"Deleted cards" : "Targetes suprimides",
"(Group)" : "(Grup)",
@@ -116,6 +114,7 @@
"Add a new stack" : "Afegeix una nova pila",
"Add card" : "Afegeix una targeta",
"Edit" : "Edita",
"Details" : "Detalls",
"Due date" : "Per la data",
"Remove due date" : "Elimina la data de venciment",
"Description" : "Descripció",
@@ -126,12 +125,9 @@
"Created" : "Creat",
"Upload attachment" : "Carrega l'adjunt",
"Save" : "Desa",
"Reply" : "Respon",
"Update" : "Actualitza",
"(group)" : "(grup)",
"Delete card" : "Suprimeix targeta",
"Move card" : "Mou la targeta",
"seconds ago" : "fa uns segons",
"Archived boards" : "Taulers arxivats",
"Shared boards" : "Taulers compartits",
"Settings" : "Paràmetres",
@@ -143,7 +139,6 @@
"Unarchive board" : "Desarxiva tauler",
"Delete board" : "Suprimeix tauler",
"Board details" : "Detalls de la junta",
"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}"
"Link to a board" : "Enllaça a un tauler"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -107,35 +107,16 @@ OC.L10N.register(
"Select a card" : "Vybrat tabuli",
"Link to card" : "Propojit s kartou",
"Cancel" : "Storno",
"File already exists" : "Soubor už existuje",
"A file with the name {filename} already exists." : "Soubor nazvaný {filename} už existuje.",
"Do you want to overwrite it?" : "Chcete položku přepsat?",
"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",
"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",
"Hide archived cards" : "Skrýt archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
"Details" : "Podrobnosti",
"Loading board" : "Načítání tabule",
"Board not found" : "Tabule nenalezena",
"Sharing" : "Sdílení",
"Tags" : "Štítky",
"Deleted items" : "Smazané položky",
"Timeline" : "Časová osa",
"Deleted lists" : "Smazané seznamy",
"Deleted stacks" : "Smazané sloupce",
"Undo" : "Vrátit zpět",
"Deleted cards" : "Smazané karty",
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
@@ -151,41 +132,32 @@ OC.L10N.register(
"Add card" : "Přidat kartu",
"Add a new card" : "Přidat novou kartu",
"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",
"Load More" : "Načíst více",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Assign to users" : "Přiřadit k uživatelům",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
"Assign a user to this card…" : "Přiřadit uživatele k této kartě…",
"Due date" : "Termín",
"Set a due date" : "Vybrat termín",
"Remove due date" : "Odstranit termín",
"Description" : "Popis",
"(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)",
"Formatting help" : "Nápověda k formátování",
"Attachments" : "Přílohy",
"Comments" : "Komentáře",
"Modified" : "Změněno",
"Created" : "Vytvořeno",
"Upload attachment" : "Nahrát přílohu",
"Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"New comment" : "Nový komentář",
"Save" : "Uložit",
"The comment cannot be empty." : "Komentář je třeba vyplnit",
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
"In reply to" : "V odpověď na",
"Reply" : "Odpovědět",
"No users found" : "Nenalezení žádní uživatelé",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Update" : "Aktualizovat",
"(group)" : "(skupina)",
"(circle)" : "(okruh)",
"Assign to me" : "Přiřadit mě",
"Delete card" : "Smazat kartu",
"Move card" : "Přesunout kartu",
"Card details" : "Podrobnosti o kartě",
"Select a stack" : "Vybrat sloupec",
"seconds ago" : "před několika sekundami",
"All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule",
"Shared boards" : "Sdílené tabule",
@@ -200,8 +172,6 @@ OC.L10N.register(
"Delete board" : "Smazat tabuli",
"Board details" : "Podrobnosti o desce",
"Link to a board" : "Propojit s tabulí",
"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}"
"Link to a card" : "Propojit s kartou"
},
"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",
"Link to card" : "Propojit s kartou",
"Cancel" : "Storno",
"File already exists" : "Soubor už existuje",
"A file with the name {filename} already exists." : "Soubor nazvaný {filename} už existuje.",
"Do you want to overwrite it?" : "Chcete položku přepsat?",
"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",
"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",
"Hide archived cards" : "Skrýt archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
"Details" : "Podrobnosti",
"Loading board" : "Načítání tabule",
"Board not found" : "Tabule nenalezena",
"Sharing" : "Sdílení",
"Tags" : "Štítky",
"Deleted items" : "Smazané položky",
"Timeline" : "Časová osa",
"Deleted lists" : "Smazané seznamy",
"Deleted stacks" : "Smazané sloupce",
"Undo" : "Vrátit zpět",
"Deleted cards" : "Smazané karty",
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
@@ -149,41 +130,32 @@
"Add card" : "Přidat kartu",
"Add a new card" : "Přidat novou kartu",
"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",
"Load More" : "Načíst více",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Assign to users" : "Přiřadit k uživatelům",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
"Assign a user to this card…" : "Přiřadit uživatele k této kartě…",
"Due date" : "Termín",
"Set a due date" : "Vybrat termín",
"Remove due date" : "Odstranit termín",
"Description" : "Popis",
"(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)",
"Formatting help" : "Nápověda k formátování",
"Attachments" : "Přílohy",
"Comments" : "Komentáře",
"Modified" : "Změněno",
"Created" : "Vytvořeno",
"Upload attachment" : "Nahrát přílohu",
"Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"New comment" : "Nový komentář",
"Save" : "Uložit",
"The comment cannot be empty." : "Komentář je třeba vyplnit",
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
"In reply to" : "V odpověď na",
"Reply" : "Odpovědět",
"No users found" : "Nenalezení žádní uživatelé",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Update" : "Aktualizovat",
"(group)" : "(skupina)",
"(circle)" : "(okruh)",
"Assign to me" : "Přiřadit mě",
"Delete card" : "Smazat kartu",
"Move card" : "Přesunout kartu",
"Card details" : "Podrobnosti o kartě",
"Select a stack" : "Vybrat sloupec",
"seconds ago" : "před několika sekundami",
"All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule",
"Shared boards" : "Sdílené tabule",
@@ -198,8 +170,6 @@
"Delete board" : "Smazat tabuli",
"Board details" : "Podrobnosti o desce",
"Link to a board" : "Propojit s tabulí",
"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}"
"Link to a card" : "Propojit s kartou"
},"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",
"Missing a temporary folder" : "Plygell dros dro yn eisiau",
"Cancel" : "Diddymu",
"Today" : "Heddiw",
"Details" : "Manylion",
"Tags" : "Tagiau",
"Undo" : "Dadwneud",
"Can edit" : "Can edit",
"Can share" : "Can share",
"Delete" : "Dileu",
"Edit" : "Golygu",
"Details" : "Manylion",
"Description" : "Disgrifiad",
"Modified" : "Addaswyd",
"Upload attachment" : "Llwytho atodiad",
"Save" : "Cadw",
"Update" : "Diweddaru",
"seconds ago" : "eiliad yn ôl",
"Settings" : "Gosodiadau",
"An error occurred" : "Digwyddodd gwall"
},

View File

@@ -5,20 +5,18 @@
"No file was uploaded" : "Ni lwythwyd ffeil i fyny",
"Missing a temporary folder" : "Plygell dros dro yn eisiau",
"Cancel" : "Diddymu",
"Today" : "Heddiw",
"Details" : "Manylion",
"Tags" : "Tagiau",
"Undo" : "Dadwneud",
"Can edit" : "Can edit",
"Can share" : "Can share",
"Delete" : "Dileu",
"Edit" : "Golygu",
"Details" : "Manylion",
"Description" : "Disgrifiad",
"Modified" : "Addaswyd",
"Upload attachment" : "Llwytho atodiad",
"Save" : "Cadw",
"Update" : "Diweddaru",
"seconds ago" : "eiliad yn ôl",
"Settings" : "Gosodiadau",
"An error occurred" : "Digwyddodd gwall"
},"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.",
"Create new board" : "Opret ny liste",
"Cancel" : "Annullér",
"File already exists" : "Fil findes allerede",
"Do you want to overwrite it?" : "Vil du overskrive den?",
"Drop your files to upload" : "Drop dine filer for at uploade",
"Today" : "I dag",
"Show archived cards" : "Vis arkiverede kort",
"Details" : "Detaljer",
"Hide archived cards" : "Skjul arkiverede kort",
"Sharing" : "Deling",
"Tags" : "Mærkat",
"Undo" : "Fortryd",
@@ -33,6 +29,7 @@ OC.L10N.register(
"Add a new stack" : "Tilføj en ny stak",
"Add card" : "Tilføj kort",
"Edit" : "Redigér",
"Details" : "Detaljer",
"Due date" : "Forfaldsdato",
"Remove due date" : "Fjern forfaldsdato",
"Description" : "Beskrivelse",
@@ -43,11 +40,8 @@ OC.L10N.register(
"Created" : "Oprettet",
"Upload attachment" : "Upload vedhæftning",
"Save" : "Gem",
"Reply" : "Besvar",
"Update" : "Opdatér",
"(group)" : "(gruppe)",
"Delete card" : "Slet kort",
"seconds ago" : "sekunder siden",
"Archived boards" : "Arkiverede lister",
"Shared boards" : "Delte lister",
"Settings" : "Indstillinger",

View File

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

View File

@@ -107,35 +107,18 @@ OC.L10N.register(
"Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchtest Du überschreiben?",
"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",
"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",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
"Loading board" : "Board laden",
"Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen",
"Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse",
"Deleted lists" : "Listen löschen",
"Deleted stacks" : "Gelöschte Stapel",
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"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 a new card" : "Neue Karte hinzufügen",
"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",
"Load More" : "Mehr laden",
"Details" : "Details",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
"Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Modified" : "Geändert",
"Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"New comment" : "Neuer Kommentar",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"No users found" : "Keine Nutzer gefunden",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"Card details" : "Kartendetails",
"Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared boards" : "Geteilte Boards",
@@ -200,8 +175,6 @@ OC.L10N.register(
"Delete board" : "Board löschen",
"Board details" : "Board-Details",
"Link to a board" : "Mit einem Board 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"
"Link to a card" : "Mit einer Karte verknüpfen"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -105,35 +105,18 @@
"Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchtest Du überschreiben?",
"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",
"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",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
"Loading board" : "Board laden",
"Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen",
"Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse",
"Deleted lists" : "Listen löschen",
"Deleted stacks" : "Gelöschte Stapel",
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"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 a new card" : "Neue Karte hinzufügen",
"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",
"Load More" : "Mehr laden",
"Details" : "Details",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
"Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Modified" : "Geändert",
"Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"New comment" : "Neuer Kommentar",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"No users found" : "Keine Nutzer gefunden",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"Card details" : "Kartendetails",
"Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared boards" : "Geteilte Boards",
@@ -198,8 +173,6 @@
"Delete board" : "Board löschen",
"Board details" : "Board-Details",
"Link to a board" : "Mit einem Board 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"
"Link to a card" : "Mit einer Karte verknüpfen"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -107,42 +107,25 @@ OC.L10N.register(
"Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchten Sie überschreiben?",
"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",
"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",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
"Loading board" : "Board laden",
"Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen",
"Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse",
"Deleted lists" : "Listen löschen",
"Deleted stacks" : "Gelöschte Stapel",
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
"Board owner" : "Board-Besitzer",
"(Group)" : "(Gruppe)",
"(Circle)" : "(Kreis)",
"Can edit" : "kann bearbeiten",
"Can edit" : "Kann bearbeiten",
"Can share" : "kann teilen",
"Can manage" : "kann verwalten",
"Delete" : "Löschen",
@@ -151,41 +134,33 @@ OC.L10N.register(
"Add card" : "Karte hinzufügen",
"Add a new card" : "Neue Karte hinzufügen",
"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",
"Load More" : "Mehr laden",
"Details" : "Details",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
"Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum entfernen",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Modified" : "Geändert",
"Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"New comment" : "Neuer Kommentar",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"No users found" : "Keine Nutzer gefunden",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"Card details" : "Kartendetails",
"Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared boards" : "Geteilte Boards",
@@ -200,8 +175,6 @@ OC.L10N.register(
"Delete board" : "Board löschen",
"Board details" : "Board-Details",
"Link to a board" : "Mit einem Board 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"
"Link to a card" : "Mit einer Karte verknüpfen"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -105,42 +105,25 @@
"Select a card" : "Eine Karte auswählen",
"Link to card" : "Mit einer Karte verknüpfen",
"Cancel" : "Abbrechen",
"File already exists" : "Datei bereits vorhanden",
"A file with the name {filename} already exists." : "Eine Datei mit diesem Namen {filename} existiert bereits.",
"Do you want to overwrite it?" : "Möchten Sie überschreiben?",
"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",
"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",
"Hide archived cards" : "Archivierte Karten ausblenden",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
"Loading board" : "Board laden",
"Board not found" : "Board nicht gefunden",
"Sharing" : "Teilen",
"Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse",
"Deleted lists" : "Listen löschen",
"Deleted stacks" : "Gelöschte Stapel",
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
"Board owner" : "Board-Besitzer",
"(Group)" : "(Gruppe)",
"(Circle)" : "(Kreis)",
"Can edit" : "kann bearbeiten",
"Can edit" : "Kann bearbeiten",
"Can share" : "kann teilen",
"Can manage" : "kann verwalten",
"Delete" : "Löschen",
@@ -149,41 +132,33 @@
"Add card" : "Karte hinzufügen",
"Add a new card" : "Neue Karte hinzufügen",
"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",
"Load More" : "Mehr laden",
"Details" : "Details",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
"Due date" : "Fälligkeitsdatum",
"Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum entfernen",
"Description" : "Beschreibung",
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Modified" : "Geändert",
"Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"New comment" : "Neuer Kommentar",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf",
"Reply" : "Antworten",
"No users found" : "Keine Nutzer gefunden",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"Card details" : "Kartendetails",
"Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared boards" : "Geteilte Boards",
@@ -198,8 +173,6 @@
"Delete board" : "Board löschen",
"Board details" : "Board-Details",
"Link to a board" : "Mit einem Board 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"
"Link to a card" : "Mit einer Karte verknüpfen"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

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

View File

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

View File

@@ -19,13 +19,8 @@
"A PHP extension stopped the file upload" : "A PHP extension stopped the file upload",
"Create new board" : "Create new board",
"Cancel" : "Cancel",
"File already exists" : "File already exists",
"Do you want to overwrite it?" : "Do you want to overwrite it?",
"Filter by tag" : "Filter by tag",
"Today" : "Today",
"Show archived cards" : "Show archived cards",
"Details" : "Details",
"Sharing" : "Sharing",
"Hide archived cards" : "Hide archived cards",
"Tags" : "Tags",
"Undo" : "Undo",
"Can edit" : "Can edit",
@@ -44,11 +39,8 @@
"Created" : "Created",
"Upload attachment" : "Upload attachment",
"Save" : "Save",
"Reply" : "Reply",
"Update" : "Update",
"(group)" : "(group)",
"Delete card" : "Delete card",
"seconds ago" : "seconds ago",
"Archived boards" : "Archived boards",
"Shared boards" : "Shared boards",
"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 board" : "Elekti tabulon",
"Cancel" : "Nuligi",
"File already exists" : "La dosiero jam ekzistas",
"Today" : "Hodiaŭ",
"Show archived cards" : "Montri arĥivigitajn kartojn",
"Hide archived cards" : "Kaŝi arĥivigitajn kartojn",
"Toggle compact mode" : "Baskuligi densigan vidon",
"Details" : "Detaloj",
"Sharing" : "Kunhavigo",
"Tags" : "Etikedoj",
"Deleted items" : "Forigitaj elementoj",
"Timeline" : "Kronologio",
"Deleted stacks" : "Forigitaj stakoj",
"Undo" : "Malfari",
"Deleted cards" : "Forigitaj kartoj",
"(Group)" : "(grupo)",
@@ -119,6 +118,7 @@ OC.L10N.register(
"Add a new stack" : "Aldoni novan stakon",
"Add card" : "Aldoni karton",
"Edit" : "Redakti",
"Details" : "Detaloj",
"Due date" : "Limdato",
"Remove due date" : "Viŝi limdaton",
"Description" : "Priskribo",
@@ -129,11 +129,8 @@ OC.L10N.register(
"Created" : "Kreita",
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
"Save" : "Konservi",
"Reply" : "Respondi",
"Update" : "Ĝisdatigi",
"(group)" : "(grupo)",
"Delete card" : "Forigi karton",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Archived boards" : "Arĥivigitaj tabuloj",
"Shared boards" : "Kunhavigitaj tabuloj",
"Settings" : "Agordo",
@@ -144,7 +141,6 @@ OC.L10N.register(
"Archive board" : "Enarĥivigi tabulon",
"Unarchive board" : "Elarĥivigi tabulon",
"Delete board" : "Forigi tabulon",
"Link to a board" : "Ligilo al tabulo",
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
"Link to a board" : "Ligilo al tabulo"
},
"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 board" : "Elekti tabulon",
"Cancel" : "Nuligi",
"File already exists" : "La dosiero jam ekzistas",
"Today" : "Hodiaŭ",
"Show archived cards" : "Montri arĥivigitajn kartojn",
"Hide archived cards" : "Kaŝi arĥivigitajn kartojn",
"Toggle compact mode" : "Baskuligi densigan vidon",
"Details" : "Detaloj",
"Sharing" : "Kunhavigo",
"Tags" : "Etikedoj",
"Deleted items" : "Forigitaj elementoj",
"Timeline" : "Kronologio",
"Deleted stacks" : "Forigitaj stakoj",
"Undo" : "Malfari",
"Deleted cards" : "Forigitaj kartoj",
"(Group)" : "(grupo)",
@@ -117,6 +116,7 @@
"Add a new stack" : "Aldoni novan stakon",
"Add card" : "Aldoni karton",
"Edit" : "Redakti",
"Details" : "Detaloj",
"Due date" : "Limdato",
"Remove due date" : "Viŝi limdaton",
"Description" : "Priskribo",
@@ -127,11 +127,8 @@
"Created" : "Kreita",
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
"Save" : "Konservi",
"Reply" : "Respondi",
"Update" : "Ĝisdatigi",
"(group)" : "(grupo)",
"Delete card" : "Forigi karton",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Archived boards" : "Arĥivigitaj tabuloj",
"Shared boards" : "Kunhavigitaj tabuloj",
"Settings" : "Agordo",
@@ -142,7 +139,6 @@
"Archive board" : "Enarĥivigi tabulon",
"Unarchive board" : "Elarĥivigi tabulon",
"Delete board" : "Forigi tabulon",
"Link to a board" : "Ligilo al tabulo",
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
"Link to a board" : "Ligilo al tabulo"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -107,35 +107,18 @@ OC.L10N.register(
"Select a card" : "Seleccionar una tarjeta",
"Link to card" : "Enlace a tarjeta",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"A file with the name {filename} already exists." : "Ya existe un archivo con el nombre {filename}.",
"Do you want to overwrite it?" : "¿Desea sobreescribirlo?",
"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",
"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",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Toggle compact mode" : "Mostrar/ocultar modo compacto",
"Details" : "Detalles",
"Loading board" : "Cargando tablero",
"Board not found" : "Tablero no encontrado",
"Sharing" : "Compartir",
"Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados",
"Timeline" : "Línea de tiempo",
"Deleted lists" : "Listas eliminadas",
"Deleted stacks" : "Pilas eliminadas",
"Undo" : "Deshacer",
"Deleted cards" : "Cartas eliminadas",
"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 a new card" : "Añadir una nueva tarjeta",
"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 ",
"Load More" : "Cargar más",
"Details" : "Detalles",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Assign a user to this card…" : "Asignar un usuario a esta tarjeta...",
"Due date" : "Fecha límite",
"Set a due date" : "Fijar una fecha límite",
"Remove due date" : "Eliminar fecha límite",
"Description" : "Descripción",
"(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)",
"Formatting help" : "Ayuda de formato",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Upload attachment" : "Subir adjunto",
"Delete Attachment" : "Eliminar adjunto",
"Restore Attachment" : "Restaurar Adjunto",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"New comment" : "Comentario nuevo",
"Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.",
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
"In reply to" : "En respuesta a",
"Reply" : "Responder",
"No users found" : "No se han encontrado usuarios",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(circle)",
"Assign to me" : "Asignarme a mí",
"Delete card" : "Eliminar tarjeta",
"Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta",
"Select a stack" : "Seleccionar una pila",
"seconds ago" : "hace unos segundos",
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
@@ -200,8 +175,6 @@ OC.L10N.register(
"Delete board" : "Eliminar tablero",
"Board details" : "Detalles del tablero",
"Link to a board" : "Enlace a un tablero",
"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"
"Link to a card" : "Enlace a una tarjeta"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -105,35 +105,18 @@
"Select a card" : "Seleccionar una tarjeta",
"Link to card" : "Enlace a tarjeta",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"A file with the name {filename} already exists." : "Ya existe un archivo con el nombre {filename}.",
"Do you want to overwrite it?" : "¿Desea sobreescribirlo?",
"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",
"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",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Toggle compact mode" : "Mostrar/ocultar modo compacto",
"Details" : "Detalles",
"Loading board" : "Cargando tablero",
"Board not found" : "Tablero no encontrado",
"Sharing" : "Compartir",
"Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados",
"Timeline" : "Línea de tiempo",
"Deleted lists" : "Listas eliminadas",
"Deleted stacks" : "Pilas eliminadas",
"Undo" : "Deshacer",
"Deleted cards" : "Cartas eliminadas",
"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 a new card" : "Añadir una nueva tarjeta",
"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 ",
"Load More" : "Cargar más",
"Details" : "Detalles",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Assign a user to this card…" : "Asignar un usuario a esta tarjeta...",
"Due date" : "Fecha límite",
"Set a due date" : "Fijar una fecha límite",
"Remove due date" : "Eliminar fecha límite",
"Description" : "Descripción",
"(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)",
"Formatting help" : "Ayuda de formato",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Upload attachment" : "Subir adjunto",
"Delete Attachment" : "Eliminar adjunto",
"Restore Attachment" : "Restaurar Adjunto",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"New comment" : "Comentario nuevo",
"Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.",
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
"In reply to" : "En respuesta a",
"Reply" : "Responder",
"No users found" : "No se han encontrado usuarios",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(circle)",
"Assign to me" : "Asignarme a mí",
"Delete card" : "Eliminar tarjeta",
"Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta",
"Select a stack" : "Seleccionar una pila",
"seconds ago" : "hace unos segundos",
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
@@ -198,8 +173,6 @@
"Delete board" : "Eliminar tablero",
"Board details" : "Detalles del tablero",
"Link to a board" : "Enlace a un tablero",
"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"
"Link to a card" : "Enlace a una tarjeta"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

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

View File

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

View File

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

View File

@@ -12,9 +12,8 @@
"Missing a temporary folder" : "Falta un directorio temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
@@ -22,6 +21,7 @@
"Can share" : "Puede compartir",
"Delete" : "Eliminar",
"Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
@@ -30,10 +30,7 @@
"Modified" : "Modificado",
"Created" : "Creado",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "segundos",
"Settings" : "Ajustes",
"New board title" : "Nuevo título de tablero",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
@@ -35,6 +32,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -44,10 +42,7 @@ OC.L10N.register(
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
@@ -33,6 +30,7 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -42,10 +40,7 @@
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
"Can edit" : "Puede editar",
@@ -44,10 +40,7 @@ OC.L10N.register(
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
"Can edit" : "Puede editar",
@@ -42,10 +38,7 @@
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
@@ -35,6 +32,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -44,10 +42,7 @@ OC.L10N.register(
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
@@ -33,6 +30,7 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -42,10 +40,7 @@
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
"Can edit" : "Puede editar",
@@ -44,10 +40,7 @@ OC.L10N.register(
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
"Can edit" : "Puede editar",
@@ -42,10 +38,7 @@
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
@@ -35,6 +32,7 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -44,10 +42,7 @@ OC.L10N.register(
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Sharing" : "Compartiendo",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
@@ -33,6 +30,7 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Details" : "Detalles",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -42,10 +40,7 @@
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
"Can edit" : "Puede editar",
@@ -44,10 +40,7 @@ OC.L10N.register(
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"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",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
"Hide archived cards" : "Ocultar tarjetas archivadas",
"Tags" : "Etiquetas",
"Undo" : "Deshacer",
"Can edit" : "Puede editar",
@@ -42,10 +38,7 @@
"Created" : "Creado",
"Upload attachment" : "Cargar adjunto",
"Save" : "Guardar",
"Reply" : "Responder",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -8,25 +8,20 @@
"No file was uploaded" : "Ühtegi faili ei latud üles",
"Missing a temporary folder" : "Ajutine kausta on puudu",
"Cancel" : "Loobu",
"Today" : "Täna",
"Details" : "Üksikasjad",
"Sharing" : "Jagamine",
"Tags" : "Sildid",
"Can edit" : "Võib redigeerida",
"Can share" : "Can share",
"Delete" : "Kustuta",
"Edit" : "Redigeeri",
"Details" : "Üksikasjad",
"Due date" : "Tähtaeg",
"Description" : "Kirjeldus",
"Comments" : "Kommentaarid",
"Modified" : "Muudetud",
"Created" : "Loodud",
"Save" : "Salvesta",
"Reply" : "Vasta",
"Update" : "Uuenda",
"(group)" : "(grupp)",
"seconds ago" : "sekundit tagasi",
"Settings" : "Seaded",
"An error occurred" : "Tekkis tõrge"
"Settings" : "Seaded"
},"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",
"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",
"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",
"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 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",
"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",
"Hide archived cards" : "Ezkutatu artxibatutako txartelak",
"Toggle compact mode" : "Txandakatu modu trinkoa",
"Details" : "Xehetasunak",
"Loading board" : "Taula kargatzen",
"Board not found" : "Ez da taula aurkitu",
"Sharing" : "Partekatzea",
"Tags" : "Etiketak",
"Deleted items" : "Ezabatutako elementuak",
"Timeline" : "Denbora-lerroa",
"Deleted lists" : "Ezabatutako zerrendak",
"Deleted stacks" : "Ezabatutako pilak",
"Undo" : "Desegin",
"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 share" : "Partekatu dezake",
"Can manage" : "Kudeatu dezake",
"Delete" : "Ezabatu",
"Add a new stack" : "Gehitu pila berria",
"Delete list" : "Zerrenda ezabatu",
"Add card" : "Gehitu txartela",
"Add a new card" : "Gehitu txartel berri bat",
"Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat",
"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...",
"Details" : "Xehetasunak",
"Due date" : "Epe-muga",
"Set a due date" : "Ezarri epe-muga",
"Remove due date" : "Ezabatu epe-muga",
"Description" : "Deskribapena",
"(Unsaved)" : "(Gorde gabe)",
"(Saving…)" : "(Gordetzen...)",
"Formatting help" : "Formatua emateko laguntza",
"Attachments" : "Eranskinak",
"Comments" : "Iruzkinak",
"Modified" : "Aldatua",
"Created" : "Sortua",
"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",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
"In reply to" : "Honi erantzunez",
"Reply" : "Erantzun",
"Update" : "Eguneratu",
"(group)" : "(taldea)",
"(circle)" : "(zirkulua)",
"Assign to me" : "Esleitu niri",
"Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu txartela",
"Card details" : "Txartelaren xehetasunak",
"Select a stack" : "Hautatu pila bat",
"seconds ago" : "segundo lehenago",
"All boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako taulak",
"Shared boards" : "Partekatutako taulak",
"Archived boards" : "Artxibatutako txartelak",
"Shared boards" : "Partekatutako txartelak",
"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.",
"New board title" : "Taula berriaren izenburua",
"Edit board" : "Editatu taula",
"An error occurred" : "Errore bat gertatu da",
"Clone board" : "Klonatu taula",
"Archive board" : "Artxibatu taula",
"Unarchive board" : "Atera taula artxibotik",
"Delete board" : "Ezabatu taula",
"Board details" : "Mahaigainaren xehetasunak",
"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"
"Link to a board" : "Estekatu taula batera"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -94,112 +94,52 @@
"Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi",
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
"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",
"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 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",
"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",
"Hide archived cards" : "Ezkutatu artxibatutako txartelak",
"Toggle compact mode" : "Txandakatu modu trinkoa",
"Details" : "Xehetasunak",
"Loading board" : "Taula kargatzen",
"Board not found" : "Ez da taula aurkitu",
"Sharing" : "Partekatzea",
"Tags" : "Etiketak",
"Deleted items" : "Ezabatutako elementuak",
"Timeline" : "Denbora-lerroa",
"Deleted lists" : "Ezabatutako zerrendak",
"Deleted stacks" : "Ezabatutako pilak",
"Undo" : "Desegin",
"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 share" : "Partekatu dezake",
"Can manage" : "Kudeatu dezake",
"Delete" : "Ezabatu",
"Add a new stack" : "Gehitu pila berria",
"Delete list" : "Zerrenda ezabatu",
"Add card" : "Gehitu txartela",
"Add a new card" : "Gehitu txartel berri bat",
"Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat",
"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...",
"Details" : "Xehetasunak",
"Due date" : "Epe-muga",
"Set a due date" : "Ezarri epe-muga",
"Remove due date" : "Ezabatu epe-muga",
"Description" : "Deskribapena",
"(Unsaved)" : "(Gorde gabe)",
"(Saving…)" : "(Gordetzen...)",
"Formatting help" : "Formatua emateko laguntza",
"Attachments" : "Eranskinak",
"Comments" : "Iruzkinak",
"Modified" : "Aldatua",
"Created" : "Sortua",
"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",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
"In reply to" : "Honi erantzunez",
"Reply" : "Erantzun",
"Update" : "Eguneratu",
"(group)" : "(taldea)",
"(circle)" : "(zirkulua)",
"Assign to me" : "Esleitu niri",
"Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu txartela",
"Card details" : "Txartelaren xehetasunak",
"Select a stack" : "Hautatu pila bat",
"seconds ago" : "segundo lehenago",
"All boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako taulak",
"Shared boards" : "Partekatutako taulak",
"Archived boards" : "Artxibatutako txartelak",
"Shared boards" : "Partekatutako txartelak",
"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.",
"New board title" : "Taula berriaren izenburua",
"Edit board" : "Editatu taula",
"An error occurred" : "Errore bat gertatu da",
"Clone board" : "Klonatu taula",
"Archive board" : "Artxibatu taula",
"Unarchive board" : "Atera taula artxibotik",
"Delete board" : "Ezabatu taula",
"Board details" : "Mahaigainaren xehetasunak",
"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"
"Link to a board" : "Estekatu taula batera"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

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

View File

@@ -7,10 +7,6 @@
"No file was uploaded" : "هیچ پروندهای بارگذاری نشده",
"Missing a temporary folder" : "یک پوشه موقت گم شده",
"Cancel" : "لغو",
"File already exists" : "فایل از قبل موجود میباشد",
"Today" : "Today",
"Details" : "جزئیات",
"Sharing" : "اشتراک گذاری",
"Tags" : "برچسب‌ها",
"Undo" : "برگرداندن",
"(Group)" : "(گروه)",
@@ -25,17 +21,12 @@
"Comments" : "نظرات",
"Modified" : "تغییر یافته",
"Created" : "ایجاد شده",
"Upload attachment" : "پیوست را بارگیری کنید",
"Save" : "ذخیره",
"Reply" : "پاسخ",
"Update" : "به روز رسانی",
"(group)" : "(گروه)",
"Delete card" : "حذف کارت",
"Move card" : "انتقال کارت",
"seconds ago" : "ثانیه‌هایی پیش",
"Settings" : "تنظیمات",
"Edit board" : "ویرایش تخته ها",
"An error occurred" : "خطایی روی داد",
"Archive board" : " بایگانی تابلو",
"Delete board" : "حذف تابلو"
},"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}",
"{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}",
"{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}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {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 reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
"{user} has mentioned you in a comment on \"%s\"." : "{user} mainitsi sinut kommentissa kortilla \"%s\".",
"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.",
"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",
"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",
"new board" : "uusi taulu",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Select board" : "Valitse taulu",
"Select the card to link to a project" : "Valitse projektiin linkitettävä kortti",
"Select a board" : "Valitse taulu",
"Select a card" : "Valitse kortti",
"Link to card" : "Linkitä korttiin",
"Cancel" : "Peruuta",
"File already exists" : "Tiedosto on jo olemassa",
"A file with the name {filename} already exists." : "Tiedosto nimellä {filename} on jo olemassa.",
"Do you want to overwrite it?" : "Haluatko ylikirjoittaa sen?",
"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",
"Hide archived cards" : "Piilota arkistoidut kortit",
"Toggle compact mode" : "Käytä kompaktia tilaa",
"Details" : "Tiedot",
"Loading board" : "Ladataan taulua",
"Board not found" : "Taulua ei löydy",
"Sharing" : "Jakaminen",
"Tags" : "Tunnisteet",
"Deleted items" : "Poistetut tietueet",
"Timeline" : "Aikajana",
"Deleted stacks" : "Poistetut pinot",
"Undo" : "Kumoa",
"Deleted cards" : "Poistetut kortit",
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
"Board owner" : "Taulun omistaja",
"(Group)" : "(Ryhmä)",
"(Circle)" : "(Piiri)",
"Can edit" : "Voi muokata",
"Can share" : "Voi jakaa",
"Can manage" : "Voi hallita",
"Delete" : "Poista",
"Add a new stack" : "Lisää uusi pino",
"Delete list" : "Poista lista",
"Add card" : "Lisää kortti",
"Add a new card" : "Lisää uusi kortti",
"Edit" : "Muokkaa",
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
"Assign a tag to this card…" : "Lisää kortille tunniste...",
"Details" : "Tiedot",
"Due date" : "Eräpäivä",
"Set a due date" : "Aseta eräpäivä",
"Remove due date" : "Poista eräpäivä",
"Description" : "Kuvaus",
"Formatting help" : "Muotoiluapu",
@@ -156,21 +124,9 @@ OC.L10N.register(
"Modified" : "Muokattu",
"Created" : "Luotu",
"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",
"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ä",
"(group)" : "(ryhmä)",
"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",
"Shared boards" : "Jaetut taulut",
"Settings" : "Asetukset",
@@ -178,14 +134,10 @@ OC.L10N.register(
"New board title" : "Uusi taulun otsikko",
"Edit board" : "Muokkaa taulua",
"An error occurred" : "Tapahtui virhe",
"Clone board" : "Monista taulu",
"Archive board" : "Arkistoi taulu",
"Unarchive board" : "Kumoa taulun arkistointi",
"Delete board" : "Poista taulu",
"Board details" : "Taulun tiedot",
"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"
"Link to a board" : "Linkki taululle"
},
"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}",
"{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}",
"{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}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {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 reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
"{user} has mentioned you in a comment on \"%s\"." : "{user} mainitsi sinut kommentissa kortilla \"%s\".",
"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.",
"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",
"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",
"new board" : "uusi taulu",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Select board" : "Valitse taulu",
"Select the card to link to a project" : "Valitse projektiin linkitettävä kortti",
"Select a board" : "Valitse taulu",
"Select a card" : "Valitse kortti",
"Link to card" : "Linkitä korttiin",
"Cancel" : "Peruuta",
"File already exists" : "Tiedosto on jo olemassa",
"A file with the name {filename} already exists." : "Tiedosto nimellä {filename} on jo olemassa.",
"Do you want to overwrite it?" : "Haluatko ylikirjoittaa sen?",
"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",
"Hide archived cards" : "Piilota arkistoidut kortit",
"Toggle compact mode" : "Käytä kompaktia tilaa",
"Details" : "Tiedot",
"Loading board" : "Ladataan taulua",
"Board not found" : "Taulua ei löydy",
"Sharing" : "Jakaminen",
"Tags" : "Tunnisteet",
"Deleted items" : "Poistetut tietueet",
"Timeline" : "Aikajana",
"Deleted stacks" : "Poistetut pinot",
"Undo" : "Kumoa",
"Deleted cards" : "Poistetut kortit",
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
"Board owner" : "Taulun omistaja",
"(Group)" : "(Ryhmä)",
"(Circle)" : "(Piiri)",
"Can edit" : "Voi muokata",
"Can share" : "Voi jakaa",
"Can manage" : "Voi hallita",
"Delete" : "Poista",
"Add a new stack" : "Lisää uusi pino",
"Delete list" : "Poista lista",
"Add card" : "Lisää kortti",
"Add a new card" : "Lisää uusi kortti",
"Edit" : "Muokkaa",
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
"Assign a tag to this card…" : "Lisää kortille tunniste...",
"Details" : "Tiedot",
"Due date" : "Eräpäivä",
"Set a due date" : "Aseta eräpäivä",
"Remove due date" : "Poista eräpäivä",
"Description" : "Kuvaus",
"Formatting help" : "Muotoiluapu",
@@ -154,21 +122,9 @@
"Modified" : "Muokattu",
"Created" : "Luotu",
"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",
"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ä",
"(group)" : "(ryhmä)",
"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",
"Shared boards" : "Jaetut taulut",
"Settings" : "Asetukset",
@@ -176,14 +132,10 @@
"New board title" : "Uusi taulun otsikko",
"Edit board" : "Muokkaa taulua",
"An error occurred" : "Tapahtui virhe",
"Clone board" : "Monista taulu",
"Archive board" : "Arkistoi taulu",
"Unarchive board" : "Kumoa taulun arkistointi",
"Delete board" : "Poista taulu",
"Board details" : "Taulun tiedot",
"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"
"Link to a board" : "Linkki taululle"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -1,7 +1,7 @@
OC.L10N.register(
"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}",
"You have deleted the board {board}" : "Vous avez 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}",
"{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}",
"{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}",
"{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}",
"{user} has unarchived the board {before}" : "{user} a désarchivé le tableau {before}",
"You have unarchived the board {board}" : "Vous avez sorti des archives le tableau {board}",
"{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}",
"{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}",
@@ -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}",
"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}",
"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}",
"{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}",
"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 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}",
"{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}",
@@ -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}",
"You have commented on card {card}" : "Vous avez 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",
"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",
@@ -107,84 +107,60 @@ OC.L10N.register(
"Select a card" : "Sélectionnez une carte",
"Link to card" : "Relier à une carte",
"Cancel" : "Annuler",
"File already exists" : "Le fichier existe déjà",
"A file with the name {filename} already exists." : "Un fichier avec le nom {filename} existe déjà.",
"Do you want to overwrite it?" : "Souhaitez-vous l'écraser ?",
"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",
"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",
"Hide archived cards" : "Masquer les cartes archivées",
"Toggle compact mode" : "Basculer le mode compact",
"Details" : "Détails",
"Loading board" : "Chargement du tableau…",
"Board not found" : "Tableau non trouvé",
"Sharing" : "Partagé",
"Tags" : "Étiquettes",
"Deleted items" : "Éléments supprimés",
"Timeline" : "Chronologie",
"Deleted lists" : "Listes supprimées",
"Deleted stacks" : "Piles supprimées",
"Undo" : "Annuler",
"Deleted cards" : "Cartes supprimées",
"Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…",
"Board owner" : "Propriétaire du tableau",
"(Group)" : "(Groupe)",
"(Circle)" : "(Cercle)",
"Can edit" : "Peut modifier",
"Can edit" : "Peut éditer",
"Can share" : "Peut partager",
"Can manage" : "Peut gérer",
"Can manage" : "Peut éditer",
"Delete" : "Supprimer",
"Add a new stack" : "Nouvelle pile",
"Delete list" : "Supprimer la liste",
"Add card" : "Ajouter une carte",
"Add a new card" : "Ajouter une nouvelle carte",
"Edit" : "Modifier",
"Add a new tag" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
"Add a new label" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "Vous devez indiquer un titre et une couleur",
"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/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",
"Set a due date" : "Définir une date d'échéance",
"Remove due date" : "Supprimer la date d'échéance",
"Description" : "Description",
"(Unsaved)" : "(Non enregistré)",
"(Saving…)" : "(Enregistrement ...)",
"Formatting help" : "Aide sur la mise en forme",
"Attachments" : "Pièces jointes",
"Comments" : "Commentaires",
"Modified" : "Modifié",
"Created" : "Créé",
"Upload attachment" : "Envoyer une pièce jointe",
"Delete Attachment" : "Supprimer la pièce jointe",
"Restore Attachment" : "Restaurer la pièce jointe",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"New comment" : "Nouveau commentaire",
"Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
"In reply to" : "En réponse à",
"Reply" : "Répondre",
"No users found" : "Aucun utilisateur trouvé",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Update" : "Mettre à jour",
"(group)" : "(groupe)",
"(circle)" : "(cercle)",
"Assign to me" : "Me l'assigner",
"Delete card" : "Supprimer la carte",
"Move card" : "Déplacer la carte",
"Card details" : "Détails de la carte",
"Select a stack" : "Sélectionner une pile",
"seconds ago" : "à l'instant",
"All boards" : "Tous les tableaux",
"Archived boards" : "Tableaux archivés",
"Shared boards" : "Tableaux partagés",
@@ -195,12 +171,10 @@ OC.L10N.register(
"An error occurred" : "Une erreur est survenue",
"Clone board" : "Dupliquer 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",
"Board details" : "Détails du tableau",
"Link to a board" : "Relier à un tableau",
"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"
"Link to a board" : "Lier à un tableau",
"Link to a card" : "Relier à une carte"
},
"nplurals=2; plural=(n > 1);");

View File

@@ -1,5 +1,5 @@
{ "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}",
"You have deleted the board {board}" : "Vous avez 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}",
"{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}",
"{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}",
"{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}",
"{user} has unarchived the board {before}" : "{user} a désarchivé le tableau {before}",
"You have unarchived the board {board}" : "Vous avez sorti des archives le tableau {board}",
"{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}",
"{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}",
@@ -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}",
"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}",
"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}",
"{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}",
"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 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}",
"{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}",
@@ -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}",
"You have commented on card {card}" : "Vous avez 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",
"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",
@@ -105,84 +105,60 @@
"Select a card" : "Sélectionnez une carte",
"Link to card" : "Relier à une carte",
"Cancel" : "Annuler",
"File already exists" : "Le fichier existe déjà",
"A file with the name {filename} already exists." : "Un fichier avec le nom {filename} existe déjà.",
"Do you want to overwrite it?" : "Souhaitez-vous l'écraser ?",
"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",
"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",
"Hide archived cards" : "Masquer les cartes archivées",
"Toggle compact mode" : "Basculer le mode compact",
"Details" : "Détails",
"Loading board" : "Chargement du tableau…",
"Board not found" : "Tableau non trouvé",
"Sharing" : "Partagé",
"Tags" : "Étiquettes",
"Deleted items" : "Éléments supprimés",
"Timeline" : "Chronologie",
"Deleted lists" : "Listes supprimées",
"Deleted stacks" : "Piles supprimées",
"Undo" : "Annuler",
"Deleted cards" : "Cartes supprimées",
"Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…",
"Board owner" : "Propriétaire du tableau",
"(Group)" : "(Groupe)",
"(Circle)" : "(Cercle)",
"Can edit" : "Peut modifier",
"Can edit" : "Peut éditer",
"Can share" : "Peut partager",
"Can manage" : "Peut gérer",
"Can manage" : "Peut éditer",
"Delete" : "Supprimer",
"Add a new stack" : "Nouvelle pile",
"Delete list" : "Supprimer la liste",
"Add card" : "Ajouter une carte",
"Add a new card" : "Ajouter une nouvelle carte",
"Edit" : "Modifier",
"Add a new tag" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
"Add a new label" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "Vous devez indiquer un titre et une couleur",
"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/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",
"Set a due date" : "Définir une date d'échéance",
"Remove due date" : "Supprimer la date d'échéance",
"Description" : "Description",
"(Unsaved)" : "(Non enregistré)",
"(Saving…)" : "(Enregistrement ...)",
"Formatting help" : "Aide sur la mise en forme",
"Attachments" : "Pièces jointes",
"Comments" : "Commentaires",
"Modified" : "Modifié",
"Created" : "Créé",
"Upload attachment" : "Envoyer une pièce jointe",
"Delete Attachment" : "Supprimer la pièce jointe",
"Restore Attachment" : "Restaurer la pièce jointe",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"New comment" : "Nouveau commentaire",
"Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
"In reply to" : "En réponse à",
"Reply" : "Répondre",
"No users found" : "Aucun utilisateur trouvé",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Update" : "Mettre à jour",
"(group)" : "(groupe)",
"(circle)" : "(cercle)",
"Assign to me" : "Me l'assigner",
"Delete card" : "Supprimer la carte",
"Move card" : "Déplacer la carte",
"Card details" : "Détails de la carte",
"Select a stack" : "Sélectionner une pile",
"seconds ago" : "à l'instant",
"All boards" : "Tous les tableaux",
"Archived boards" : "Tableaux archivés",
"Shared boards" : "Tableaux partagés",
@@ -193,12 +169,10 @@
"An error occurred" : "Une erreur est survenue",
"Clone board" : "Dupliquer 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",
"Board details" : "Détails du tableau",
"Link to a board" : "Relier à un tableau",
"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"
"Link to a board" : "Lier à un tableau",
"Link to a card" : "Relier à une carte"
},"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.",
"Finished" : "Rematado",
"To review" : "Para revisar",
"Action needed" : "Necesita unha acción",
"Action needed" : "Necesita atención",
"Later" : "Despois",
"copy" : "copiar",
"To do" : "Para facer",
@@ -107,35 +107,18 @@ OC.L10N.register(
"Select a card" : "Seleccione unha tarxeta",
"Link to card" : "Ligar á tarxeta",
"Cancel" : "Cancelar",
"File already exists" : "O ficheiro xa existe",
"A file with the name {filename} already exists." : "Xa existe un ficheiro co nome {filename}.",
"Do you want to overwrite it?" : "Quere sobrescribilo?",
"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",
"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",
"Hide archived cards" : "Agochar as tarxetas arquivadas",
"Toggle compact mode" : "Alternar o modo compacto",
"Details" : "Detalles",
"Loading board" : "Cargando o taboleiro",
"Board not found" : "Non se atopou o taboleiro",
"Sharing" : "Compartindo",
"Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados",
"Timeline" : "Liña temporal",
"Deleted lists" : "Listas eliminadas",
"Deleted stacks" : "Eliminar rimas",
"Undo" : "Desfacer",
"Deleted cards" : "Eliminar tarxetas",
"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 a new card" : "Engadir unha nova tarxeta",
"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",
"Load More" : "Cargar máis",
"Details" : "Detalles",
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Assign a user to this card…" : "Asigna un usuario a esta tarxeta…",
"Due date" : "Data de caducidade",
"Set a due date" : "Estabelecer a data de caducidade",
"Remove due date" : "Retirar a data de caducidade",
"Description" : "Descrición",
"(Unsaved)" : "(Sen gardar)",
"(Saving…)" : "(Gardando…)",
"Formatting help" : "Axuda de formatado",
"Attachments" : "Anexos",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Upload attachment" : "Enviar anexos",
"Delete Attachment" : "Eliminar anexo",
"Restore Attachment" : "Restaurar anexo",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"New comment" : "Comentario novo",
"Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro",
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
"In reply to" : "En resposta a",
"Reply" : "Responder",
"No users found" : "Non se atoparon usuarios",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(círculo)",
"Assign to me" : "Asignarme",
"Delete card" : "Eliminar tarxeta",
"Move card" : "Mover a tarxeta",
"Card details" : "Detalles da tarxeta",
"Select a stack" : "Seleccione unha rima",
"seconds ago" : "segundos atrás",
"All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
"Shared boards" : "Taboleiros compartidos",
@@ -200,8 +175,6 @@ OC.L10N.register(
"Delete board" : "Eliminar taboleiro",
"Board details" : "Detalles do taboleiro",
"Link to a board" : "Ligar a un taboleiro",
"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}"
"Link to a card" : "Ligar a unha tarxeta"
},
"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.",
"Finished" : "Rematado",
"To review" : "Para revisar",
"Action needed" : "Necesita unha acción",
"Action needed" : "Necesita atención",
"Later" : "Despois",
"copy" : "copiar",
"To do" : "Para facer",
@@ -105,35 +105,18 @@
"Select a card" : "Seleccione unha tarxeta",
"Link to card" : "Ligar á tarxeta",
"Cancel" : "Cancelar",
"File already exists" : "O ficheiro xa existe",
"A file with the name {filename} already exists." : "Xa existe un ficheiro co nome {filename}.",
"Do you want to overwrite it?" : "Quere sobrescribilo?",
"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",
"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",
"Hide archived cards" : "Agochar as tarxetas arquivadas",
"Toggle compact mode" : "Alternar o modo compacto",
"Details" : "Detalles",
"Loading board" : "Cargando o taboleiro",
"Board not found" : "Non se atopou o taboleiro",
"Sharing" : "Compartindo",
"Tags" : "Etiquetas",
"Deleted items" : "Elementos eliminados",
"Timeline" : "Liña temporal",
"Deleted lists" : "Listas eliminadas",
"Deleted stacks" : "Eliminar rimas",
"Undo" : "Desfacer",
"Deleted cards" : "Eliminar tarxetas",
"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 a new card" : "Engadir unha nova tarxeta",
"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",
"Load More" : "Cargar máis",
"Details" : "Detalles",
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
"Assign a user to this card…" : "Asigna un usuario a esta tarxeta…",
"Due date" : "Data de caducidade",
"Set a due date" : "Estabelecer a data de caducidade",
"Remove due date" : "Retirar a data de caducidade",
"Description" : "Descrición",
"(Unsaved)" : "(Sen gardar)",
"(Saving…)" : "(Gardando…)",
"Formatting help" : "Axuda de formatado",
"Attachments" : "Anexos",
"Comments" : "Comentarios",
"Modified" : "Modificado",
"Created" : "Creado",
"Upload attachment" : "Enviar anexos",
"Delete Attachment" : "Eliminar anexo",
"Restore Attachment" : "Restaurar anexo",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"New comment" : "Comentario novo",
"Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro",
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
"In reply to" : "En resposta a",
"Reply" : "Responder",
"No users found" : "Non se atoparon usuarios",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(círculo)",
"Assign to me" : "Asignarme",
"Delete card" : "Eliminar tarxeta",
"Move card" : "Mover a tarxeta",
"Card details" : "Detalles da tarxeta",
"Select a stack" : "Seleccione unha rima",
"seconds ago" : "segundos atrás",
"All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
"Shared boards" : "Taboleiros compartidos",
@@ -198,8 +173,6 @@
"Delete board" : "Eliminar taboleiro",
"Board details" : "Detalles do taboleiro",
"Link to a board" : "Ligar a un taboleiro",
"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}"
"Link to a card" : "Ligar a unha tarxeta"
},"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",
"Create new board" : "יצירת לוח חדש",
"Cancel" : "ביטול",
"File already exists" : "הקובץ כבר קיים",
"Do you want to overwrite it?" : "לשכתב עליו?",
"Filter by tag" : "סינון לפי תגית",
"Today" : "היום",
"Show archived cards" : "הצגת כרטיסים בארכיון",
"Details" : "פרטים",
"Hide archived cards" : "הסתרת כרטיסים בארכיון",
"Sharing" : "שיתוף",
"Tags" : "תגיות",
"Undo" : "ביטול",
"(Group)" : "(קבוצה)",
"Can edit" : "ניתן לערוך",
"Can share" : "Can share",
"Delete" : "מחיקה",
"Add a new stack" : "הוספת ערימה חדשה",
"Add card" : "הוספת כרטיס",
"Edit" : "עריכה",
"Details" : "פרטים",
"Due date" : "מועד תפוגה",
"Remove due date" : "הסרת מועד התפוגה",
"Description" : "תיאוג",
@@ -50,11 +46,8 @@ OC.L10N.register(
"Created" : "מועד היצירה",
"Upload attachment" : "העלאת קבצים מצורפים",
"Save" : "שמור",
"Reply" : "תגובה",
"Update" : "עדכון",
"(group)" : "(קבוצה)",
"Delete card" : "מחיקת כרטיס לארכיון",
"seconds ago" : "לפני מספר שניות",
"Archived boards" : "לוחות שנשמרו בארכיון",
"Shared boards" : "לוחות משותפים",
"Settings" : "הגדרות",
@@ -64,7 +57,6 @@ OC.L10N.register(
"Archive board" : "העברת לוח לארכיון",
"Unarchive board" : "הוצאת ארכיון מהלוח",
"Delete board" : "מחיקת לו",
"Board details" : "פרטי לוח",
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג"
"Board details" : "פרטי לוח"
},
"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",
"Create new board" : "יצירת לוח חדש",
"Cancel" : "ביטול",
"File already exists" : "הקובץ כבר קיים",
"Do you want to overwrite it?" : "לשכתב עליו?",
"Filter by tag" : "סינון לפי תגית",
"Today" : "היום",
"Show archived cards" : "הצגת כרטיסים בארכיון",
"Details" : "פרטים",
"Hide archived cards" : "הסתרת כרטיסים בארכיון",
"Sharing" : "שיתוף",
"Tags" : "תגיות",
"Undo" : "ביטול",
"(Group)" : "(קבוצה)",
"Can edit" : "ניתן לערוך",
"Can share" : "Can share",
"Delete" : "מחיקה",
"Add a new stack" : "הוספת ערימה חדשה",
"Add card" : "הוספת כרטיס",
"Edit" : "עריכה",
"Details" : "פרטים",
"Due date" : "מועד תפוגה",
"Remove due date" : "הסרת מועד התפוגה",
"Description" : "תיאוג",
@@ -48,11 +44,8 @@
"Created" : "מועד היצירה",
"Upload attachment" : "העלאת קבצים מצורפים",
"Save" : "שמור",
"Reply" : "תגובה",
"Update" : "עדכון",
"(group)" : "(קבוצה)",
"Delete card" : "מחיקת כרטיס לארכיון",
"seconds ago" : "לפני מספר שניות",
"Archived boards" : "לוחות שנשמרו בארכיון",
"Shared boards" : "לוחות משותפים",
"Settings" : "הגדרות",
@@ -62,7 +55,6 @@
"Archive board" : "העברת לוח לארכיון",
"Unarchive board" : "הוצאת ארכיון מהלוח",
"Delete board" : "מחיקת לו",
"Board details" : "פרטי לוח",
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג"
"Board details" : "פרטי לוח"
},"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",
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Promjene u <strong>aplikaciji Deck</strong>",
"A <strong>comment</strong> was created on a card" : "Na kartici je stvoren <strong>komentar</strong>",
"A <strong>comment</strong> was created on a card" : "<strong>Komentar</strong> je stvoren na kartici",
"Personal" : "Osobno",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.",
@@ -96,65 +96,30 @@ OC.L10N.register(
"Could not write file to disk" : "Nije moguće zapisati datoteku na disk",
"A PHP extension stopped the file upload" : "Proširenje PHP-a zaustavilo je otpremanje datoteke",
"No file uploaded or file size exceeds maximum of %s" : "Nijedna datoteka nije otpremljena ili veličina datoteke premašuje maksimalnu veličinu od %s",
"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",
"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 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",
"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",
"Hide archived cards" : "Sakrij arhivirane kartice",
"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",
"Tags" : "Oznake",
"Deleted items" : "Izbrisane stavke",
"Timeline" : "Vremenska crta",
"Deleted stacks" : "Izbrisani stogovi",
"Undo" : "Poništi",
"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)",
"(Circle)" : "(Krug)",
"Can edit" : "Uređivanje moguće",
"Can share" : "Dijeljenje moguće",
"Can manage" : "Upravljanje moguće",
"Delete" : "Izbriši",
"Add a new stack" : "Dodaj novi stog",
"Delete list" : "Izbriši popis",
"Add card" : "Dodaj karticu",
"Add a new card" : "Dodaj novu karticu",
"Edit" : "Uredi",
"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...",
"Edit" : "Uređivanje",
"Details" : "Pojedinosti",
"Due date" : "Datum dospijeća",
"Set a due date" : "Postavi datum dospijeća",
"Remove due date" : "Ukloni datum dospijeća",
"Description" : "Opis",
"Formatting help" : "Pomoć pri oblikovanju",
@@ -163,23 +128,10 @@ OC.L10N.register(
"Modified" : "Promijenjeno",
"Created" : "Stvoreno",
"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",
"The comment cannot be empty." : "Komentar ne može biti prazan.",
"The comment cannot be longer than 1000 characters." : "Komentar ne može duži od 1000 znakova.",
"In reply to" : "Kao odgovor",
"Reply" : "Odgovori",
"Update" : "Ažuriraj",
"(group)" : "(grupa)",
"Assign to me" : "Dodijeli meni",
"Delete card" : "Izbriši 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",
"Shared boards" : "Dijeljene ploče",
"Settings" : "Postavke",
@@ -187,14 +139,10 @@ OC.L10N.register(
"New board title" : "Novi naslov ploče",
"Edit board" : "Uredi ploču",
"An error occurred" : "Došlo je do pogreške",
"Clone board" : "Kloniraj ploču",
"Archive board" : "Arhiviraj ploču",
"Unarchive board" : "Dearhiviraj ploču",
"Delete board" : "Izbriši ploču",
"Board details" : "Pojedinosti o ploči",
"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}"
"Link to a board" : "Poveznica na ploču"
},
"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",
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Promjene u <strong>aplikaciji Deck</strong>",
"A <strong>comment</strong> was created on a card" : "Na kartici je stvoren <strong>komentar</strong>",
"A <strong>comment</strong> was created on a card" : "<strong>Komentar</strong> je stvoren na kartici",
"Personal" : "Osobno",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.",
@@ -94,65 +94,30 @@
"Could not write file to disk" : "Nije moguće zapisati datoteku na disk",
"A PHP extension stopped the file upload" : "Proširenje PHP-a zaustavilo je otpremanje datoteke",
"No file uploaded or file size exceeds maximum of %s" : "Nijedna datoteka nije otpremljena ili veličina datoteke premašuje maksimalnu veličinu od %s",
"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",
"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 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",
"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",
"Hide archived cards" : "Sakrij arhivirane kartice",
"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",
"Tags" : "Oznake",
"Deleted items" : "Izbrisane stavke",
"Timeline" : "Vremenska crta",
"Deleted stacks" : "Izbrisani stogovi",
"Undo" : "Poništi",
"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)",
"(Circle)" : "(Krug)",
"Can edit" : "Uređivanje moguće",
"Can share" : "Dijeljenje moguće",
"Can manage" : "Upravljanje moguće",
"Delete" : "Izbriši",
"Add a new stack" : "Dodaj novi stog",
"Delete list" : "Izbriši popis",
"Add card" : "Dodaj karticu",
"Add a new card" : "Dodaj novu karticu",
"Edit" : "Uredi",
"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...",
"Edit" : "Uređivanje",
"Details" : "Pojedinosti",
"Due date" : "Datum dospijeća",
"Set a due date" : "Postavi datum dospijeća",
"Remove due date" : "Ukloni datum dospijeća",
"Description" : "Opis",
"Formatting help" : "Pomoć pri oblikovanju",
@@ -161,23 +126,10 @@
"Modified" : "Promijenjeno",
"Created" : "Stvoreno",
"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",
"The comment cannot be empty." : "Komentar ne može biti prazan.",
"The comment cannot be longer than 1000 characters." : "Komentar ne može duži od 1000 znakova.",
"In reply to" : "Kao odgovor",
"Reply" : "Odgovori",
"Update" : "Ažuriraj",
"(group)" : "(grupa)",
"Assign to me" : "Dodijeli meni",
"Delete card" : "Izbriši 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",
"Shared boards" : "Dijeljene ploče",
"Settings" : "Postavke",
@@ -185,14 +137,10 @@
"New board title" : "Novi naslov ploče",
"Edit board" : "Uredi ploču",
"An error occurred" : "Došlo je do pogreške",
"Clone board" : "Kloniraj ploču",
"Archive board" : "Arhiviraj ploču",
"Unarchive board" : "Dearhiviraj ploču",
"Delete board" : "Izbriši ploču",
"Board details" : "Pojedinosti o ploči",
"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}"
"Link to a board" : "Poveznica na ploču"
},"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 board" : "Válasszon táblát",
"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",
"Hide archived cards" : "Archivált kártyák elrejtése",
"Toggle compact mode" : "Kompakt mód be/ki",
"Details" : "Részletek",
"Sharing" : "Megosztás",
"Tags" : "Címkék",
"Deleted items" : "Törölt elemek",
"Timeline" : "Idővonal",
"Deleted stacks" : "Törölt rakások",
"Undo" : "Visszavonás",
"Deleted cards" : "Törölt kártyák",
"(Group)" : "(Csoport)",
@@ -130,12 +124,8 @@ OC.L10N.register(
"Created" : "Létrehozva",
"Upload attachment" : "Melléklet feltöltése",
"Save" : "Mentés",
"Reply" : "Válasz",
"Update" : "Frissítés",
"(group)" : "(csoport)",
"Delete card" : "Kártya törlése",
"Move card" : "Kártya áthelyezése",
"seconds ago" : "másodperce",
"Archived boards" : "Archivált táblák",
"Shared boards" : "Megosztott táblák",
"Settings" : "Beállítások",
@@ -147,7 +137,6 @@ OC.L10N.register(
"Unarchive board" : "Tábla archiválásának visszavonása",
"Delete board" : "Tábla törlése",
"Board details" : "Tábla részletek",
"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"
"Link to a board" : "Hivatkozás egy táblához"
},
"nplurals=2; plural=(n != 1);");

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