Compare commits
2 Commits
enh/nextcl
...
enh/create
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0949886348 | ||
|
|
e4ccf431a4 |
25
.drone.yml
25
.drone.yml
@@ -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
|
||||
|
||||
@@ -3,6 +3,6 @@ module.exports = {
|
||||
'nextcloud'
|
||||
],
|
||||
rules: {
|
||||
'valid-jsdoc': ['off'],
|
||||
'valid-jsdoc': ['warn'],
|
||||
}
|
||||
}
|
||||
|
||||
45
.github/workflows/lint.yml
vendored
45
.github/workflows/lint.yml
vendored
@@ -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
|
||||
5
.github/workflows/nodejs.yml
vendored
5
.github/workflows/nodejs.yml
vendored
@@ -23,4 +23,9 @@ jobs:
|
||||
- name: build
|
||||
run: |
|
||||
npm run build --if-present
|
||||
- name: eslint
|
||||
run: |
|
||||
npm run lint
|
||||
env:
|
||||
CI: true
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||

|
||||
|
||||
|
||||
482
appinfo/database.xml
Normal file
482
appinfo/database.xml
Normal 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>
|
||||
@@ -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'],
|
||||
]
|
||||
];
|
||||
|
||||
@@ -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 \"{}\" \\;"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
231
docs/API.md
231
docs/API.md
@@ -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
|
||||
|
||||
@@ -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 |
@@ -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 |
@@ -12,8 +12,6 @@ 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",
|
||||
"Tags" : "Etikette",
|
||||
"Can edit" : "Kan redigeer",
|
||||
"Can share" : "Kan deel",
|
||||
@@ -26,9 +24,7 @@ OC.L10N.register(
|
||||
"Modified" : "Gewysig",
|
||||
"Created" : "Geskep",
|
||||
"Save" : "Stoor",
|
||||
"Reply" : "Antwoord",
|
||||
"Update" : "Werk by",
|
||||
"seconds ago" : "sekondes gelede",
|
||||
"Settings" : "Instellings",
|
||||
"An error occurred" : "'n Fout het voorgekom"
|
||||
},
|
||||
|
||||
@@ -10,8 +10,6 @@
|
||||
"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",
|
||||
"Tags" : "Etikette",
|
||||
"Can edit" : "Kan redigeer",
|
||||
"Can share" : "Kan deel",
|
||||
@@ -24,9 +22,7 @@
|
||||
"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);"
|
||||
|
||||
@@ -9,9 +9,6 @@ OC.L10N.register(
|
||||
"No file was uploaded" : "لم يتم رفع أي ملف",
|
||||
"Missing a temporary folder" : "المجلد المؤقت غير موجود",
|
||||
"Cancel" : "إلغاء",
|
||||
"File already exists" : "الملف موجود مسبقاً",
|
||||
"Today" : "اليوم",
|
||||
"Sharing" : "المشاركة",
|
||||
"Tags" : "الوسوم",
|
||||
"Timeline" : "الخيط الزمني",
|
||||
"Undo" : "تراجع",
|
||||
@@ -19,16 +16,13 @@ OC.L10N.register(
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "حذف ",
|
||||
"Edit" : "تعديل",
|
||||
"Details" : "التفاصيل",
|
||||
"Description" : "الوصف",
|
||||
"Attachments" : "المرفقات",
|
||||
"Comments" : "تعليقات",
|
||||
"Modified" : "آخر تعديل",
|
||||
"Upload attachment" : "رفع المرفقات",
|
||||
"Save" : "حفظ",
|
||||
"Reply" : "رد",
|
||||
"Update" : "تحديث",
|
||||
"seconds ago" : "ثوان مضت",
|
||||
"Delete card" : "حذف البطاقة",
|
||||
"Settings" : "الإعدادات",
|
||||
"An error occurred" : "طرأ هناك خطأ"
|
||||
|
||||
@@ -7,9 +7,6 @@
|
||||
"No file was uploaded" : "لم يتم رفع أي ملف",
|
||||
"Missing a temporary folder" : "المجلد المؤقت غير موجود",
|
||||
"Cancel" : "إلغاء",
|
||||
"File already exists" : "الملف موجود مسبقاً",
|
||||
"Today" : "اليوم",
|
||||
"Sharing" : "المشاركة",
|
||||
"Tags" : "الوسوم",
|
||||
"Timeline" : "الخيط الزمني",
|
||||
"Undo" : "تراجع",
|
||||
@@ -17,16 +14,13 @@
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "حذف ",
|
||||
"Edit" : "تعديل",
|
||||
"Details" : "التفاصيل",
|
||||
"Description" : "الوصف",
|
||||
"Attachments" : "المرفقات",
|
||||
"Comments" : "تعليقات",
|
||||
"Modified" : "آخر تعديل",
|
||||
"Upload attachment" : "رفع المرفقات",
|
||||
"Save" : "حفظ",
|
||||
"Reply" : "رد",
|
||||
"Update" : "تحديث",
|
||||
"seconds ago" : "ثوان مضت",
|
||||
"Delete card" : "حذف البطاقة",
|
||||
"Settings" : "الإعدادات",
|
||||
"An error occurred" : "طرأ هناك خطأ"
|
||||
|
||||
@@ -15,8 +15,6 @@ 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",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetes",
|
||||
@@ -32,10 +30,7 @@ OC.L10N.register(
|
||||
"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);");
|
||||
|
||||
@@ -13,8 +13,6 @@
|
||||
"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",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetes",
|
||||
@@ -30,10 +28,7 @@
|
||||
"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);"
|
||||
}
|
||||
@@ -7,21 +7,15 @@ 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",
|
||||
"Sharing" : "Paylaşılır",
|
||||
"Tags" : "Işarələr",
|
||||
"Can edit" : "Can edit",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Sil",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Details" : "Detallar",
|
||||
"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);");
|
||||
|
||||
@@ -5,21 +5,15 @@
|
||||
"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",
|
||||
"Sharing" : "Paylaşılır",
|
||||
"Tags" : "Işarələr",
|
||||
"Can edit" : "Can edit",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Sil",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Details" : "Detallar",
|
||||
"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);"
|
||||
}
|
||||
@@ -14,18 +14,12 @@ 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" : "Днес",
|
||||
"Sharing" : "Споделяне",
|
||||
"Tags" : "Етикети",
|
||||
"Undo" : "Отмяна",
|
||||
"Can edit" : "Може да редактира",
|
||||
"Can share" : "Може да споделя",
|
||||
"Delete" : "Изтриване",
|
||||
"Edit" : "Редакция",
|
||||
"Details" : "Подробности",
|
||||
"Due date" : "Крайна дата",
|
||||
"Remove due date" : "Премахни крайната дата",
|
||||
"Description" : "Описание",
|
||||
@@ -35,10 +29,7 @@ OC.L10N.register(
|
||||
"Created" : "Създаден",
|
||||
"Upload attachment" : "Качване",
|
||||
"Save" : "Запазване",
|
||||
"Reply" : "Отговори",
|
||||
"Update" : "Обновяване",
|
||||
"(group)" : "(група)",
|
||||
"seconds ago" : "преди секунди",
|
||||
"Settings" : "Настройки",
|
||||
"An error occurred" : "Възникна грешка"
|
||||
},
|
||||
|
||||
@@ -12,18 +12,12 @@
|
||||
"No file was uploaded" : "Нито един файл не е качен",
|
||||
"Missing a temporary folder" : "Липсва временна папка",
|
||||
"Cancel" : "Отказ",
|
||||
"File already exists" : "Файлът вече съществува",
|
||||
"Do you want to overwrite it?" : "Искате ли да го презапишете?",
|
||||
"Filter by tag" : "Филтрирай по маркер",
|
||||
"Today" : "Днес",
|
||||
"Sharing" : "Споделяне",
|
||||
"Tags" : "Етикети",
|
||||
"Undo" : "Отмяна",
|
||||
"Can edit" : "Може да редактира",
|
||||
"Can share" : "Може да споделя",
|
||||
"Delete" : "Изтриване",
|
||||
"Edit" : "Редакция",
|
||||
"Details" : "Подробности",
|
||||
"Due date" : "Крайна дата",
|
||||
"Remove due date" : "Премахни крайната дата",
|
||||
"Description" : "Описание",
|
||||
@@ -33,10 +27,7 @@
|
||||
"Created" : "Създаден",
|
||||
"Upload attachment" : "Качване",
|
||||
"Save" : "Запазване",
|
||||
"Reply" : "Отговори",
|
||||
"Update" : "Обновяване",
|
||||
"(group)" : "(група)",
|
||||
"seconds ago" : "преди секунди",
|
||||
"Settings" : "Настройки",
|
||||
"An error occurred" : "Възникна грешка"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -7,21 +7,15 @@ OC.L10N.register(
|
||||
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
|
||||
"Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
|
||||
"Cancel" : "বাতির",
|
||||
"Today" : "আজ",
|
||||
"Sharing" : "ভাগাভাগিরত",
|
||||
"Tags" : "ট্যাগ",
|
||||
"Can edit" : "Can edit",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "মুছে",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Details" : "বিসতারিত",
|
||||
"Description" : "বিবরণ",
|
||||
"Modified" : "পরিবর্তিত",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"Reply" : "জবাব",
|
||||
"Update" : "পরিবর্ধন",
|
||||
"(group)" : "(গোষ্ঠি)",
|
||||
"seconds ago" : "সেকেন্ড পূর্বে",
|
||||
"Settings" : "সেটিংস"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -5,21 +5,15 @@
|
||||
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
|
||||
"Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
|
||||
"Cancel" : "বাতির",
|
||||
"Today" : "আজ",
|
||||
"Sharing" : "ভাগাভাগিরত",
|
||||
"Tags" : "ট্যাগ",
|
||||
"Can edit" : "Can edit",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "মুছে",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Details" : "বিসতারিত",
|
||||
"Description" : "বিবরণ",
|
||||
"Modified" : "পরিবর্তিত",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"Reply" : "জবাব",
|
||||
"Update" : "পরিবর্ধন",
|
||||
"(group)" : "(গোষ্ঠি)",
|
||||
"seconds ago" : "সেকেন্ড পূর্বে",
|
||||
"Settings" : "সেটিংস"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -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);");
|
||||
|
||||
@@ -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);"
|
||||
}
|
||||
@@ -99,9 +99,6 @@ 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",
|
||||
@@ -130,10 +127,7 @@ OC.L10N.register(
|
||||
"Created" : "Creat",
|
||||
"Upload attachment" : "Carrega l'adjunt",
|
||||
"Save" : "Desa",
|
||||
"Reply" : "Respon",
|
||||
"Update" : "Actualitza",
|
||||
"(group)" : "(grup)",
|
||||
"seconds ago" : "fa uns segons",
|
||||
"Delete card" : "Suprimeix targeta",
|
||||
"Move card" : "Mou la targeta",
|
||||
"Archived boards" : "Taulers arxivats",
|
||||
@@ -147,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);");
|
||||
|
||||
@@ -97,9 +97,6 @@
|
||||
"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",
|
||||
@@ -128,10 +125,7 @@
|
||||
"Created" : "Creat",
|
||||
"Upload attachment" : "Carrega l'adjunt",
|
||||
"Save" : "Desa",
|
||||
"Reply" : "Respon",
|
||||
"Update" : "Actualitza",
|
||||
"(group)" : "(grup)",
|
||||
"seconds ago" : "fa uns segons",
|
||||
"Delete card" : "Suprimeix targeta",
|
||||
"Move card" : "Mou la targeta",
|
||||
"Archived boards" : "Taulers arxivats",
|
||||
@@ -145,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);"
|
||||
}
|
||||
38
l10n/cs.js
38
l10n/cs.js
@@ -107,32 +107,14 @@ 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",
|
||||
"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",
|
||||
"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 stacks" : "Smazané sloupce",
|
||||
"Undo" : "Vrátit zpět",
|
||||
@@ -152,10 +134,9 @@ OC.L10N.register(
|
||||
"Edit" : "Upravit",
|
||||
"Add a new label" : "Přidat nový popisek",
|
||||
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
|
||||
"Details" : "Podrobnosti",
|
||||
"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",
|
||||
@@ -167,18 +148,11 @@ OC.L10N.register(
|
||||
"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)",
|
||||
"seconds ago" : "před několika sekundami",
|
||||
"Assign to me" : "Přiřadit mě",
|
||||
"Delete card" : "Smazat kartu",
|
||||
"Move card" : "Přesunout kartu",
|
||||
@@ -198,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;");
|
||||
|
||||
38
l10n/cs.json
38
l10n/cs.json
@@ -105,32 +105,14 @@
|
||||
"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",
|
||||
"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",
|
||||
"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 stacks" : "Smazané sloupce",
|
||||
"Undo" : "Vrátit zpět",
|
||||
@@ -150,10 +132,9 @@
|
||||
"Edit" : "Upravit",
|
||||
"Add a new label" : "Přidat nový popisek",
|
||||
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
|
||||
"Details" : "Podrobnosti",
|
||||
"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",
|
||||
@@ -165,18 +146,11 @@
|
||||
"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)",
|
||||
"seconds ago" : "před několika sekundami",
|
||||
"Assign to me" : "Přiřadit mě",
|
||||
"Delete card" : "Smazat kartu",
|
||||
"Move card" : "Přesunout kartu",
|
||||
@@ -196,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;"
|
||||
}
|
||||
@@ -7,7 +7,6 @@ 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",
|
||||
"Tags" : "Tagiau",
|
||||
"Undo" : "Dadwneud",
|
||||
"Can edit" : "Can edit",
|
||||
@@ -20,7 +19,6 @@ OC.L10N.register(
|
||||
"Upload attachment" : "Llwytho atodiad",
|
||||
"Save" : "Cadw",
|
||||
"Update" : "Diweddaru",
|
||||
"seconds ago" : "eiliad yn ôl",
|
||||
"Settings" : "Gosodiadau",
|
||||
"An error occurred" : "Digwyddodd gwall"
|
||||
},
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
"No file was uploaded" : "Ni lwythwyd ffeil i fyny",
|
||||
"Missing a temporary folder" : "Plygell dros dro yn eisiau",
|
||||
"Cancel" : "Diddymu",
|
||||
"Today" : "Heddiw",
|
||||
"Tags" : "Tagiau",
|
||||
"Undo" : "Dadwneud",
|
||||
"Can edit" : "Can edit",
|
||||
@@ -18,7 +17,6 @@
|
||||
"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;"
|
||||
|
||||
@@ -18,10 +18,6 @@ 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",
|
||||
"Hide archived cards" : "Skjul arkiverede kort",
|
||||
"Sharing" : "Deling",
|
||||
@@ -44,10 +40,7 @@ OC.L10N.register(
|
||||
"Created" : "Oprettet",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Save" : "Gem",
|
||||
"Reply" : "Besvar",
|
||||
"Update" : "Opdatér",
|
||||
"(group)" : "(gruppe)",
|
||||
"seconds ago" : "sekunder siden",
|
||||
"Delete card" : "Slet kort",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Shared boards" : "Delte lister",
|
||||
|
||||
@@ -16,10 +16,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Skjul arkiverede kort",
|
||||
"Sharing" : "Deling",
|
||||
@@ -42,10 +38,7 @@
|
||||
"Created" : "Oprettet",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Save" : "Gem",
|
||||
"Reply" : "Besvar",
|
||||
"Update" : "Opdatér",
|
||||
"(group)" : "(gruppe)",
|
||||
"seconds ago" : "sekunder siden",
|
||||
"Delete card" : "Slet kort",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Shared boards" : "Delte lister",
|
||||
|
||||
35
l10n/de.js
35
l10n/de.js
@@ -107,24 +107,8 @@ 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",
|
||||
"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",
|
||||
@@ -152,10 +136,10 @@ OC.L10N.register(
|
||||
"Edit" : "Bearbeiten",
|
||||
"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",
|
||||
@@ -167,18 +151,11 @@ OC.L10N.register(
|
||||
"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)",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Move card" : "Karte verschieben",
|
||||
@@ -198,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);");
|
||||
|
||||
35
l10n/de.json
35
l10n/de.json
@@ -105,24 +105,8 @@
|
||||
"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",
|
||||
"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",
|
||||
@@ -150,10 +134,10 @@
|
||||
"Edit" : "Bearbeiten",
|
||||
"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",
|
||||
@@ -165,18 +149,11 @@
|
||||
"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)",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Move card" : "Karte verschieben",
|
||||
@@ -196,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);"
|
||||
}
|
||||
@@ -107,24 +107,8 @@ 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",
|
||||
"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",
|
||||
@@ -141,7 +125,7 @@ OC.L10N.register(
|
||||
"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",
|
||||
@@ -152,10 +136,10 @@ OC.L10N.register(
|
||||
"Edit" : "Bearbeiten",
|
||||
"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",
|
||||
@@ -167,18 +151,11 @@ OC.L10N.register(
|
||||
"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)",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Move card" : "Karte verschieben",
|
||||
@@ -198,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);");
|
||||
|
||||
@@ -105,24 +105,8 @@
|
||||
"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",
|
||||
"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",
|
||||
@@ -139,7 +123,7 @@
|
||||
"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",
|
||||
@@ -150,10 +134,10 @@
|
||||
"Edit" : "Bearbeiten",
|
||||
"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",
|
||||
@@ -165,18 +149,11 @@
|
||||
"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)",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Move card" : "Karte verschieben",
|
||||
@@ -196,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);"
|
||||
}
|
||||
35
l10n/el.js
35
l10n/el.js
@@ -107,24 +107,8 @@ 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" : "Αποθέστε τα αρχεία σας για ανέβασμα",
|
||||
"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" : "Εναλλαγή λειτουργίας μικρού μεγέθους",
|
||||
@@ -152,10 +136,10 @@ OC.L10N.register(
|
||||
"Edit" : "Επεξεργασία",
|
||||
"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" : "Καθορίστε ημερομηνίας λήξης",
|
||||
@@ -167,18 +151,11 @@ OC.L10N.register(
|
||||
"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)" : "(κύκλος)",
|
||||
"seconds ago" : " δευτερόλεπτα πριν ",
|
||||
"Assign to me" : "Ανάθεση σε εμένα",
|
||||
"Delete card" : "Διαγραφή κάρτας",
|
||||
"Move card" : "Μετακίνηση κάρτας",
|
||||
@@ -198,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);");
|
||||
|
||||
35
l10n/el.json
35
l10n/el.json
@@ -105,24 +105,8 @@
|
||||
"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" : "Αποθέστε τα αρχεία σας για ανέβασμα",
|
||||
"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" : "Εναλλαγή λειτουργίας μικρού μεγέθους",
|
||||
@@ -150,10 +134,10 @@
|
||||
"Edit" : "Επεξεργασία",
|
||||
"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" : "Καθορίστε ημερομηνίας λήξης",
|
||||
@@ -165,18 +149,11 @@
|
||||
"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)" : "(κύκλος)",
|
||||
"seconds ago" : " δευτερόλεπτα πριν ",
|
||||
"Assign to me" : "Ανάθεση σε εμένα",
|
||||
"Delete card" : "Διαγραφή κάρτας",
|
||||
"Move card" : "Μετακίνηση κάρτας",
|
||||
@@ -196,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);"
|
||||
}
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Hide archived cards",
|
||||
"Sharing" : "Sharing",
|
||||
"Tags" : "Tags",
|
||||
"Undo" : "Undo",
|
||||
"Can edit" : "Can edit",
|
||||
@@ -36,7 +31,6 @@ OC.L10N.register(
|
||||
"Add a new stack" : "Add a new stack",
|
||||
"Add card" : "Add card",
|
||||
"Edit" : "Edit",
|
||||
"Details" : "Details",
|
||||
"Due date" : "Due date",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
@@ -47,10 +41,7 @@ OC.L10N.register(
|
||||
"Created" : "Created",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Save" : "Save",
|
||||
"Reply" : "Reply",
|
||||
"Update" : "Update",
|
||||
"(group)" : "(group)",
|
||||
"seconds ago" : "seconds ago",
|
||||
"Delete card" : "Delete card",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Shared boards" : "Shared boards",
|
||||
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Hide archived cards",
|
||||
"Sharing" : "Sharing",
|
||||
"Tags" : "Tags",
|
||||
"Undo" : "Undo",
|
||||
"Can edit" : "Can edit",
|
||||
@@ -34,7 +29,6 @@
|
||||
"Add a new stack" : "Add a new stack",
|
||||
"Add card" : "Add card",
|
||||
"Edit" : "Edit",
|
||||
"Details" : "Details",
|
||||
"Due date" : "Due date",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
@@ -45,10 +39,7 @@
|
||||
"Created" : "Created",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Save" : "Save",
|
||||
"Reply" : "Reply",
|
||||
"Update" : "Update",
|
||||
"(group)" : "(group)",
|
||||
"seconds ago" : "seconds ago",
|
||||
"Delete card" : "Delete card",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Shared boards" : "Shared boards",
|
||||
|
||||
@@ -101,8 +101,6 @@ 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",
|
||||
@@ -131,10 +129,7 @@ OC.L10N.register(
|
||||
"Created" : "Kreita",
|
||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||
"Save" : "Konservi",
|
||||
"Reply" : "Respondi",
|
||||
"Update" : "Ĝisdatigi",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "antaŭ kelkaj sekundoj",
|
||||
"Delete card" : "Forigi karton",
|
||||
"Archived boards" : "Arĥivigitaj tabuloj",
|
||||
"Shared boards" : "Kunhavigitaj tabuloj",
|
||||
@@ -146,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);");
|
||||
|
||||
@@ -99,8 +99,6 @@
|
||||
"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",
|
||||
@@ -129,10 +127,7 @@
|
||||
"Created" : "Kreita",
|
||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||
"Save" : "Konservi",
|
||||
"Reply" : "Respondi",
|
||||
"Update" : "Ĝisdatigi",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "antaŭ kelkaj sekundoj",
|
||||
"Delete card" : "Forigi karton",
|
||||
"Archived boards" : "Arĥivigitaj tabuloj",
|
||||
"Shared boards" : "Kunhavigitaj tabuloj",
|
||||
@@ -144,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);"
|
||||
}
|
||||
33
l10n/es.js
33
l10n/es.js
@@ -107,24 +107,8 @@ 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",
|
||||
"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",
|
||||
@@ -152,6 +136,7 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"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",
|
||||
@@ -166,17 +151,11 @@ OC.L10N.register(
|
||||
"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)",
|
||||
"seconds ago" : "hace unos segundos",
|
||||
"Assign to me" : "Asignarme a mí",
|
||||
"Delete card" : "Eliminar tarjeta",
|
||||
"Move card" : "Mover tarjeta",
|
||||
@@ -196,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);");
|
||||
|
||||
33
l10n/es.json
33
l10n/es.json
@@ -105,24 +105,8 @@
|
||||
"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",
|
||||
"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",
|
||||
@@ -150,6 +134,7 @@
|
||||
"Edit" : "Editar",
|
||||
"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",
|
||||
@@ -164,17 +149,11 @@
|
||||
"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)",
|
||||
"seconds ago" : "hace unos segundos",
|
||||
"Assign to me" : "Asignarme a mí",
|
||||
"Delete card" : "Eliminar tarjeta",
|
||||
"Move card" : "Mover tarjeta",
|
||||
@@ -194,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);"
|
||||
}
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Undo" : "Deshacer",
|
||||
"Can edit" : "Puede editar",
|
||||
@@ -32,7 +27,6 @@ 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",
|
||||
@@ -42,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 ",
|
||||
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Undo" : "Deshacer",
|
||||
"Can edit" : "Puede editar",
|
||||
@@ -30,7 +25,6 @@
|
||||
"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 +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 ",
|
||||
|
||||
@@ -14,7 +14,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -33,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",
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -31,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",
|
||||
|
||||
@@ -21,9 +21,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -45,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 ",
|
||||
|
||||
@@ -19,9 +19,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -43,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 ",
|
||||
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Undo" : "Deshacer",
|
||||
"Can edit" : "Puede editar",
|
||||
@@ -35,7 +31,6 @@ 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",
|
||||
@@ -45,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 ",
|
||||
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Undo" : "Deshacer",
|
||||
"Can edit" : "Puede editar",
|
||||
@@ -33,7 +29,6 @@
|
||||
"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",
|
||||
@@ -43,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 ",
|
||||
|
||||
@@ -21,9 +21,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -45,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 ",
|
||||
|
||||
@@ -19,9 +19,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -43,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 ",
|
||||
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Undo" : "Deshacer",
|
||||
"Can edit" : "Puede editar",
|
||||
@@ -35,7 +31,6 @@ 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",
|
||||
@@ -45,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 ",
|
||||
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Undo" : "Deshacer",
|
||||
"Can edit" : "Puede editar",
|
||||
@@ -33,7 +29,6 @@
|
||||
"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",
|
||||
@@ -43,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 ",
|
||||
|
||||
@@ -21,9 +21,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -45,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 ",
|
||||
|
||||
@@ -19,9 +19,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -43,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 ",
|
||||
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Undo" : "Deshacer",
|
||||
"Can edit" : "Puede editar",
|
||||
@@ -35,7 +31,6 @@ 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",
|
||||
@@ -45,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 ",
|
||||
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Undo" : "Deshacer",
|
||||
"Can edit" : "Puede editar",
|
||||
@@ -33,7 +29,6 @@
|
||||
"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",
|
||||
@@ -43,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 ",
|
||||
|
||||
@@ -17,9 +17,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -41,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 ",
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -39,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 ",
|
||||
|
||||
@@ -21,10 +21,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -47,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 ",
|
||||
|
||||
@@ -19,10 +19,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -45,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 ",
|
||||
|
||||
@@ -17,9 +17,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -41,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 ",
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -39,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 ",
|
||||
|
||||
@@ -17,9 +17,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -41,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 ",
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -39,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 ",
|
||||
|
||||
@@ -17,9 +17,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -41,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 ",
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -39,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 ",
|
||||
|
||||
@@ -17,9 +17,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -41,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 ",
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -39,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 ",
|
||||
|
||||
@@ -17,9 +17,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -41,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 ",
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -39,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 ",
|
||||
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Undo" : "Deshacer",
|
||||
"Can edit" : "Puede editar",
|
||||
@@ -35,7 +31,6 @@ 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",
|
||||
@@ -45,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 ",
|
||||
|
||||
@@ -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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Undo" : "Deshacer",
|
||||
"Can edit" : "Puede editar",
|
||||
@@ -33,7 +29,6 @@
|
||||
"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",
|
||||
@@ -43,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 ",
|
||||
|
||||
@@ -17,9 +17,6 @@ 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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -41,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 ",
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
"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",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Sharing" : "Compartiendo",
|
||||
@@ -39,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 ",
|
||||
|
||||
@@ -10,7 +10,6 @@ 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",
|
||||
"Sharing" : "Jagamine",
|
||||
"Tags" : "Sildid",
|
||||
"Can edit" : "Võib redigeerida",
|
||||
@@ -24,11 +23,7 @@ OC.L10N.register(
|
||||
"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);");
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
"No file was uploaded" : "Ühtegi faili ei latud üles",
|
||||
"Missing a temporary folder" : "Ajutine kausta on puudu",
|
||||
"Cancel" : "Loobu",
|
||||
"Today" : "Täna",
|
||||
"Sharing" : "Jagamine",
|
||||
"Tags" : "Sildid",
|
||||
"Can edit" : "Võib redigeerida",
|
||||
@@ -22,11 +21,7 @@
|
||||
"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);"
|
||||
}
|
||||
12
l10n/eu.js
12
l10n/eu.js
@@ -101,9 +101,6 @@ OC.L10N.register(
|
||||
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
|
||||
"Select board" : "Hautatu taula",
|
||||
"Cancel" : "Utzi",
|
||||
"File already exists" : "Badago izen bereko fitxategi bat",
|
||||
"Drop your files to upload" : "Jaregin zure fitxategiak kargatzeko",
|
||||
"Today" : "Gaur",
|
||||
"Show archived cards" : "Erakutsi artxibatutako txartelak",
|
||||
"Hide archived cards" : "Ezkutatu artxibatutako txartelak",
|
||||
"Toggle compact mode" : "Txandakatu modu trinkoa",
|
||||
@@ -118,7 +115,6 @@ OC.L10N.register(
|
||||
"Can share" : "Partekatu dezake",
|
||||
"Delete" : "Ezabatu",
|
||||
"Add a new stack" : "Gehitu pila berria",
|
||||
"Delete list" : "Zerrenda ezabatu",
|
||||
"Add card" : "Gehitu txartela",
|
||||
"Edit" : "Editatu",
|
||||
"Details" : "Xehetasunak",
|
||||
@@ -131,13 +127,8 @@ OC.L10N.register(
|
||||
"Modified" : "Aldatua",
|
||||
"Created" : "Sortua",
|
||||
"Upload attachment" : "Igo eranskina",
|
||||
"Delete Attachment" : "Ezabatu eranskina",
|
||||
"Save" : "Gorde",
|
||||
"In reply to" : "Honi erantzunez",
|
||||
"Reply" : "Erantzun",
|
||||
"Update" : "Eguneratu",
|
||||
"(group)" : "(taldea)",
|
||||
"seconds ago" : "segundo lehenago",
|
||||
"Delete card" : "Ezabatu txartela",
|
||||
"Move card" : "Mugitu txartela",
|
||||
"Archived boards" : "Artxibatutako txartelak",
|
||||
@@ -151,7 +142,6 @@ OC.L10N.register(
|
||||
"Unarchive board" : "Atera taula artxibotik",
|
||||
"Delete board" : "Ezabatu taula",
|
||||
"Board details" : "Mahaigainaren xehetasunak",
|
||||
"Link to a board" : "Estekatu taula batera",
|
||||
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da"
|
||||
"Link to a board" : "Estekatu taula batera"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
12
l10n/eu.json
12
l10n/eu.json
@@ -99,9 +99,6 @@
|
||||
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
|
||||
"Select board" : "Hautatu taula",
|
||||
"Cancel" : "Utzi",
|
||||
"File already exists" : "Badago izen bereko fitxategi bat",
|
||||
"Drop your files to upload" : "Jaregin zure fitxategiak kargatzeko",
|
||||
"Today" : "Gaur",
|
||||
"Show archived cards" : "Erakutsi artxibatutako txartelak",
|
||||
"Hide archived cards" : "Ezkutatu artxibatutako txartelak",
|
||||
"Toggle compact mode" : "Txandakatu modu trinkoa",
|
||||
@@ -116,7 +113,6 @@
|
||||
"Can share" : "Partekatu dezake",
|
||||
"Delete" : "Ezabatu",
|
||||
"Add a new stack" : "Gehitu pila berria",
|
||||
"Delete list" : "Zerrenda ezabatu",
|
||||
"Add card" : "Gehitu txartela",
|
||||
"Edit" : "Editatu",
|
||||
"Details" : "Xehetasunak",
|
||||
@@ -129,13 +125,8 @@
|
||||
"Modified" : "Aldatua",
|
||||
"Created" : "Sortua",
|
||||
"Upload attachment" : "Igo eranskina",
|
||||
"Delete Attachment" : "Ezabatu eranskina",
|
||||
"Save" : "Gorde",
|
||||
"In reply to" : "Honi erantzunez",
|
||||
"Reply" : "Erantzun",
|
||||
"Update" : "Eguneratu",
|
||||
"(group)" : "(taldea)",
|
||||
"seconds ago" : "segundo lehenago",
|
||||
"Delete card" : "Ezabatu txartela",
|
||||
"Move card" : "Mugitu txartela",
|
||||
"Archived boards" : "Artxibatutako txartelak",
|
||||
@@ -149,7 +140,6 @@
|
||||
"Unarchive board" : "Atera taula artxibotik",
|
||||
"Delete board" : "Ezabatu taula",
|
||||
"Board details" : "Mahaigainaren xehetasunak",
|
||||
"Link to a board" : "Estekatu taula batera",
|
||||
"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);"
|
||||
}
|
||||
@@ -9,9 +9,6 @@ OC.L10N.register(
|
||||
"No file was uploaded" : "هیچ پروندهای بارگذاری نشده",
|
||||
"Missing a temporary folder" : "یک پوشه موقت گم شده",
|
||||
"Cancel" : "لغو",
|
||||
"File already exists" : "فایل از قبل موجود میباشد",
|
||||
"Today" : "Today",
|
||||
"Sharing" : "اشتراک گذاری",
|
||||
"Tags" : "برچسبها",
|
||||
"Undo" : "برگرداندن",
|
||||
"(Group)" : "(گروه)",
|
||||
@@ -20,24 +17,18 @@ OC.L10N.register(
|
||||
"Delete" : "حذف",
|
||||
"Add card" : "کارت اضافه کنید",
|
||||
"Edit" : "ویرایش",
|
||||
"Details" : "جزئیات",
|
||||
"Due date" : "موعد مقرر",
|
||||
"Description" : "توضیحات",
|
||||
"Attachments" : "پیوست ها",
|
||||
"Comments" : "نظرات",
|
||||
"Modified" : "تغییر یافته",
|
||||
"Created" : "ایجاد شده",
|
||||
"Upload attachment" : "پیوست را بارگیری کنید",
|
||||
"Save" : "ذخیره",
|
||||
"Reply" : "پاسخ",
|
||||
"Update" : "به روز رسانی",
|
||||
"(group)" : "(گروه)",
|
||||
"seconds ago" : "ثانیههایی پیش",
|
||||
"Delete card" : "حذف کارت",
|
||||
"Move card" : "انتقال کارت",
|
||||
"Settings" : "تنظیمات",
|
||||
"Edit board" : "ویرایش تخته ها",
|
||||
"An error occurred" : "خطایی روی داد",
|
||||
"Archive board" : " بایگانی تابلو",
|
||||
"Delete board" : "حذف تابلو"
|
||||
},
|
||||
|
||||
@@ -7,9 +7,6 @@
|
||||
"No file was uploaded" : "هیچ پروندهای بارگذاری نشده",
|
||||
"Missing a temporary folder" : "یک پوشه موقت گم شده",
|
||||
"Cancel" : "لغو",
|
||||
"File already exists" : "فایل از قبل موجود میباشد",
|
||||
"Today" : "Today",
|
||||
"Sharing" : "اشتراک گذاری",
|
||||
"Tags" : "برچسبها",
|
||||
"Undo" : "برگرداندن",
|
||||
"(Group)" : "(گروه)",
|
||||
@@ -18,24 +15,18 @@
|
||||
"Delete" : "حذف",
|
||||
"Add card" : "کارت اضافه کنید",
|
||||
"Edit" : "ویرایش",
|
||||
"Details" : "جزئیات",
|
||||
"Due date" : "موعد مقرر",
|
||||
"Description" : "توضیحات",
|
||||
"Attachments" : "پیوست ها",
|
||||
"Comments" : "نظرات",
|
||||
"Modified" : "تغییر یافته",
|
||||
"Created" : "ایجاد شده",
|
||||
"Upload attachment" : "پیوست را بارگیری کنید",
|
||||
"Save" : "ذخیره",
|
||||
"Reply" : "پاسخ",
|
||||
"Update" : "به روز رسانی",
|
||||
"(group)" : "(گروه)",
|
||||
"seconds ago" : "ثانیههایی پیش",
|
||||
"Delete card" : "حذف کارت",
|
||||
"Move card" : "انتقال کارت",
|
||||
"Settings" : "تنظیمات",
|
||||
"Edit board" : "ویرایش تخته ها",
|
||||
"An error occurred" : "خطایی روی داد",
|
||||
"Archive board" : " بایگانی تابلو",
|
||||
"Delete board" : "حذف تابلو"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
|
||||
53
l10n/fi.js
53
l10n/fi.js
@@ -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,35 +94,12 @@ 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",
|
||||
"Loading board" : "Ladataan taulua",
|
||||
"Board not found" : "Taulua ei löydy",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Tags" : "Tunnisteet",
|
||||
"Deleted items" : "Poistetut tietueet",
|
||||
@@ -132,25 +107,15 @@ OC.L10N.register(
|
||||
"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",
|
||||
"Add a new label" : "Lisää uusi tunniste",
|
||||
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
||||
"Details" : "Tiedot",
|
||||
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
||||
"Due date" : "Eräpäivä",
|
||||
"Set a due date" : "Aseta eräpäivä",
|
||||
"Remove due date" : "Poista eräpäivä",
|
||||
"Description" : "Kuvaus",
|
||||
"Formatting help" : "Muotoiluapu",
|
||||
@@ -159,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ä)",
|
||||
"seconds ago" : "sekuntia sitten",
|
||||
"Delete card" : "Poista kortti",
|
||||
"Move card" : "Siirrä kortti",
|
||||
"Card details" : "Näytä kortin sisältö",
|
||||
"Select a stack" : "Valitse pino",
|
||||
"All boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
"Shared boards" : "Jaetut taulut",
|
||||
"Settings" : "Asetukset",
|
||||
@@ -181,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);");
|
||||
|
||||
53
l10n/fi.json
53
l10n/fi.json
@@ -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,35 +92,12 @@
|
||||
"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",
|
||||
"Loading board" : "Ladataan taulua",
|
||||
"Board not found" : "Taulua ei löydy",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Tags" : "Tunnisteet",
|
||||
"Deleted items" : "Poistetut tietueet",
|
||||
@@ -130,25 +105,15 @@
|
||||
"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",
|
||||
"Add a new label" : "Lisää uusi tunniste",
|
||||
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
||||
"Details" : "Tiedot",
|
||||
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
||||
"Due date" : "Eräpäivä",
|
||||
"Set a due date" : "Aseta eräpäivä",
|
||||
"Remove due date" : "Poista eräpäivä",
|
||||
"Description" : "Kuvaus",
|
||||
"Formatting help" : "Muotoiluapu",
|
||||
@@ -157,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ä)",
|
||||
"seconds ago" : "sekuntia sitten",
|
||||
"Delete card" : "Poista kortti",
|
||||
"Move card" : "Siirrä kortti",
|
||||
"Card details" : "Näytä kortin sisältö",
|
||||
"Select a stack" : "Valitse pino",
|
||||
"All boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
"Shared boards" : "Jaetut taulut",
|
||||
"Settings" : "Asetukset",
|
||||
@@ -179,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);"
|
||||
}
|
||||
63
l10n/fr.js
63
l10n/fr.js
@@ -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 l’application 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,24 +107,8 @@ 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",
|
||||
@@ -141,9 +125,9 @@ OC.L10N.register(
|
||||
"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",
|
||||
@@ -151,12 +135,12 @@ OC.L10N.register(
|
||||
"Add a new card" : "Ajouter une nouvelle carte",
|
||||
"Edit" : "Modifier",
|
||||
"Add a new label" : "Ajouter une nouvelle étiquette",
|
||||
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
|
||||
"title and color value must be provided" : "Vous devez indiquer un titre et une couleur",
|
||||
"Load More" : "Charger d'avantage",
|
||||
"Details" : "Détails",
|
||||
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
|
||||
"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",
|
||||
@@ -167,18 +151,11 @@ OC.L10N.register(
|
||||
"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)",
|
||||
"seconds ago" : "à l'instant",
|
||||
"Assign to me" : "Me l'assigner",
|
||||
"Delete card" : "Supprimer la carte",
|
||||
"Move card" : "Déplacer la carte",
|
||||
@@ -194,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);");
|
||||
|
||||
63
l10n/fr.json
63
l10n/fr.json
@@ -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 l’application 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,24 +105,8 @@
|
||||
"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",
|
||||
@@ -139,9 +123,9 @@
|
||||
"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",
|
||||
@@ -149,12 +133,12 @@
|
||||
"Add a new card" : "Ajouter une nouvelle carte",
|
||||
"Edit" : "Modifier",
|
||||
"Add a new label" : "Ajouter une nouvelle étiquette",
|
||||
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
|
||||
"title and color value must be provided" : "Vous devez indiquer un titre et une couleur",
|
||||
"Load More" : "Charger d'avantage",
|
||||
"Details" : "Détails",
|
||||
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
|
||||
"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",
|
||||
@@ -165,18 +149,11 @@
|
||||
"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)",
|
||||
"seconds ago" : "à l'instant",
|
||||
"Assign to me" : "Me l'assigner",
|
||||
"Delete card" : "Supprimer la carte",
|
||||
"Move card" : "Déplacer la carte",
|
||||
@@ -192,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);"
|
||||
}
|
||||
37
l10n/gl.js
37
l10n/gl.js
@@ -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,24 +107,8 @@ 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",
|
||||
"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",
|
||||
@@ -152,10 +136,10 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"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",
|
||||
@@ -167,18 +151,11 @@ OC.L10N.register(
|
||||
"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)",
|
||||
"seconds ago" : "segundos atrás",
|
||||
"Assign to me" : "Asignarme",
|
||||
"Delete card" : "Eliminar tarxeta",
|
||||
"Move card" : "Mover a tarxeta",
|
||||
@@ -198,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);");
|
||||
|
||||
37
l10n/gl.json
37
l10n/gl.json
@@ -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,24 +105,8 @@
|
||||
"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",
|
||||
"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",
|
||||
@@ -150,10 +134,10 @@
|
||||
"Edit" : "Editar",
|
||||
"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",
|
||||
@@ -165,18 +149,11 @@
|
||||
"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)",
|
||||
"seconds ago" : "segundos atrás",
|
||||
"Assign to me" : "Asignarme",
|
||||
"Delete card" : "Eliminar tarxeta",
|
||||
"Move card" : "Mover a tarxeta",
|
||||
@@ -196,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);"
|
||||
}
|
||||
11
l10n/he.js
11
l10n/he.js
@@ -24,16 +24,11 @@ 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" : "הצגת כרטיסים בארכיון",
|
||||
"Hide archived cards" : "הסתרת כרטיסים בארכיון",
|
||||
"Sharing" : "שיתוף",
|
||||
"Tags" : "תגיות",
|
||||
"Undo" : "ביטול",
|
||||
"(Group)" : "(קבוצה)",
|
||||
"Can edit" : "ניתן לערוך",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "מחיקה",
|
||||
@@ -51,10 +46,7 @@ OC.L10N.register(
|
||||
"Created" : "מועד היצירה",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"Save" : "שמור",
|
||||
"Reply" : "תגובה",
|
||||
"Update" : "עדכון",
|
||||
"(group)" : "(קבוצה)",
|
||||
"seconds ago" : "לפני מספר שניות",
|
||||
"Delete card" : "מחיקת כרטיס לארכיון",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Shared boards" : "לוחות משותפים",
|
||||
@@ -65,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;");
|
||||
|
||||
11
l10n/he.json
11
l10n/he.json
@@ -22,16 +22,11 @@
|
||||
"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" : "הצגת כרטיסים בארכיון",
|
||||
"Hide archived cards" : "הסתרת כרטיסים בארכיון",
|
||||
"Sharing" : "שיתוף",
|
||||
"Tags" : "תגיות",
|
||||
"Undo" : "ביטול",
|
||||
"(Group)" : "(קבוצה)",
|
||||
"Can edit" : "ניתן לערוך",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "מחיקה",
|
||||
@@ -49,10 +44,7 @@
|
||||
"Created" : "מועד היצירה",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"Save" : "שמור",
|
||||
"Reply" : "תגובה",
|
||||
"Update" : "עדכון",
|
||||
"(group)" : "(קבוצה)",
|
||||
"seconds ago" : "לפני מספר שניות",
|
||||
"Delete card" : "מחיקת כרטיס לארכיון",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Shared boards" : "לוחות משותפים",
|
||||
@@ -63,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;"
|
||||
}
|
||||
61
l10n/hr.js
61
l10n/hr.js
@@ -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,40 +96,14 @@ 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",
|
||||
"Loading board" : "Učitavanje ploče",
|
||||
"Board not found" : "Ploča nije pronađena",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Tags" : "Oznake",
|
||||
"Deleted items" : "Izbrisane stavke",
|
||||
@@ -137,27 +111,15 @@ OC.L10N.register(
|
||||
"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",
|
||||
"Add a new label" : "Dodaj novu oznaku",
|
||||
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
|
||||
"Edit" : "Uređivanje",
|
||||
"Details" : "Pojedinosti",
|
||||
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
|
||||
"Assign to users" : "Dodijeli korisnicima",
|
||||
"Assign a user to this card…" : "Dodijeli korisnika ovoj kartici...",
|
||||
"Due date" : "Datum dospijeća",
|
||||
"Set a due date" : "Postavi datum dospijeća",
|
||||
"Remove due date" : "Ukloni datum dospijeća",
|
||||
"Description" : "Opis",
|
||||
"Formatting help" : "Pomoć pri oblikovanju",
|
||||
@@ -166,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)",
|
||||
"seconds ago" : "prije nekoliko sekundi",
|
||||
"Assign to me" : "Dodijeli meni",
|
||||
"Delete card" : "Izbriši karticu",
|
||||
"Move card" : "Premjesti karticu",
|
||||
"Card details" : "Pojedinosti o kartici",
|
||||
"Select a stack" : "Odaberi stog",
|
||||
"All boards" : "Sve ploče",
|
||||
"Archived boards" : "Arhivirane ploče",
|
||||
"Shared boards" : "Dijeljene ploče",
|
||||
"Settings" : "Postavke",
|
||||
@@ -190,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;");
|
||||
|
||||
61
l10n/hr.json
61
l10n/hr.json
@@ -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,40 +94,14 @@
|
||||
"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",
|
||||
"Loading board" : "Učitavanje ploče",
|
||||
"Board not found" : "Ploča nije pronađena",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Tags" : "Oznake",
|
||||
"Deleted items" : "Izbrisane stavke",
|
||||
@@ -135,27 +109,15 @@
|
||||
"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",
|
||||
"Add a new label" : "Dodaj novu oznaku",
|
||||
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
|
||||
"Edit" : "Uređivanje",
|
||||
"Details" : "Pojedinosti",
|
||||
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
|
||||
"Assign to users" : "Dodijeli korisnicima",
|
||||
"Assign a user to this card…" : "Dodijeli korisnika ovoj kartici...",
|
||||
"Due date" : "Datum dospijeća",
|
||||
"Set a due date" : "Postavi datum dospijeća",
|
||||
"Remove due date" : "Ukloni datum dospijeća",
|
||||
"Description" : "Opis",
|
||||
"Formatting help" : "Pomoć pri oblikovanju",
|
||||
@@ -164,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)",
|
||||
"seconds ago" : "prije nekoliko sekundi",
|
||||
"Assign to me" : "Dodijeli meni",
|
||||
"Delete card" : "Izbriši karticu",
|
||||
"Move card" : "Premjesti karticu",
|
||||
"Card details" : "Pojedinosti o kartici",
|
||||
"Select a stack" : "Odaberi stog",
|
||||
"All boards" : "Sve ploče",
|
||||
"Archived boards" : "Arhivirane ploče",
|
||||
"Shared boards" : "Dijeljene ploče",
|
||||
"Settings" : "Postavke",
|
||||
@@ -188,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;"
|
||||
}
|
||||
14
l10n/hu.js
14
l10n/hu.js
@@ -99,16 +99,10 @@ 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?",
|
||||
"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",
|
||||
"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",
|
||||
@@ -120,7 +114,6 @@ OC.L10N.register(
|
||||
"Add a new stack" : "Új rakás hozzáadása",
|
||||
"Add card" : "Kártya hozzáadása",
|
||||
"Edit" : "Szerkesztés",
|
||||
"Details" : "Részletek",
|
||||
"Due date" : "Határidő",
|
||||
"Remove due date" : "Határidő eltávolítása",
|
||||
"Description" : "Leírás",
|
||||
@@ -131,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)",
|
||||
"seconds ago" : "másodperce",
|
||||
"Delete card" : "Kártya törlése",
|
||||
"Move card" : "Kártya áthelyezése",
|
||||
"Archived boards" : "Archivált táblák",
|
||||
"Shared boards" : "Megosztott táblák",
|
||||
"Settings" : "Beállítások",
|
||||
@@ -148,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);");
|
||||
|
||||
14
l10n/hu.json
14
l10n/hu.json
@@ -97,16 +97,10 @@
|
||||
"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?",
|
||||
"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",
|
||||
"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",
|
||||
@@ -118,7 +112,6 @@
|
||||
"Add a new stack" : "Új rakás hozzáadása",
|
||||
"Add card" : "Kártya hozzáadása",
|
||||
"Edit" : "Szerkesztés",
|
||||
"Details" : "Részletek",
|
||||
"Due date" : "Határidő",
|
||||
"Remove due date" : "Határidő eltávolítása",
|
||||
"Description" : "Leírás",
|
||||
@@ -129,12 +122,8 @@
|
||||
"Created" : "Létrehozva",
|
||||
"Upload attachment" : "Melléklet feltöltése",
|
||||
"Save" : "Mentés",
|
||||
"Reply" : "Válasz",
|
||||
"Update" : "Frissítés",
|
||||
"(group)" : "(csoport)",
|
||||
"seconds ago" : "másodperce",
|
||||
"Delete card" : "Kártya törlése",
|
||||
"Move card" : "Kártya áthelyezése",
|
||||
"Archived boards" : "Archivált táblák",
|
||||
"Shared boards" : "Megosztott táblák",
|
||||
"Settings" : "Beállítások",
|
||||
@@ -146,7 +135,6 @@
|
||||
"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"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -4,7 +4,6 @@ OC.L10N.register(
|
||||
"Personal" : "Անձնական",
|
||||
"Done" : "Done",
|
||||
"Cancel" : "ընդհատել",
|
||||
"Today" : "այսօր",
|
||||
"Can edit" : "Can edit",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "հեռացնել",
|
||||
@@ -15,7 +14,6 @@ OC.L10N.register(
|
||||
"Modified" : "Փոփոխված",
|
||||
"Save" : "Պահպանել",
|
||||
"Update" : "Թարմացնել",
|
||||
"seconds ago" : "վրկ. առաջ",
|
||||
"Settings" : "կարգավորումներ"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
"Personal" : "Անձնական",
|
||||
"Done" : "Done",
|
||||
"Cancel" : "ընդհատել",
|
||||
"Today" : "այսօր",
|
||||
"Can edit" : "Can edit",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "հեռացնել",
|
||||
@@ -13,7 +12,6 @@
|
||||
"Modified" : "Փոփոխված",
|
||||
"Save" : "Պահպանել",
|
||||
"Update" : "Թարմացնել",
|
||||
"seconds ago" : "վրկ. առաջ",
|
||||
"Settings" : "կարգավորումներ"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user