diff --git a/.drone.yml b/.drone.yml
index 2cb2e57a5..074cf50f6 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -2,7 +2,7 @@ kind: pipeline
name: checkers
steps:
- name: compatibility
- image: nextcloudci/php7.1:php7.1-16
+ image: nextcloudci/php7.2:php7.2-13
environment:
APP_NAME: deck
CORE_BRANCH: master
@@ -16,17 +16,8 @@ steps:
- ./occ app:check-code $APP_NAME -c strong-comparison
- ./occ app:check-code $APP_NAME -c deprecation
- cd apps/$APP_NAME/
-- name: syntax-php7.1
- image: nextcloudci/php7.1:php7.1-15
- environment:
- APP_NAME: deck
- CORE_BRANCH: master
- DB: sqlite
- commands:
- - composer install
- - ./vendor/bin/parallel-lint --exclude ./vendor/ .
- name: syntax-php7.2
- image: nextcloudci/php7.2:php7.2-9
+ image: nextcloudci/php7.2:php7.2-13
environment:
APP_NAME: deck
CORE_BRANCH: master
@@ -43,33 +34,15 @@ steps:
commands:
- composer install
- ./vendor/bin/parallel-lint --exclude ./vendor/ .
-trigger:
- branch:
- - master
- - stable*
- event:
- - pull_request
- - push
----
-kind: pipeline
-name: unit-php7.1
-steps:
- - name: php7.1
- image: nextcloudci/php7.1:php7.1-16
- environment:
+- name: syntax-php7.4
+ image: nextcloudci/php7.4:2
+ environment:
APP_NAME: deck
CORE_BRANCH: master
DB: sqlite
- commands:
- # Pre-setup steps
- - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
- - cd ../server/
- - php occ app:enable deck
- - cd apps/$APP_NAME
+ commands:
- composer install
- - phpunit -c tests/phpunit.xml --coverage-clover build/php-unit.coverage.xml
- - phpunit -c tests/phpunit.integration.xml --coverage-clover build/php-integration.coverage.xml
+ - ./vendor/bin/parallel-lint --exclude ./vendor/ .
trigger:
branch:
- master
@@ -82,7 +55,7 @@ kind: pipeline
name: unit-php7.2
steps:
- name: php7.2
- image: nextcloudci/php7.2:php7.2-9
+ image: nextcloudci/php7.2:php7.2-13
environment:
APP_NAME: deck
CORE_BRANCH: master
@@ -109,7 +82,7 @@ kind: pipeline
name: unit-php7.3
steps:
- name: php7.3
- image: nextcloudci/php7.3:php7.3-2
+ image: nextcloudci/php7.3:php7.3-5
environment:
APP_NAME: deck
CORE_BRANCH: master
@@ -136,7 +109,7 @@ kind: pipeline
name: integration
steps:
- name: integration
- image: nextcloudci/php7.1:php7.1-16
+ image: nextcloudci/php7.2:php7.2-13
environment:
APP_NAME: deck
CORE_BRANCH: master
@@ -171,7 +144,7 @@ steps:
commands:
- npm run lint
- name: jsbuild
- image: node:11-alpine
+ image: node:lts-alpine
commands:
- npm run build
trigger:
diff --git a/.travis.yml b/.travis.yml
index 483d7d69a..3d15d0800 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,18 +2,13 @@ language: php
services:
- mysql
php:
- - 7.1
- 7.2
- 7.3
env:
- CORE_BRANCH=master DB=mysql
before_install:
- - wget https://phar.phpunit.de/phpunit-6.5.phar
- - chmod +x phpunit-6.5.phar
- - mkdir bin
- - mv phpunit-6.5.phar bin/phpunit
- - export PATH="$PWD/bin:$PATH"
+ - export PATH="$PWD/vendor/bin:$PATH"
- phpunit --version
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
- bash ./before_install.sh deck $CORE_BRANCH $DB
diff --git a/composer.json b/composer.json
index f83b72d4f..52017f826 100644
--- a/composer.json
+++ b/composer.json
@@ -13,7 +13,8 @@
},
"require-dev": {
"roave/security-advisories": "dev-master",
- "christophwurst/nextcloud": "^16.0",
- "jakub-onderka/php-parallel-lint": "^1.0.0"
+ "christophwurst/nextcloud": "^17",
+ "jakub-onderka/php-parallel-lint": "^1.0.0",
+ "phpunit/phpunit": "^8"
}
}
diff --git a/docs/API.md b/docs/API.md
index b3f4384e2..be877cd66 100644
--- a/docs/API.md
+++ b/docs/API.md
@@ -45,6 +45,13 @@ In any case a user doesn't have access to a requested entity, a 403 error will b
### If-Modified-Since
Some index endpoints support limiting the result set to entries that have been changed since the given time.
+The supported date formats are:
+
+* IMF-fixdate: `Sun, 03 Aug 2019 10:34:12 GMT`
+* (obsolete) RFC 850: `Sunday, 03-Aug-19 10:34:12 GMT`
+* (obsolete) ANSI C asctime(): `Sun Aug 3 10:34:12 2019`
+
+It is highly recommended to only use the IMF-fixdate format.
Example curl request:
@@ -52,7 +59,7 @@ Example curl request:
curl -u admin:admin -X GET \
'http://localhost:8000/index.php/apps/deck/api/v1.0/boards/2/stacks' \
-H "OCS-APIRequest: true" \
- -H "If-Modified-Since: Mon, 5 Nov 2018 09:28:00 GMT"
+ -H "If-Modified-Since: Mon, 05 Nov 2018 09:28:00 GMT"
```
# Endpoints
@@ -426,6 +433,13 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
### POST /boards/{boardId}/stacks - Create a new stack
+#### Request body
+
+| Parameter | Type | Description |
+| --------- | ------- | ---------------------------------------------------- |
+| title | String | The title of the new stack |
+| order | Integer | Order for sorting the stacks |
+
#### Request parameters
| Parameter | Type | Description |
diff --git a/l10n/ca.js b/l10n/ca.js
index 5e6d08752..037fb69ac 100644
--- a/l10n/ca.js
+++ b/l10n/ca.js
@@ -67,9 +67,7 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Heu afegit l'adjunt {attachment} a la targeta {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} ha afegit l'adjunt {attachment} a la targeta {card}",
"You have updated the attachment {attachment} on card {card}" : "Heu actualitzat l'adjunt {attachment} a la targeta {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualitzat l'adjunt {attachment} a la targeta {card}",
"You have deleted the attachment {attachment} from card {card}" : "Heu suprimit l'adjunt {attachment} de la targeta {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha suprimit l'adjunt {attachment} de la targeta {card}",
"You have restored the attachment {attachment} to card {card}" : "Heu restaurat l'adjunt {attachment} a la targeta {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurat l'adjunt {attachment} a la targeta {card}",
"You have commented on card {card}" : "Heu comentat la targeta {card}",
diff --git a/l10n/ca.json b/l10n/ca.json
index 5ef3b37a0..52ef6c504 100644
--- a/l10n/ca.json
+++ b/l10n/ca.json
@@ -65,9 +65,7 @@
"You have added the attachment {attachment} to card {card}" : "Heu afegit l'adjunt {attachment} a la targeta {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} ha afegit l'adjunt {attachment} a la targeta {card}",
"You have updated the attachment {attachment} on card {card}" : "Heu actualitzat l'adjunt {attachment} a la targeta {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualitzat l'adjunt {attachment} a la targeta {card}",
"You have deleted the attachment {attachment} from card {card}" : "Heu suprimit l'adjunt {attachment} de la targeta {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha suprimit l'adjunt {attachment} de la targeta {card}",
"You have restored the attachment {attachment} to card {card}" : "Heu restaurat l'adjunt {attachment} a la targeta {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurat l'adjunt {attachment} a la targeta {card}",
"You have commented on card {card}" : "Heu comentat la targeta {card}",
diff --git a/l10n/cs.js b/l10n/cs.js
index 1bba1b928..cd65e7494 100644
--- a/l10n/cs.js
+++ b/l10n/cs.js
@@ -9,43 +9,45 @@ OC.L10N.register(
"Remove user from card" : "Odebrat uživatele z karty",
"Hours" : "Hodiny",
"Minutes" : "Minuty",
+ "Link to a board" : "Propojit s tabulí",
"Maximum file size of {size} exceeded" : "U souboru {size} překročena nejvyšší umožněná velikost",
"File already exists" : "Soubor už existuje",
- "You have created a new board {board}" : "Vytvořili jste nástěnku {board}",
- "{user} has created a new board {board}" : "{user} vytvořil(a) novou nástěnku {board}",
- "You have deleted the board {board}" : "Smazali jste nástěnku {board}",
- "{user} has deleted the board {board}" : "{user} smazal(a) nástěnku {board}",
- "You have restored the board {board}" : "Obnovili jste nástěnku {board}",
- "{user} has restored the board {board}" : "{user} obnovil(a) nástěnku {board}",
- "You have shared the board {board} with {acl}" : "Nasdíleli jste nástěnku {board} s {acl}",
- "You have removed {acl} from the board {board}" : "Odebrali jste {acl} z nástěnky {board}",
- "{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z nástěnky {board}",
- "You have renamed the board {before} to {board}" : "Přejmenovali jste nástěnku {before} na {board}",
- "{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) desku {before} na {board}",
- "You have archived the board {board}" : "Zaarchivovali jste nástěnku {board}",
- "{user} has archived the board {before}" : "{user} zaarchivoval(a) nástěnku {before}",
- "You have unarchived the board {board}" : "Zrušili jste archivaci nástěnky {board}",
- "{user} has unarchived the board {before}" : "{user} zrušil(a) archivaci nástěnky {before}",
- "You have created a new stack {stack} on board {board}" : "Vytvořili jste novou hromádku {stack} na desce {board}",
- "{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový balíček {stack} na desce {board}",
+ "You have created a new board {board}" : "Vytvořili jste tabuli {board}",
+ "{user} has created a new board {board}" : "{user} vytvořil(a) novou tabuli {board}",
+ "You have deleted the board {board}" : "Smazali jste tabuli {board}",
+ "{user} has deleted the board {board}" : "{user} smazal(a) tabuli {board}",
+ "You have restored the board {board}" : "Obnovili jste tabuli {board}",
+ "{user} has restored the board {board}" : "{user} obnovil(a) tabuli {board}",
+ "You have shared the board {board} with {acl}" : "Nasdíleli jste tabuli {board} s {acl}",
+ "{user} has shared the board {board} with {acl}" : "{user} nasdílel(a) tabuli {board} s {acl}",
+ "You have removed {acl} from the board {board}" : "Odebrali jste {acl} z tabule {board}",
+ "{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z tabule {board}",
+ "You have renamed the board {before} to {board}" : "Přejmenovali jste tabuli {before} na {board}",
+ "{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) tabuli {before} na {board}",
+ "You have archived the board {board}" : "Zaarchivovali jste tabuli {board}",
+ "{user} has archived the board {before}" : "{user} zaarchivoval(a) tabuli {before}",
+ "You have unarchived the board {board}" : "Vrátili jste zpět z archivace tabuli {board}",
+ "{user} has unarchived the board {before}" : "{user} vrátil(a) tabuli {before} zpět z archivace",
+ "You have created a new stack {stack} on board {board}" : "Vytvořili jste novou hromádku {stack} na tabuli {board}",
+ "{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový balíček {stack} na tabuli {board}",
"You have renamed stack {before} to {stack} on board {board}" : "Přejmenovali jste hromádku {before} na {stack} na desce {board}",
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} přejmenoval(a) hromádku {before} na {stack} na desce {board}",
"You have deleted stack {stack} on board {board}" : "Smazali jste balíček {stack} na desce {board}",
"{user} has deleted stack {stack} on board {board}" : "{user} smazal(a) balíček {stack} na desce {board}",
"You have created card {card} in stack {stack} on board {board}" : "Vytvořili jste kartu {card} v balíčku {stack} na kartě {board}",
- "{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} na hromádce {stack} na desce {board}",
+ "{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} ve sloupci {stack} na tabuli {board}",
"You have deleted card {card} in stack {stack} on board {board}" : "Smazali jste kartu {card} na hromádce {stack} na desce {board}",
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} smazal(a) kartu {card} v balíčku {board} na desce {board}",
"You have renamed the card {before} to {card}" : "Přejmenovali jste kartu {before} na {card}",
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) {before} na {card}",
- "You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} v hromádce {stack} na desce {board}",
- "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} v hromádce {stack} na desce {board}",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} v hromádce {stack} na tabuli {board}",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} v hromádce {stack} na tabuli {board}",
"You have updated the description of card {card} in stack {stack} on board {board}" : "Aktualizovali jste popis karty {card} v hromádce {stack} na desce {board}",
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} aktualizoval(a) popis karty {card} na hromádce {stack} na nástěnce {board}",
- "You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} v balíčku {stack} na desce {board}",
+ "You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} v balíčku {stack} na tabuli {board}",
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} zaarchivoval(a) kartu {card} v balíčku {stack} na desce {board}",
"You have unarchived card {card} in stack {stack} on board {board}" : "Zrušili jste archivaci karty {card} na hromádce {stack} na desce {board}",
- "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} na hromádce {stack} na desce {board}",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} na hromádce {stack} na tabuli {board}",
"You have removed the due date of card {card}" : "Odebrali jste termín karty {card}",
"{user} has removed the due date of card {card}" : "{user} odebral(a) termín karty {card}",
"You have set the due date of card {card} to {after}" : "Nastavili jste termín na kartě {card} na {after}",
@@ -55,8 +57,8 @@ OC.L10N.register(
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Přidali jste štítek {label} kartě {card} v hromádce {stack} na nástěnce {board}",
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} přidal(a) štítek {label} ke kartě {card} v hromádce {stack} na nástěnce {board}",
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odebrali jste štítek {label} z karty {card} v hromádce {stack} na desce {board}",
- "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} na hromádce {stack} na desce {board}",
- "You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na desce {board}",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} na hromádce {stack} na tabuli {board}",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na tabuli {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} přiřadil(a) {assigneduser} ke kartě {card} na desce {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Zrušili jste přiřazení {assigneduser} u karty {card} na nástěnce {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} zrušil(a) přiřazení {assigneduser} z karty {card} na desce {board}",
@@ -65,25 +67,26 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Přidali jste přílohu {attachment} ke kartě {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} přidal(a) přílohu {attachment} ke kartě {card}",
"You have updated the attachment {attachment} on card {card}" : "Aktualizovali jste přílohu {attachment} na kartě {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} aktualizoval(a) přílohu {attachment} ke kartě {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} aktualizoval(a) přílohu {attachment} na kartě {card}",
"You have deleted the attachment {attachment} from card {card}" : "Smazali jste přílohu {attachment} u karty {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} smazal(a) přílohu {attachment} u karty {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} smazal(a) přílohu {attachment} na kartě {card}",
"You have restored the attachment {attachment} to card {card}" : "Obnovili jste přílohu {attachment} ke kartě {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} obnovil(a) přílohu {attachment} ke kartě {card}",
"You have commented on card {card}" : "Přidali jste komentář na kartě {card}",
"{user} has commented on card {card}" : "{user} přidal(a) komentář na kartě {card}",
- "A card description inside the Deck app has been changed" : "Popis mapy v Deck-aplikace byl změněn",
+ "A card description inside the Deck app has been changed" : "Popis karty v Deck-aplikace byl změněn",
"Deck" : "Balík",
"Changes in the Deck app" : "Změny v Deck aplikace",
+ "A comment was created on a card" : "Na kartě byl vytvořen komentář",
"Personal" : "Osobní",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.",
- "The card \"%s\" on \"%s\" has reached its due date." : "U karty \"%s\" z tabule \"%s\" nastalo plánované datum dokončení.",
+ "The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.",
"%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.",
"{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.",
- "The board \"%s\" has been shared with you by %s." : "Tabule \"%s\" s vámi byla nasdílena uživatelem %s.",
- "{user} has shared the board %s with you." : "{user} s vámi nasdílel tabuli %s.",
- "No data was provided to create an attachment." : "Žádná data k vytvoření přílohy.",
+ "The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.",
+ "{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.",
+ "No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.",
"Finished" : "Dokončeno",
"To review" : "K revizi",
"Action needed" : "Nutná akce",
@@ -95,7 +98,7 @@ OC.L10N.register(
"Example Task 2" : "Druhý úkol pro ukázku",
"Example Task 1" : "První úkol pro ukázku",
"The file was uploaded" : "Soubor byl nahrán",
- "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahrávaný soubor přesahuje nastavení upload_max_filesize v php.ini",
+ "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Velikost nahrávaného souboru překračuje limit nastavení direktivou upload_max_filesize v php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Nahrávaný soubor přesáhl svou velikostí hodnotu direktivy MAX_FILE_SIZE, určenou v HTML formuláři",
"The file was only partially uploaded" : "Soubor byl nahrán pouze z části",
"No file was uploaded" : "Nebyl nahrán žádný soubor",
@@ -105,19 +108,20 @@ OC.L10N.register(
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s",
"A kanban style project and personal management tool for Nextcloud" : "Nástroj pro projektový a osobní řízení ve stylu Kanban.",
"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" : "Karty jsou nástroj zacílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
- "Select board" : "Vybrat nástěnku",
+ "Select the board to link to a project" : "Vyberte nástěnku kterou propojit s projektem",
+ "Select board" : "Vybrat tabuli",
"Add a new stack" : "Přidat nový zásobník",
"Submit" : "Odeslat",
"Show archived cards" : "Zobrazit archivované karty",
"Hide archived cards" : "Skrýt archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
- "Show board details" : "Zobrazit podrobnosti o desce",
- "All Boards" : "Všechny desky",
- "Archived boards" : "Archivované desky",
- "Share board" : "Sdílet nástěnku",
+ "Show board details" : "Zobrazit podrobnosti o tabuli",
+ "All Boards" : "Všechny tabule",
+ "Archived boards" : "Archivované tabule",
+ "Share board" : "Sdílet tabuli",
"Archived cards" : "Archivované karty",
"Actions" : "Akce",
- "Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.",
+ "Drop your files here to upload it to the card" : "Soubory ke kartě připojíte přetažením sem",
"Assign card to me" : "Přiřadit kartu mě",
"Unassign card from me" : "Zrušit přiřazení karty mě",
"Archive card" : "Archivovat kartu",
@@ -138,8 +142,8 @@ OC.L10N.register(
"Edit" : "Upravit",
"Share" : "Sdílet",
"Manage" : "Spravovat",
- "Discard share" : "Zrušit sdílení",
- "Sharing has been disabled for your account." : "Sdílení bylo zakázáno pro váš konto.",
+ "Discard share" : "Zahodit sdílení",
+ "Sharing has been disabled for your account." : "Sdílení bylo pro váš účet zakázáno.",
"Update tag" : "Aktualizovat štítek",
"Edit tag" : "Upravit štítek",
"Delete tag" : "Smazat štítek",
@@ -153,24 +157,24 @@ OC.L10N.register(
"Title" : "Název",
"Members" : "Členové",
"More actions" : "Více akcí",
- "Edit board" : "Upravit desku",
- "Archive board" : "Archivovaná deska",
- "Unarchive board" : "Odarchivovat desku",
- "Delete board" : "Smazat desku",
- "Update board" : "Aktualizovat desku",
- "Reset board" : "Resetovat nástěnku",
- "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule - Tabule bude jinak trvale odstraněna během příštího běhu cronjobu.",
- "Create new board" : "Vytvořit novou desku",
- "New board title" : "Nadpis nové desky",
- "Create board" : "Vytvořit nástěnku",
+ "Edit board" : "Upravit tabuli",
+ "Archive board" : "Archivovaná tabule",
+ "Unarchive board" : "Vrátit tabuli zpět z archivu",
+ "Delete board" : "Smazat tabuli",
+ "Update board" : "Aktualizovat tabuli",
+ "Reset board" : "Vrátit tabuli do výchozího stavu",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule – jinak bude nadobro odstraněna během příštího spuštění naplánovaných úloh.",
+ "Create new board" : "Vytvořit novou tabuli",
+ "New board title" : "Název nové tabule",
+ "Create board" : "Vytvořit tabuli",
"Select an attachment" : "Vybrat přílohu",
"Cancel upload" : "Zrušit nahrávání",
"by" : "od",
- "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – v opačném případě bude soubor trvale smazán při dalším běhu cronjobu.",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – jinak bude trvale smazán při dalším běhu naplánované úlohy.",
"Undo file deletion" : "Vzít zpět smazání souboru",
- "Insert the file into the description" : "Vložte soubor do popisku.",
+ "Insert the file into the description" : "Vložte soubor do popisu",
"Delete attachment" : "Smazat přílohu",
- "Modified:" : "Upraveno:",
+ "Modified:" : "Změněno:",
"Created:" : "Vytvořeno:",
"Choose a tag" : "Vyberte štítek",
"Add a tag" : "Přidat štítek",
@@ -189,11 +193,11 @@ OC.L10N.register(
"Formatting help" : "Nápověda k formátování",
"Upload attachment" : "Nahrát přílohu",
"Add a card description…" : "Přidat popis karty…",
- "Shared boards" : "Sdílené desky",
- "Move board to archive" : "Přesunout desku do archivu",
- "Create a new board" : "Vytvořit novou desku",
+ "Shared boards" : "Sdílené tabule",
+ "Move board to archive" : "Přesunout tabuli do archivu",
+ "Create a new board" : "Vytvořit novou tabuli",
"Settings" : "Nastavení",
- "Limit deck to groups" : "Omezte Deck na skupiny",
- "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních desek. Uživatelé mohou stále pracovat na deskách, které jsou s nimi sdíleny."
+ "Limit deck to groups" : "Omezit Deck na skupiny",
+ "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních tabulí. Uživatelé mohou stále pracovat na tabulích, které jsou s nimi sdíleny."
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");
diff --git a/l10n/cs.json b/l10n/cs.json
index a5f9e344c..86e676b5e 100644
--- a/l10n/cs.json
+++ b/l10n/cs.json
@@ -7,43 +7,45 @@
"Remove user from card" : "Odebrat uživatele z karty",
"Hours" : "Hodiny",
"Minutes" : "Minuty",
+ "Link to a board" : "Propojit s tabulí",
"Maximum file size of {size} exceeded" : "U souboru {size} překročena nejvyšší umožněná velikost",
"File already exists" : "Soubor už existuje",
- "You have created a new board {board}" : "Vytvořili jste nástěnku {board}",
- "{user} has created a new board {board}" : "{user} vytvořil(a) novou nástěnku {board}",
- "You have deleted the board {board}" : "Smazali jste nástěnku {board}",
- "{user} has deleted the board {board}" : "{user} smazal(a) nástěnku {board}",
- "You have restored the board {board}" : "Obnovili jste nástěnku {board}",
- "{user} has restored the board {board}" : "{user} obnovil(a) nástěnku {board}",
- "You have shared the board {board} with {acl}" : "Nasdíleli jste nástěnku {board} s {acl}",
- "You have removed {acl} from the board {board}" : "Odebrali jste {acl} z nástěnky {board}",
- "{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z nástěnky {board}",
- "You have renamed the board {before} to {board}" : "Přejmenovali jste nástěnku {before} na {board}",
- "{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) desku {before} na {board}",
- "You have archived the board {board}" : "Zaarchivovali jste nástěnku {board}",
- "{user} has archived the board {before}" : "{user} zaarchivoval(a) nástěnku {before}",
- "You have unarchived the board {board}" : "Zrušili jste archivaci nástěnky {board}",
- "{user} has unarchived the board {before}" : "{user} zrušil(a) archivaci nástěnky {before}",
- "You have created a new stack {stack} on board {board}" : "Vytvořili jste novou hromádku {stack} na desce {board}",
- "{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový balíček {stack} na desce {board}",
+ "You have created a new board {board}" : "Vytvořili jste tabuli {board}",
+ "{user} has created a new board {board}" : "{user} vytvořil(a) novou tabuli {board}",
+ "You have deleted the board {board}" : "Smazali jste tabuli {board}",
+ "{user} has deleted the board {board}" : "{user} smazal(a) tabuli {board}",
+ "You have restored the board {board}" : "Obnovili jste tabuli {board}",
+ "{user} has restored the board {board}" : "{user} obnovil(a) tabuli {board}",
+ "You have shared the board {board} with {acl}" : "Nasdíleli jste tabuli {board} s {acl}",
+ "{user} has shared the board {board} with {acl}" : "{user} nasdílel(a) tabuli {board} s {acl}",
+ "You have removed {acl} from the board {board}" : "Odebrali jste {acl} z tabule {board}",
+ "{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z tabule {board}",
+ "You have renamed the board {before} to {board}" : "Přejmenovali jste tabuli {before} na {board}",
+ "{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) tabuli {before} na {board}",
+ "You have archived the board {board}" : "Zaarchivovali jste tabuli {board}",
+ "{user} has archived the board {before}" : "{user} zaarchivoval(a) tabuli {before}",
+ "You have unarchived the board {board}" : "Vrátili jste zpět z archivace tabuli {board}",
+ "{user} has unarchived the board {before}" : "{user} vrátil(a) tabuli {before} zpět z archivace",
+ "You have created a new stack {stack} on board {board}" : "Vytvořili jste novou hromádku {stack} na tabuli {board}",
+ "{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový balíček {stack} na tabuli {board}",
"You have renamed stack {before} to {stack} on board {board}" : "Přejmenovali jste hromádku {before} na {stack} na desce {board}",
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} přejmenoval(a) hromádku {before} na {stack} na desce {board}",
"You have deleted stack {stack} on board {board}" : "Smazali jste balíček {stack} na desce {board}",
"{user} has deleted stack {stack} on board {board}" : "{user} smazal(a) balíček {stack} na desce {board}",
"You have created card {card} in stack {stack} on board {board}" : "Vytvořili jste kartu {card} v balíčku {stack} na kartě {board}",
- "{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} na hromádce {stack} na desce {board}",
+ "{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} ve sloupci {stack} na tabuli {board}",
"You have deleted card {card} in stack {stack} on board {board}" : "Smazali jste kartu {card} na hromádce {stack} na desce {board}",
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} smazal(a) kartu {card} v balíčku {board} na desce {board}",
"You have renamed the card {before} to {card}" : "Přejmenovali jste kartu {before} na {card}",
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) {before} na {card}",
- "You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} v hromádce {stack} na desce {board}",
- "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} v hromádce {stack} na desce {board}",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} v hromádce {stack} na tabuli {board}",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} v hromádce {stack} na tabuli {board}",
"You have updated the description of card {card} in stack {stack} on board {board}" : "Aktualizovali jste popis karty {card} v hromádce {stack} na desce {board}",
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} aktualizoval(a) popis karty {card} na hromádce {stack} na nástěnce {board}",
- "You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} v balíčku {stack} na desce {board}",
+ "You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} v balíčku {stack} na tabuli {board}",
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} zaarchivoval(a) kartu {card} v balíčku {stack} na desce {board}",
"You have unarchived card {card} in stack {stack} on board {board}" : "Zrušili jste archivaci karty {card} na hromádce {stack} na desce {board}",
- "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} na hromádce {stack} na desce {board}",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} na hromádce {stack} na tabuli {board}",
"You have removed the due date of card {card}" : "Odebrali jste termín karty {card}",
"{user} has removed the due date of card {card}" : "{user} odebral(a) termín karty {card}",
"You have set the due date of card {card} to {after}" : "Nastavili jste termín na kartě {card} na {after}",
@@ -53,8 +55,8 @@
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Přidali jste štítek {label} kartě {card} v hromádce {stack} na nástěnce {board}",
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} přidal(a) štítek {label} ke kartě {card} v hromádce {stack} na nástěnce {board}",
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odebrali jste štítek {label} z karty {card} v hromádce {stack} na desce {board}",
- "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} na hromádce {stack} na desce {board}",
- "You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na desce {board}",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} na hromádce {stack} na tabuli {board}",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na tabuli {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} přiřadil(a) {assigneduser} ke kartě {card} na desce {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Zrušili jste přiřazení {assigneduser} u karty {card} na nástěnce {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} zrušil(a) přiřazení {assigneduser} z karty {card} na desce {board}",
@@ -63,25 +65,26 @@
"You have added the attachment {attachment} to card {card}" : "Přidali jste přílohu {attachment} ke kartě {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} přidal(a) přílohu {attachment} ke kartě {card}",
"You have updated the attachment {attachment} on card {card}" : "Aktualizovali jste přílohu {attachment} na kartě {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} aktualizoval(a) přílohu {attachment} ke kartě {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} aktualizoval(a) přílohu {attachment} na kartě {card}",
"You have deleted the attachment {attachment} from card {card}" : "Smazali jste přílohu {attachment} u karty {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} smazal(a) přílohu {attachment} u karty {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} smazal(a) přílohu {attachment} na kartě {card}",
"You have restored the attachment {attachment} to card {card}" : "Obnovili jste přílohu {attachment} ke kartě {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} obnovil(a) přílohu {attachment} ke kartě {card}",
"You have commented on card {card}" : "Přidali jste komentář na kartě {card}",
"{user} has commented on card {card}" : "{user} přidal(a) komentář na kartě {card}",
- "A card description inside the Deck app has been changed" : "Popis mapy v Deck-aplikace byl změněn",
+ "A card description inside the Deck app has been changed" : "Popis karty v Deck-aplikace byl změněn",
"Deck" : "Balík",
"Changes in the Deck app" : "Změny v Deck aplikace",
+ "A comment was created on a card" : "Na kartě byl vytvořen komentář",
"Personal" : "Osobní",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.",
- "The card \"%s\" on \"%s\" has reached its due date." : "U karty \"%s\" z tabule \"%s\" nastalo plánované datum dokončení.",
+ "The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.",
"%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.",
"{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.",
- "The board \"%s\" has been shared with you by %s." : "Tabule \"%s\" s vámi byla nasdílena uživatelem %s.",
- "{user} has shared the board %s with you." : "{user} s vámi nasdílel tabuli %s.",
- "No data was provided to create an attachment." : "Žádná data k vytvoření přílohy.",
+ "The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.",
+ "{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.",
+ "No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.",
"Finished" : "Dokončeno",
"To review" : "K revizi",
"Action needed" : "Nutná akce",
@@ -93,7 +96,7 @@
"Example Task 2" : "Druhý úkol pro ukázku",
"Example Task 1" : "První úkol pro ukázku",
"The file was uploaded" : "Soubor byl nahrán",
- "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahrávaný soubor přesahuje nastavení upload_max_filesize v php.ini",
+ "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Velikost nahrávaného souboru překračuje limit nastavení direktivou upload_max_filesize v php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Nahrávaný soubor přesáhl svou velikostí hodnotu direktivy MAX_FILE_SIZE, určenou v HTML formuláři",
"The file was only partially uploaded" : "Soubor byl nahrán pouze z části",
"No file was uploaded" : "Nebyl nahrán žádný soubor",
@@ -103,19 +106,20 @@
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s",
"A kanban style project and personal management tool for Nextcloud" : "Nástroj pro projektový a osobní řízení ve stylu Kanban.",
"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" : "Karty jsou nástroj zacílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
- "Select board" : "Vybrat nástěnku",
+ "Select the board to link to a project" : "Vyberte nástěnku kterou propojit s projektem",
+ "Select board" : "Vybrat tabuli",
"Add a new stack" : "Přidat nový zásobník",
"Submit" : "Odeslat",
"Show archived cards" : "Zobrazit archivované karty",
"Hide archived cards" : "Skrýt archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
- "Show board details" : "Zobrazit podrobnosti o desce",
- "All Boards" : "Všechny desky",
- "Archived boards" : "Archivované desky",
- "Share board" : "Sdílet nástěnku",
+ "Show board details" : "Zobrazit podrobnosti o tabuli",
+ "All Boards" : "Všechny tabule",
+ "Archived boards" : "Archivované tabule",
+ "Share board" : "Sdílet tabuli",
"Archived cards" : "Archivované karty",
"Actions" : "Akce",
- "Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.",
+ "Drop your files here to upload it to the card" : "Soubory ke kartě připojíte přetažením sem",
"Assign card to me" : "Přiřadit kartu mě",
"Unassign card from me" : "Zrušit přiřazení karty mě",
"Archive card" : "Archivovat kartu",
@@ -136,8 +140,8 @@
"Edit" : "Upravit",
"Share" : "Sdílet",
"Manage" : "Spravovat",
- "Discard share" : "Zrušit sdílení",
- "Sharing has been disabled for your account." : "Sdílení bylo zakázáno pro váš konto.",
+ "Discard share" : "Zahodit sdílení",
+ "Sharing has been disabled for your account." : "Sdílení bylo pro váš účet zakázáno.",
"Update tag" : "Aktualizovat štítek",
"Edit tag" : "Upravit štítek",
"Delete tag" : "Smazat štítek",
@@ -151,24 +155,24 @@
"Title" : "Název",
"Members" : "Členové",
"More actions" : "Více akcí",
- "Edit board" : "Upravit desku",
- "Archive board" : "Archivovaná deska",
- "Unarchive board" : "Odarchivovat desku",
- "Delete board" : "Smazat desku",
- "Update board" : "Aktualizovat desku",
- "Reset board" : "Resetovat nástěnku",
- "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule - Tabule bude jinak trvale odstraněna během příštího běhu cronjobu.",
- "Create new board" : "Vytvořit novou desku",
- "New board title" : "Nadpis nové desky",
- "Create board" : "Vytvořit nástěnku",
+ "Edit board" : "Upravit tabuli",
+ "Archive board" : "Archivovaná tabule",
+ "Unarchive board" : "Vrátit tabuli zpět z archivu",
+ "Delete board" : "Smazat tabuli",
+ "Update board" : "Aktualizovat tabuli",
+ "Reset board" : "Vrátit tabuli do výchozího stavu",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule – jinak bude nadobro odstraněna během příštího spuštění naplánovaných úloh.",
+ "Create new board" : "Vytvořit novou tabuli",
+ "New board title" : "Název nové tabule",
+ "Create board" : "Vytvořit tabuli",
"Select an attachment" : "Vybrat přílohu",
"Cancel upload" : "Zrušit nahrávání",
"by" : "od",
- "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – v opačném případě bude soubor trvale smazán při dalším běhu cronjobu.",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – jinak bude trvale smazán při dalším běhu naplánované úlohy.",
"Undo file deletion" : "Vzít zpět smazání souboru",
- "Insert the file into the description" : "Vložte soubor do popisku.",
+ "Insert the file into the description" : "Vložte soubor do popisu",
"Delete attachment" : "Smazat přílohu",
- "Modified:" : "Upraveno:",
+ "Modified:" : "Změněno:",
"Created:" : "Vytvořeno:",
"Choose a tag" : "Vyberte štítek",
"Add a tag" : "Přidat štítek",
@@ -187,11 +191,11 @@
"Formatting help" : "Nápověda k formátování",
"Upload attachment" : "Nahrát přílohu",
"Add a card description…" : "Přidat popis karty…",
- "Shared boards" : "Sdílené desky",
- "Move board to archive" : "Přesunout desku do archivu",
- "Create a new board" : "Vytvořit novou desku",
+ "Shared boards" : "Sdílené tabule",
+ "Move board to archive" : "Přesunout tabuli do archivu",
+ "Create a new board" : "Vytvořit novou tabuli",
"Settings" : "Nastavení",
- "Limit deck to groups" : "Omezte Deck na skupiny",
- "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních desek. Uživatelé mohou stále pracovat na deskách, které jsou s nimi sdíleny."
+ "Limit deck to groups" : "Omezit Deck na skupiny",
+ "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních tabulí. Uživatelé mohou stále pracovat na tabulích, které jsou s nimi sdíleny."
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
}
\ No newline at end of file
diff --git a/l10n/de.js b/l10n/de.js
index d79ab7018..442d77b93 100644
--- a/l10n/de.js
+++ b/l10n/de.js
@@ -67,9 +67,9 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} zur Karte {card} hinzugefügt",
"{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt",
"You have updated the attachment {attachment} on card {card}" : "Du hast den Anhang {attachment} der Karte {card} aktualisiert",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
"You have deleted the attachment {attachment} from card {card}" : "Du hast den Anhang {attachment} von der Karte {card} entfernt",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
"You have restored the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} der Karte {card} wiederhergestellt",
"{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt",
"You have commented on card {card}" : "Du hast die Karte {card} kommentiert",
@@ -99,14 +99,14 @@ OC.L10N.register(
"Example Task 1" : "Beispielaufgabe 1",
"The file was uploaded" : "Die Datei wurde hochgeladen",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
- "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
"The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden",
"No file was uploaded" : "Es wurde keine Datei hochgeladen",
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
- "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud",
+ "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Vergabe von Labels für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Select board" : "Board auswählen",
@@ -170,7 +170,7 @@ OC.L10N.register(
"Select an attachment" : "Anhang auswählen",
"Cancel upload" : "Hochladen abbrechen",
"by" : "von",
- "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen - andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen — andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.",
"Undo file deletion" : "Dateilöschung rückgängig machen",
"Insert the file into the description" : "Füge die Datei in die Beschreibung ein",
"Delete attachment" : "Anhang löschen",
diff --git a/l10n/de.json b/l10n/de.json
index 5b07d8a53..fa1381e23 100644
--- a/l10n/de.json
+++ b/l10n/de.json
@@ -65,9 +65,9 @@
"You have added the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} zur Karte {card} hinzugefügt",
"{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt",
"You have updated the attachment {attachment} on card {card}" : "Du hast den Anhang {attachment} der Karte {card} aktualisiert",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
"You have deleted the attachment {attachment} from card {card}" : "Du hast den Anhang {attachment} von der Karte {card} entfernt",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
"You have restored the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} der Karte {card} wiederhergestellt",
"{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt",
"You have commented on card {card}" : "Du hast die Karte {card} kommentiert",
@@ -97,14 +97,14 @@
"Example Task 1" : "Beispielaufgabe 1",
"The file was uploaded" : "Die Datei wurde hochgeladen",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
- "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
"The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden",
"No file was uploaded" : "Es wurde keine Datei hochgeladen",
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
- "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud",
+ "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Vergabe von Labels für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Select board" : "Board auswählen",
@@ -168,7 +168,7 @@
"Select an attachment" : "Anhang auswählen",
"Cancel upload" : "Hochladen abbrechen",
"by" : "von",
- "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen - andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen — andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.",
"Undo file deletion" : "Dateilöschung rückgängig machen",
"Insert the file into the description" : "Füge die Datei in die Beschreibung ein",
"Delete attachment" : "Anhang löschen",
diff --git a/l10n/de_DE.js b/l10n/de_DE.js
index 3d9ec4a0e..92df4a042 100644
--- a/l10n/de_DE.js
+++ b/l10n/de_DE.js
@@ -2,7 +2,7 @@ OC.L10N.register(
"deck",
{
"Please provide a content for your comment." : "Bitte geben Sie einen Inhalt für Ihren Kommentar an.",
- "Posting the comment failed." : "Absenden des Kommentars ist fehlgeschlagen.",
+ "Posting the comment failed." : "Senden des Kommentars fehlgeschlagen.",
"The comment has been deleted" : "Der Kommentar wurde gelöscht",
"The associated stack is deleted as well, it will be restored as well." : "Der dazugehörige Stapel wurde auch gelöscht, er wird ebenfalls wiederhergestellt.",
"Restore associated stack" : "Dazugehörigen Stapel wiederherstellen",
@@ -67,9 +67,9 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} zur Karte {card} hinzugefügt",
"{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt",
"You have updated the attachment {attachment} on card {card}" : "Sie haben den Anhang {attachment} der Karte {card} aktualisiert",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
"You have deleted the attachment {attachment} from card {card}" : "Sie haben den Anhang {attachment} von der Karte {card} entfernt",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
"You have restored the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} der Karte {card} wiederhergestellt",
"{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt",
"You have commented on card {card}" : "Sie haben die Karte {card} kommentiert",
@@ -94,9 +94,9 @@ OC.L10N.register(
"To do" : "Offen",
"Doing" : "In Arbeit",
"Done" : "Erledigt",
- "Example Task 3" : "Beispielaufgabe 3",
- "Example Task 2" : "Beispielaufgabe 2",
- "Example Task 1" : "Beispielaufgabe 1",
+ "Example Task 3" : "Beispielsaufgabe 3",
+ "Example Task 2" : "Beispielsaufgabe 2",
+ "Example Task 1" : "Beispielsaufgabe 1",
"The file was uploaded" : "Die Datei wurde hochgeladen",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
@@ -106,7 +106,7 @@ OC.L10N.register(
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
- "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud",
+ "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisung von Labels für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Select board" : "Board auswählen",
diff --git a/l10n/de_DE.json b/l10n/de_DE.json
index 7b7a13502..b6897527a 100644
--- a/l10n/de_DE.json
+++ b/l10n/de_DE.json
@@ -1,6 +1,6 @@
{ "translations": {
"Please provide a content for your comment." : "Bitte geben Sie einen Inhalt für Ihren Kommentar an.",
- "Posting the comment failed." : "Absenden des Kommentars ist fehlgeschlagen.",
+ "Posting the comment failed." : "Senden des Kommentars fehlgeschlagen.",
"The comment has been deleted" : "Der Kommentar wurde gelöscht",
"The associated stack is deleted as well, it will be restored as well." : "Der dazugehörige Stapel wurde auch gelöscht, er wird ebenfalls wiederhergestellt.",
"Restore associated stack" : "Dazugehörigen Stapel wiederherstellen",
@@ -65,9 +65,9 @@
"You have added the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} zur Karte {card} hinzugefügt",
"{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt",
"You have updated the attachment {attachment} on card {card}" : "Sie haben den Anhang {attachment} der Karte {card} aktualisiert",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
"You have deleted the attachment {attachment} from card {card}" : "Sie haben den Anhang {attachment} von der Karte {card} entfernt",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
"You have restored the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} der Karte {card} wiederhergestellt",
"{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt",
"You have commented on card {card}" : "Sie haben die Karte {card} kommentiert",
@@ -92,9 +92,9 @@
"To do" : "Offen",
"Doing" : "In Arbeit",
"Done" : "Erledigt",
- "Example Task 3" : "Beispielaufgabe 3",
- "Example Task 2" : "Beispielaufgabe 2",
- "Example Task 1" : "Beispielaufgabe 1",
+ "Example Task 3" : "Beispielsaufgabe 3",
+ "Example Task 2" : "Beispielsaufgabe 2",
+ "Example Task 1" : "Beispielsaufgabe 1",
"The file was uploaded" : "Die Datei wurde hochgeladen",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
@@ -104,7 +104,7 @@
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
- "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud",
+ "A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisung von Labels für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Select board" : "Board auswählen",
diff --git a/l10n/el.js b/l10n/el.js
index 4f6fe27ab..e09cacad1 100644
--- a/l10n/el.js
+++ b/l10n/el.js
@@ -1,9 +1,32 @@
OC.L10N.register(
"deck",
{
+ "Please provide a content for your comment." : "Παρακαλώ παρέχετε περιεχόμενο για το σχόλιο σας.",
+ "Posting the comment failed." : "Η δημοσίευση του σχολίου απέτυχε.",
+ "The comment has been deleted" : "Το σχόλιο διαγράφηκε.",
+ "The associated stack is deleted as well, it will be restored as well." : "Διαγραφή σχετικών ενεργειών και επαναφορά τους.",
+ "Restore associated stack" : "Επαναφορά σχετικών ενεργειών.",
"Remove user from card" : "Αφαίρεση χρήστη από την κάρτα",
"Hours" : "Ώρες",
"Minutes" : "Λεπτά",
+ "Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
+ "File already exists" : "Το αρχείο υπάρχει ήδη",
+ "You have created a new board {board}" : "Δημιουργήσατε νέο πίνακα {board}",
+ "{user} has created a new board {board}" : "Ο {user} δημιούργησε νέο πίνακα {board}",
+ "You have deleted the board {board}" : "Έχετε διαγράψει τον πίνακα {board}",
+ "{user} has deleted the board {board}" : "Ο {user} διέγραψε τον πίνακα {board}",
+ "You have restored the board {board}" : "Εχετε επαναφέρει τον πίνακα {board}",
+ "{user} has restored the board {board}" : "Ο {user} επανέφερε τον πίνακα {board}",
+ "You have shared the board {board} with {acl}" : "Εχετε διαμοιράσει τον πίνακα {board} με {acl}",
+ "{user} has shared the board {board} with {acl}" : "Ο {user} διαμοίρασε τον πίνακα {board} με {acl}",
+ "You have removed {acl} from the board {board}" : "Αφαιρέθηκε η {acl} από τον πίνακα {board}",
+ "{user} has removed {acl} from the board {board}" : "Ο {user} αφαίρεσε την {acl} από τον πίνακα {board}",
+ "You have renamed the board {before} to {board}" : "Μετονομάσατε τον πίνακα {before} σε {board}",
+ "{user} has renamed the board {before} to {board}" : "Ο {user} μετονόμασε τον πίνακα {before} σε {board}",
+ "You have archived the board {board}" : "Αρχειοθετήσατε τον πίνακα {board}",
+ "{user} has archived the board {before}" : "Ο {user} αρχειοθέτησε τον πίνακα {before}",
+ "You have unarchived the board {board}" : "Επαναφέρατε τον πίνακα {board} από αρχείο",
+ "{user} has unarchived the board {before}" : "Ο {user} επανέφερε τον πίνακα {before} από αρχείο",
"Deck" : "Deck",
"The card \"%s\" on \"%s\" has reached its due date." : "Η κάρτα \"1%s\" στο \"1%s\" έχει λήξει.",
"Finished" : "Ολοκληρώθηκε",
diff --git a/l10n/el.json b/l10n/el.json
index 18fb239c1..065874096 100644
--- a/l10n/el.json
+++ b/l10n/el.json
@@ -1,7 +1,30 @@
{ "translations": {
+ "Please provide a content for your comment." : "Παρακαλώ παρέχετε περιεχόμενο για το σχόλιο σας.",
+ "Posting the comment failed." : "Η δημοσίευση του σχολίου απέτυχε.",
+ "The comment has been deleted" : "Το σχόλιο διαγράφηκε.",
+ "The associated stack is deleted as well, it will be restored as well." : "Διαγραφή σχετικών ενεργειών και επαναφορά τους.",
+ "Restore associated stack" : "Επαναφορά σχετικών ενεργειών.",
"Remove user from card" : "Αφαίρεση χρήστη από την κάρτα",
"Hours" : "Ώρες",
"Minutes" : "Λεπτά",
+ "Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
+ "File already exists" : "Το αρχείο υπάρχει ήδη",
+ "You have created a new board {board}" : "Δημιουργήσατε νέο πίνακα {board}",
+ "{user} has created a new board {board}" : "Ο {user} δημιούργησε νέο πίνακα {board}",
+ "You have deleted the board {board}" : "Έχετε διαγράψει τον πίνακα {board}",
+ "{user} has deleted the board {board}" : "Ο {user} διέγραψε τον πίνακα {board}",
+ "You have restored the board {board}" : "Εχετε επαναφέρει τον πίνακα {board}",
+ "{user} has restored the board {board}" : "Ο {user} επανέφερε τον πίνακα {board}",
+ "You have shared the board {board} with {acl}" : "Εχετε διαμοιράσει τον πίνακα {board} με {acl}",
+ "{user} has shared the board {board} with {acl}" : "Ο {user} διαμοίρασε τον πίνακα {board} με {acl}",
+ "You have removed {acl} from the board {board}" : "Αφαιρέθηκε η {acl} από τον πίνακα {board}",
+ "{user} has removed {acl} from the board {board}" : "Ο {user} αφαίρεσε την {acl} από τον πίνακα {board}",
+ "You have renamed the board {before} to {board}" : "Μετονομάσατε τον πίνακα {before} σε {board}",
+ "{user} has renamed the board {before} to {board}" : "Ο {user} μετονόμασε τον πίνακα {before} σε {board}",
+ "You have archived the board {board}" : "Αρχειοθετήσατε τον πίνακα {board}",
+ "{user} has archived the board {before}" : "Ο {user} αρχειοθέτησε τον πίνακα {before}",
+ "You have unarchived the board {board}" : "Επαναφέρατε τον πίνακα {board} από αρχείο",
+ "{user} has unarchived the board {before}" : "Ο {user} επανέφερε τον πίνακα {before} από αρχείο",
"Deck" : "Deck",
"The card \"%s\" on \"%s\" has reached its due date." : "Η κάρτα \"1%s\" στο \"1%s\" έχει λήξει.",
"Finished" : "Ολοκληρώθηκε",
diff --git a/l10n/eo.js b/l10n/eo.js
index 9649f5ad3..95dbeef84 100644
--- a/l10n/eo.js
+++ b/l10n/eo.js
@@ -67,9 +67,9 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Vi aldonis dosieron {attachment} al karto {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} aldonis dosieron {attachment} al karto {card}",
"You have updated the attachment {attachment} on card {card}" : "Vi ĝisdatigis la dosieron {attachment} de karto {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}",
"You have deleted the attachment {attachment} from card {card}" : "Vi forigis la dosieron {attachment} el karto {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} forigis la dosieron {attachment} el karto {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} forigis la dosieron {attachment} el karto {card}",
"You have restored the attachment {attachment} to card {card}" : "Vi restaŭris la dosieron {attachment} al karto {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} restaŭris la dosieron {attachment} al karto {card}",
"You have commented on card {card}" : "Vi komentis la karton {card}",
@@ -138,7 +138,7 @@ OC.L10N.register(
"Group" : "Grupo",
"Circle" : "Rondo",
"No matching user or group found." : "Neniu kongrua uzanto aŭ grupo trovita.",
- "Loading" : "Ŝargante",
+ "Loading" : "Ŝargado",
"Edit" : "Redakti",
"Share" : "Kunhavigi",
"Manage" : "Administri",
diff --git a/l10n/eo.json b/l10n/eo.json
index 7aa172e38..f030074c0 100644
--- a/l10n/eo.json
+++ b/l10n/eo.json
@@ -65,9 +65,9 @@
"You have added the attachment {attachment} to card {card}" : "Vi aldonis dosieron {attachment} al karto {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} aldonis dosieron {attachment} al karto {card}",
"You have updated the attachment {attachment} on card {card}" : "Vi ĝisdatigis la dosieron {attachment} de karto {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}",
"You have deleted the attachment {attachment} from card {card}" : "Vi forigis la dosieron {attachment} el karto {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} forigis la dosieron {attachment} el karto {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} forigis la dosieron {attachment} el karto {card}",
"You have restored the attachment {attachment} to card {card}" : "Vi restaŭris la dosieron {attachment} al karto {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} restaŭris la dosieron {attachment} al karto {card}",
"You have commented on card {card}" : "Vi komentis la karton {card}",
@@ -136,7 +136,7 @@
"Group" : "Grupo",
"Circle" : "Rondo",
"No matching user or group found." : "Neniu kongrua uzanto aŭ grupo trovita.",
- "Loading" : "Ŝargante",
+ "Loading" : "Ŝargado",
"Edit" : "Redakti",
"Share" : "Kunhavigi",
"Manage" : "Administri",
diff --git a/l10n/es.js b/l10n/es.js
index 7bbcd37f9..1105f16dc 100644
--- a/l10n/es.js
+++ b/l10n/es.js
@@ -67,9 +67,9 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Has añadido el adjunto {attachment} en {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} ha añadido el adjunto {attachment} en {card}",
"You have updated the attachment {attachment} on card {card}" : "Has actualizado el adjunto [attachment] en {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualizado el adjunto {attachment} en {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} ha actualizado el adjunto {attachment} en la tarjeta {card}",
"You have deleted the attachment {attachment} from card {card}" : "Has eliminado el adjunto {attachment} de {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha eliminado el adjunto {attachment} de {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} ha eliminado el adjunto {attachment} de la tarjeta {card}",
"You have restored the attachment {attachment} to card {card}" : "Has restaurado el adjunto {attachment} a {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurado el adjunto {attachment} a {card}",
"You have commented on card {card}" : "Has comentado en la tarjeta {card}",
diff --git a/l10n/es.json b/l10n/es.json
index 67d84519e..d5bf23bdd 100644
--- a/l10n/es.json
+++ b/l10n/es.json
@@ -65,9 +65,9 @@
"You have added the attachment {attachment} to card {card}" : "Has añadido el adjunto {attachment} en {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} ha añadido el adjunto {attachment} en {card}",
"You have updated the attachment {attachment} on card {card}" : "Has actualizado el adjunto [attachment] en {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualizado el adjunto {attachment} en {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} ha actualizado el adjunto {attachment} en la tarjeta {card}",
"You have deleted the attachment {attachment} from card {card}" : "Has eliminado el adjunto {attachment} de {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha eliminado el adjunto {attachment} de {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} ha eliminado el adjunto {attachment} de la tarjeta {card}",
"You have restored the attachment {attachment} to card {card}" : "Has restaurado el adjunto {attachment} a {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurado el adjunto {attachment} a {card}",
"You have commented on card {card}" : "Has comentado en la tarjeta {card}",
diff --git a/l10n/eu.js b/l10n/eu.js
index ce2e3610e..e07613ea1 100644
--- a/l10n/eu.js
+++ b/l10n/eu.js
@@ -4,14 +4,82 @@ OC.L10N.register(
"Please provide a content for your comment." : "Eman edukia zure iruzkinari.",
"Posting the comment failed." : "Iruzkinaren bidalketak huts egin du.",
"The comment has been deleted" : "Iruzkina ezabatu da",
+ "Restore associated stack" : "Leheneratu lotutako pila",
"Remove user from card" : "Kendu erabiltzailea txarteletik",
"Hours" : "Orduak",
"Minutes" : "Minutuak",
+ "Link to a board" : "Estekatu taula batera",
+ "Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da",
+ "File already exists" : "Badago izen bereko fitxategi bat",
+ "You have created a new board {board}" : "{board} taula berri bat sortu duzu",
+ "{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berri bat sortu du",
+ "You have deleted the board {board}" : "{board} taula ezabatu duzu",
+ "{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du",
+ "You have restored the board {board}" : "{board} taula leheneratu duzu",
+ "{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du",
+ "You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu",
+ "{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du",
+ "You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik",
+ "{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik",
+ "You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu",
+ "{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du",
+ "You have archived the board {board}" : "{board} taula artxibatu duzu",
+ "{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du",
+ "You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu",
+ "{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik berreskuratu du",
+ "You have created a new stack {stack} on board {board}" : "{stack} pila berri bat sortu duzu {board} taulan",
+ "{user} has created a new stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila berri bat sortu duzu {board} taulan",
+ "You have renamed stack {before} to {stack} on board {board}" : "{before} pila zena {stack} bezala berrizendatu duzu {board} taulan",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} pila zena {stack} bezala berrizendatu du {board} taulan",
+ "You have deleted stack {stack} on board {board}" : "{stack} pila ezabatu duzu {board} taulan",
+ "{user} has deleted stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila ezabatu du {board} taulan",
+ "You have created card {card} in stack {stack} on board {board}" : "{card} txartela sortu duzu {board} taulako {stack} pilan",
+ "{user} has created card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} taulako {stack} pilan",
+ "You have deleted card {card} in stack {stack} on board {board}" : "{card} txartela ezabatu duzu {board} taulako {stack} pilan",
+ "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} pilan",
+ "You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu",
+ "{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari deskribapena gehitu diozu",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari deskribapena gehitu dio",
+ "You have updated the description of card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu duzu",
+ "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu du",
+ "You have archived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela artxibatu duzu",
+ "{user} has archived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela artxibatu du",
+ "You have unarchived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela berreskuratu duzu artxibotik",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela berreskuratu du artxibotik",
+ "You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu",
+ "{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio",
+ "You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu",
+ "{user} has set the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari {after} epemuga ezarri dio",
+ "You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}",
+ "{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa jarri diozu",
+ "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa jarri dio",
+ "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa kendu diozu",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa kendu dio",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
+ "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio",
+ "You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
+ "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
+ "You have moved the card {card} from stack {stackBefore} to {stack}" : "{card} txartela {stackBefore} pilatik {stack} pilara aldatu duzu",
+ "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} pilatik {stack} pilara aldatu du",
+ "You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari",
+ "{user} has added the attachment {attachment} to card {card}" : "{user} erabiltzaileak {attachment} eranskina gehitu dio {card} txartelari",
+ "You have updated the attachment {attachment} on card {card}" : "{card} txartelaren {attachment} eranskina eguneratu duzu",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina eguneratu du",
+ "You have deleted the attachment {attachment} from card {card}" : "{card} txartelaren {attachment} eranskina ezabatu duzu",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina ezabatu du",
+ "You have restored the attachment {attachment} to card {card}" : "{card} txartelaren {attachment} eranskina leheneratu duzu",
+ "{user} has restored the attachment {attachment} to card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina leheneratu du",
+ "You have commented on card {card}" : "{card} txartela iruzkindu duzu",
+ "{user} has commented on card {card}" : "{user} erabiltzaileak {card} txartela iruzkindu du",
+ "A card description inside the Deck app has been changed" : "Txartel baten deskribapena aldatu da Deck app-aren barruan",
"Deck" : "Mahaigaina",
+ "Changes in the Deck app" : "Deck app-an aldaketak",
+ "A comment was created on a card" : "Iruzkin bat sortu da txartel batean",
"Personal" : "Pertsonala",
"The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.",
- "The board \"%s\" has been shared with you by %s." : "\"%s\" mahaingaina %s-k zurekin partekatu du.",
- "{user} has shared the board %s with you." : "{user} erabiltzaileak %s mahaigaina zurekin partekatu du.",
+ "No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.",
"Finished" : "Bukatuta",
"To review" : "Errebisatzeko",
"Action needed" : "Ekintza beharrezkoa",
@@ -19,61 +87,96 @@ OC.L10N.register(
"To do" : "Egiteke",
"Doing" : "Egiten",
"Done" : "Egina",
+ "Example Task 3" : "Adibidetarako ataza 3",
+ "Example Task 2" : "Adibidetarako ataza 2",
+ "Example Task 1" : "Adibidetarako ataza 1",
"The file was uploaded" : "Fitxategia igo da",
- "No file was uploaded" : "Ez da fitxategirik igo",
- "Add a new stack" : "Pila berria gehitu",
+ "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Kargatutako fitxategiak php.ini fitxategiko upload_max_filesize direktiban zehazturikoa gainditzen du",
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Kargatutako fitxategiak HTML formularioan ezarritako MAX_FILE_SIZE direktiban zehazturikoa gainditzen du",
+ "The file was only partially uploaded" : "Fitxategia erdizka kargatu da",
+ "No file was uploaded" : "Ez da fitxategirik kargatu",
+ "Missing a temporary folder" : "Aldi baterako karpeta bat falta da",
+ "Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi",
+ "A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
+ "No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
+ "A kanban style project and personal management tool for Nextcloud" : "Proiektuen kudeaketa eta antolaketa pertsonalerako Kanban moduko Nextclouderako tresna",
+ "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
+ "Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
+ "Select board" : "Hautatu taula",
+ "Add a new stack" : "Gehitu pila berria",
"Submit" : "Bidali",
- "Show archived cards" : "Artxibatutako txartelak erakutsi",
- "Hide archived cards" : "Artxibatutako txartelak ezkutatu",
- "All Boards" : "Mahai guztiak",
+ "Show archived cards" : "Erakutsi artxibatutako txartelak",
+ "Hide archived cards" : "Ezkutatu artxibatutako txartelak",
+ "Toggle compact mode" : "Txandakatu modu trinkoa",
+ "Show board details" : "Erakutsi taularen xehetasunak",
+ "All Boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako txartelak",
+ "Share board" : "Partekatu taula",
"Archived cards" : "Artxibatutako txartelak",
"Actions" : "Ekintzak",
+ "Drop your files here to upload it to the card" : "Jaregin fitxategiak hemen txartelera kargatzeko",
+ "Assign card to me" : "Esleitu txartela niri",
+ "Unassign card from me" : "Desegin txartela niri esleitzea",
"Archive card" : "Artxibatu txartela",
"Unarchive card" : "Berreskuratu txartela artxibotik",
"Delete card" : "Ezabatu txartela",
- "Enter a card title" : "Txartelaren titulua sartu",
- "Add card" : "Txartela gehitu",
+ "Enter a card title" : "Sartu txartelaren izenburua",
+ "Add card" : "Gehitu txartela",
"Close" : "Itxi",
"Sharing" : "Partekatzen",
"Tags" : "Etiketak",
"Deleted items" : "Ezabatutako elementuak",
"Timeline" : "Denbora-lerroa",
- "Select users or groups to share with" : "Partekatzeko erabiltzaile eta taldeak hautatu",
- "No matching user or group found." : "Ados datorren erabiltzailerik edo talderik ez da topatu",
+ "Select users or groups to share with" : "Hautatu erabiltzaile edo taldeak haiekin partekatzeko",
+ "Group" : "Taldea",
+ "Circle" : "Zirkulua",
+ "No matching user or group found." : "Ez da aurkitu bat datorren erabiltzailerik edo talderik.",
"Loading" : "Kargatzen",
"Edit" : "Editatu",
"Share" : "Partekatu",
- "Manage" : "Kudeaketa",
- "Discard share" : "Partekatutakoa ezeztatu",
+ "Manage" : "Kudeatu",
+ "Discard share" : "Baztertu partekatzea",
+ "Sharing has been disabled for your account." : "Partekatzea desgaitu da zure kontuarentzat.",
+ "Update tag" : "Eguneratu etiketa",
"Edit tag" : "Editatu etiketa",
"Delete tag" : "Ezabatu etiketa",
"Create" : "Sortu",
- "Create a new tag" : "Etiketa berria sortu",
+ "Create a new tag" : "Sortu etiketa berria",
+ "Deleted stacks" : "Ezabatutako pilak",
+ "Deleted cards" : "Ezabatutako txartelak",
"Status" : "Egoera",
+ "No archived boards to display" : "Artxibatutako taularik ez dago bistaratzeko",
+ "No shared boards to display" : "Partekatutako taularik ez dago bistaratzeko",
"Title" : "Izenburua",
"Members" : "Partaideak",
"More actions" : "Ekintza gehiago",
- "Edit board" : "Mahaigaina editatu",
- "Archive board" : "Mahaigaina artxibatu",
- "Unarchive board" : "Mahaigaina artxibotik atera",
- "Delete board" : "Mahaigaina borratu",
- "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Mahaiagainaren borratzea ezeztatu - Bestela cron lanaren hurrengo aktibazioan borratuko da.",
- "Create new board" : "Mahaigain berria sortzen du",
- "New board title" : "Mahaigainaren izenburu berria",
+ "Edit board" : "Editatu taula",
+ "Archive board" : "Artxibatu taula",
+ "Unarchive board" : "Atera taula artxibotik",
+ "Delete board" : "Ezabatu taula",
+ "Update board" : "Eguneratu taula",
+ "Reset board" : "Berrezarri taula",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Desegin taularen ezabaketa - Bestela taula hurrengo cron lanaren exekuzioan ezabatuko da.",
+ "Create new board" : "Sortu taula berri bat",
+ "New board title" : "Taula berriaren izenburua",
+ "Create board" : "Sortu taula",
"Select an attachment" : "Hautatu eranskin bat",
- "by" : "-engatik",
+ "Cancel upload" : "Ezeztatu kargatzea",
+ "by" : "Nork",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Desegin fitxategiaren ezabaketa - bestela fitxategia hurrengo cron lanaren exekuzioan ezabatuko da.",
"Undo file deletion" : "Desegin fitxategiaren ezabaketa",
+ "Insert the file into the description" : "Txertatu fitxategia deskribapenean",
"Delete attachment" : "Ezabatu eranskina",
"Modified:" : "Aldatua:",
"Created:" : "Sortua:",
- "Choose a tag" : "Etiketa hautatu",
- "Add a tag" : "Etiketa gehitu",
- "Select tags" : "Etiketa hautatu",
- "Assign users" : "Erabiltzaileak esleitu",
- "Assign this card to a user" : "Txartel hau erabiltzaile bati esleitu",
+ "Choose a tag" : "Aukeratu etiketa bat",
+ "Add a tag" : "Gehitu etiketa bat",
+ "Select tags" : "Hautatu etiketak",
+ "Assign users" : "Esleitu erabiltzaileak",
+ "Choose a user to assign" : "Aukeratu erabiltzaile bat esleitzeko",
+ "Assign this card to a user" : "Esleitu txartel hau erabiltzaile bati",
"Due date" : "Epe-muga",
- "Click to set" : "Klik ezartzeko",
+ "Click to set" : "Egin klik ezartzeko",
"Remove due date" : "Ezabatu epe-muga",
"Description" : "Deskribapena",
"Attachments" : "Eranskinak",
@@ -82,10 +185,10 @@ OC.L10N.register(
"Insert attachment" : "Txertatu eranskina",
"Formatting help" : "Formatua emateko laguntza",
"Upload attachment" : "Igo eranskina",
- "Add a card description…" : "Txartelaren deskribapena gehitu...",
+ "Add a card description…" : "Gehitu txartelaren deskribapena...",
"Shared boards" : "Partekatutako txartelak",
- "Move board to archive" : "Txartela artxibora mugitu",
- "Create a new board" : "Mahaigain berria sortu",
+ "Move board to archive" : "Artxibatu txartela",
+ "Create a new board" : "Sortu taula berri bat",
"Settings" : "Ezarpenak"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/eu.json b/l10n/eu.json
index 76119cbd1..77aa054ab 100644
--- a/l10n/eu.json
+++ b/l10n/eu.json
@@ -2,14 +2,82 @@
"Please provide a content for your comment." : "Eman edukia zure iruzkinari.",
"Posting the comment failed." : "Iruzkinaren bidalketak huts egin du.",
"The comment has been deleted" : "Iruzkina ezabatu da",
+ "Restore associated stack" : "Leheneratu lotutako pila",
"Remove user from card" : "Kendu erabiltzailea txarteletik",
"Hours" : "Orduak",
"Minutes" : "Minutuak",
+ "Link to a board" : "Estekatu taula batera",
+ "Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da",
+ "File already exists" : "Badago izen bereko fitxategi bat",
+ "You have created a new board {board}" : "{board} taula berri bat sortu duzu",
+ "{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berri bat sortu du",
+ "You have deleted the board {board}" : "{board} taula ezabatu duzu",
+ "{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du",
+ "You have restored the board {board}" : "{board} taula leheneratu duzu",
+ "{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du",
+ "You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu",
+ "{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du",
+ "You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik",
+ "{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik",
+ "You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu",
+ "{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du",
+ "You have archived the board {board}" : "{board} taula artxibatu duzu",
+ "{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du",
+ "You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu",
+ "{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik berreskuratu du",
+ "You have created a new stack {stack} on board {board}" : "{stack} pila berri bat sortu duzu {board} taulan",
+ "{user} has created a new stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila berri bat sortu duzu {board} taulan",
+ "You have renamed stack {before} to {stack} on board {board}" : "{before} pila zena {stack} bezala berrizendatu duzu {board} taulan",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} pila zena {stack} bezala berrizendatu du {board} taulan",
+ "You have deleted stack {stack} on board {board}" : "{stack} pila ezabatu duzu {board} taulan",
+ "{user} has deleted stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila ezabatu du {board} taulan",
+ "You have created card {card} in stack {stack} on board {board}" : "{card} txartela sortu duzu {board} taulako {stack} pilan",
+ "{user} has created card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} taulako {stack} pilan",
+ "You have deleted card {card} in stack {stack} on board {board}" : "{card} txartela ezabatu duzu {board} taulako {stack} pilan",
+ "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} pilan",
+ "You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu",
+ "{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari deskribapena gehitu diozu",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari deskribapena gehitu dio",
+ "You have updated the description of card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu duzu",
+ "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu du",
+ "You have archived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela artxibatu duzu",
+ "{user} has archived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela artxibatu du",
+ "You have unarchived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela berreskuratu duzu artxibotik",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela berreskuratu du artxibotik",
+ "You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu",
+ "{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio",
+ "You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu",
+ "{user} has set the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari {after} epemuga ezarri dio",
+ "You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}",
+ "{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa jarri diozu",
+ "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa jarri dio",
+ "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa kendu diozu",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa kendu dio",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
+ "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio",
+ "You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
+ "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
+ "You have moved the card {card} from stack {stackBefore} to {stack}" : "{card} txartela {stackBefore} pilatik {stack} pilara aldatu duzu",
+ "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} pilatik {stack} pilara aldatu du",
+ "You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari",
+ "{user} has added the attachment {attachment} to card {card}" : "{user} erabiltzaileak {attachment} eranskina gehitu dio {card} txartelari",
+ "You have updated the attachment {attachment} on card {card}" : "{card} txartelaren {attachment} eranskina eguneratu duzu",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina eguneratu du",
+ "You have deleted the attachment {attachment} from card {card}" : "{card} txartelaren {attachment} eranskina ezabatu duzu",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina ezabatu du",
+ "You have restored the attachment {attachment} to card {card}" : "{card} txartelaren {attachment} eranskina leheneratu duzu",
+ "{user} has restored the attachment {attachment} to card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina leheneratu du",
+ "You have commented on card {card}" : "{card} txartela iruzkindu duzu",
+ "{user} has commented on card {card}" : "{user} erabiltzaileak {card} txartela iruzkindu du",
+ "A card description inside the Deck app has been changed" : "Txartel baten deskribapena aldatu da Deck app-aren barruan",
"Deck" : "Mahaigaina",
+ "Changes in the Deck app" : "Deck app-an aldaketak",
+ "A comment was created on a card" : "Iruzkin bat sortu da txartel batean",
"Personal" : "Pertsonala",
"The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.",
- "The board \"%s\" has been shared with you by %s." : "\"%s\" mahaingaina %s-k zurekin partekatu du.",
- "{user} has shared the board %s with you." : "{user} erabiltzaileak %s mahaigaina zurekin partekatu du.",
+ "No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.",
"Finished" : "Bukatuta",
"To review" : "Errebisatzeko",
"Action needed" : "Ekintza beharrezkoa",
@@ -17,61 +85,96 @@
"To do" : "Egiteke",
"Doing" : "Egiten",
"Done" : "Egina",
+ "Example Task 3" : "Adibidetarako ataza 3",
+ "Example Task 2" : "Adibidetarako ataza 2",
+ "Example Task 1" : "Adibidetarako ataza 1",
"The file was uploaded" : "Fitxategia igo da",
- "No file was uploaded" : "Ez da fitxategirik igo",
- "Add a new stack" : "Pila berria gehitu",
+ "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Kargatutako fitxategiak php.ini fitxategiko upload_max_filesize direktiban zehazturikoa gainditzen du",
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Kargatutako fitxategiak HTML formularioan ezarritako MAX_FILE_SIZE direktiban zehazturikoa gainditzen du",
+ "The file was only partially uploaded" : "Fitxategia erdizka kargatu da",
+ "No file was uploaded" : "Ez da fitxategirik kargatu",
+ "Missing a temporary folder" : "Aldi baterako karpeta bat falta da",
+ "Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi",
+ "A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
+ "No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
+ "A kanban style project and personal management tool for Nextcloud" : "Proiektuen kudeaketa eta antolaketa pertsonalerako Kanban moduko Nextclouderako tresna",
+ "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
+ "Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
+ "Select board" : "Hautatu taula",
+ "Add a new stack" : "Gehitu pila berria",
"Submit" : "Bidali",
- "Show archived cards" : "Artxibatutako txartelak erakutsi",
- "Hide archived cards" : "Artxibatutako txartelak ezkutatu",
- "All Boards" : "Mahai guztiak",
+ "Show archived cards" : "Erakutsi artxibatutako txartelak",
+ "Hide archived cards" : "Ezkutatu artxibatutako txartelak",
+ "Toggle compact mode" : "Txandakatu modu trinkoa",
+ "Show board details" : "Erakutsi taularen xehetasunak",
+ "All Boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako txartelak",
+ "Share board" : "Partekatu taula",
"Archived cards" : "Artxibatutako txartelak",
"Actions" : "Ekintzak",
+ "Drop your files here to upload it to the card" : "Jaregin fitxategiak hemen txartelera kargatzeko",
+ "Assign card to me" : "Esleitu txartela niri",
+ "Unassign card from me" : "Desegin txartela niri esleitzea",
"Archive card" : "Artxibatu txartela",
"Unarchive card" : "Berreskuratu txartela artxibotik",
"Delete card" : "Ezabatu txartela",
- "Enter a card title" : "Txartelaren titulua sartu",
- "Add card" : "Txartela gehitu",
+ "Enter a card title" : "Sartu txartelaren izenburua",
+ "Add card" : "Gehitu txartela",
"Close" : "Itxi",
"Sharing" : "Partekatzen",
"Tags" : "Etiketak",
"Deleted items" : "Ezabatutako elementuak",
"Timeline" : "Denbora-lerroa",
- "Select users or groups to share with" : "Partekatzeko erabiltzaile eta taldeak hautatu",
- "No matching user or group found." : "Ados datorren erabiltzailerik edo talderik ez da topatu",
+ "Select users or groups to share with" : "Hautatu erabiltzaile edo taldeak haiekin partekatzeko",
+ "Group" : "Taldea",
+ "Circle" : "Zirkulua",
+ "No matching user or group found." : "Ez da aurkitu bat datorren erabiltzailerik edo talderik.",
"Loading" : "Kargatzen",
"Edit" : "Editatu",
"Share" : "Partekatu",
- "Manage" : "Kudeaketa",
- "Discard share" : "Partekatutakoa ezeztatu",
+ "Manage" : "Kudeatu",
+ "Discard share" : "Baztertu partekatzea",
+ "Sharing has been disabled for your account." : "Partekatzea desgaitu da zure kontuarentzat.",
+ "Update tag" : "Eguneratu etiketa",
"Edit tag" : "Editatu etiketa",
"Delete tag" : "Ezabatu etiketa",
"Create" : "Sortu",
- "Create a new tag" : "Etiketa berria sortu",
+ "Create a new tag" : "Sortu etiketa berria",
+ "Deleted stacks" : "Ezabatutako pilak",
+ "Deleted cards" : "Ezabatutako txartelak",
"Status" : "Egoera",
+ "No archived boards to display" : "Artxibatutako taularik ez dago bistaratzeko",
+ "No shared boards to display" : "Partekatutako taularik ez dago bistaratzeko",
"Title" : "Izenburua",
"Members" : "Partaideak",
"More actions" : "Ekintza gehiago",
- "Edit board" : "Mahaigaina editatu",
- "Archive board" : "Mahaigaina artxibatu",
- "Unarchive board" : "Mahaigaina artxibotik atera",
- "Delete board" : "Mahaigaina borratu",
- "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Mahaiagainaren borratzea ezeztatu - Bestela cron lanaren hurrengo aktibazioan borratuko da.",
- "Create new board" : "Mahaigain berria sortzen du",
- "New board title" : "Mahaigainaren izenburu berria",
+ "Edit board" : "Editatu taula",
+ "Archive board" : "Artxibatu taula",
+ "Unarchive board" : "Atera taula artxibotik",
+ "Delete board" : "Ezabatu taula",
+ "Update board" : "Eguneratu taula",
+ "Reset board" : "Berrezarri taula",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Desegin taularen ezabaketa - Bestela taula hurrengo cron lanaren exekuzioan ezabatuko da.",
+ "Create new board" : "Sortu taula berri bat",
+ "New board title" : "Taula berriaren izenburua",
+ "Create board" : "Sortu taula",
"Select an attachment" : "Hautatu eranskin bat",
- "by" : "-engatik",
+ "Cancel upload" : "Ezeztatu kargatzea",
+ "by" : "Nork",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Desegin fitxategiaren ezabaketa - bestela fitxategia hurrengo cron lanaren exekuzioan ezabatuko da.",
"Undo file deletion" : "Desegin fitxategiaren ezabaketa",
+ "Insert the file into the description" : "Txertatu fitxategia deskribapenean",
"Delete attachment" : "Ezabatu eranskina",
"Modified:" : "Aldatua:",
"Created:" : "Sortua:",
- "Choose a tag" : "Etiketa hautatu",
- "Add a tag" : "Etiketa gehitu",
- "Select tags" : "Etiketa hautatu",
- "Assign users" : "Erabiltzaileak esleitu",
- "Assign this card to a user" : "Txartel hau erabiltzaile bati esleitu",
+ "Choose a tag" : "Aukeratu etiketa bat",
+ "Add a tag" : "Gehitu etiketa bat",
+ "Select tags" : "Hautatu etiketak",
+ "Assign users" : "Esleitu erabiltzaileak",
+ "Choose a user to assign" : "Aukeratu erabiltzaile bat esleitzeko",
+ "Assign this card to a user" : "Esleitu txartel hau erabiltzaile bati",
"Due date" : "Epe-muga",
- "Click to set" : "Klik ezartzeko",
+ "Click to set" : "Egin klik ezartzeko",
"Remove due date" : "Ezabatu epe-muga",
"Description" : "Deskribapena",
"Attachments" : "Eranskinak",
@@ -80,10 +183,10 @@
"Insert attachment" : "Txertatu eranskina",
"Formatting help" : "Formatua emateko laguntza",
"Upload attachment" : "Igo eranskina",
- "Add a card description…" : "Txartelaren deskribapena gehitu...",
+ "Add a card description…" : "Gehitu txartelaren deskribapena...",
"Shared boards" : "Partekatutako txartelak",
- "Move board to archive" : "Txartela artxibora mugitu",
- "Create a new board" : "Mahaigain berria sortu",
+ "Move board to archive" : "Artxibatu txartela",
+ "Create a new board" : "Sortu taula berri bat",
"Settings" : "Ezarpenak"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/fi.js b/l10n/fi.js
index e6e9ee912..689f21769 100644
--- a/l10n/fi.js
+++ b/l10n/fi.js
@@ -16,27 +16,72 @@ OC.L10N.register(
"{user} has deleted the board {board}" : "{user} poisti taulun {board}",
"You have restored the board {board}" : "Palautit taulun {board}",
"{user} has restored the board {board}" : "{user} palautti taulun {board}",
+ "You have shared the board {board} with {acl}" : "Jaoit taulun {board} ryhmälle {acl}",
+ "{user} has shared the board {board} with {acl}" : "{user} jakoi taulun {board} ryhmälle {acl}",
+ "You have removed {acl} from the board {board}" : "Poistit ryhmän {acl} taulun {board} jaosta",
+ "{user} has removed {acl} from the board {board}" : "{user} poisti {acl}-ryhmän taululta {board}",
"You have renamed the board {before} to {board}" : "Asetit taulun {before} uudeksi nimeksi {board}",
"{user} has renamed the board {before} to {board}" : "{user} asetti taulun {before} uudeksi nimeksi {board}",
"You have archived the board {board}" : "Arkistoit taulun {board}",
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
+ "You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
+ "{user} has unarchived the board {before}" : "{user} palautti taulun {before} arkistosta",
+ "You have created a new stack {stack} on board {board}" : "Loit pinon {stack} tauluun {board}",
+ "{user} has created a new stack {stack} on board {board}" : "{user} loi pinon {stack} tauluun {board}",
+ "You have renamed stack {before} to {stack} on board {board}" : "Muutit pinon {before} nimeksi {stack} taululla {board}",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "{user} muutti pinon {before} nimeksi {stack} taululla {board}",
+ "You have deleted stack {stack} on board {board}" : "Poistit pinon {stack} taululta {board}",
+ "{user} has deleted stack {stack} on board {board}" : "{user} poisti pinon {stack} taululta {board}",
+ "You have created card {card} in stack {stack} on board {board}" : "Loit kortin {card} pinoon {stack} taululla {board}",
+ "{user} has created card {card} in stack {stack} on board {board}" : "{user} loi kortin {card} pinoon {stack} taululla {board}",
+ "You have deleted card {card} in stack {stack} on board {board}" : "Poistit kortin {card} pinosta {stack} taululta {board}",
+ "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} poisti kortin {card} pinosta {stack} taululta {board}",
"You have renamed the card {before} to {card}" : "Muutit kortin {before} uudeksi nimeksi {card}",
"{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "Lisäsit kuvauksen korttiin {card} pinossa {stack} taululla {board}",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} lisäsi kuvauksen korttiin {card} pinossa {stack} taululla {board}",
+ "You have updated the description of card {card} in stack {stack} on board {board}" : "Päivitit kortin {card} kuvausta pinossa {stack} taululla {board}",
+ "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} päivitti kortin {card} kuvausta pinossa {stack} taululla {board}",
+ "You have archived card {card} in stack {stack} on board {board}" : "Arkistoit kortin {card} pinossa {stack} taululla {board}",
+ "{user} has archived card {card} in stack {stack} on board {board}" : "{user} arkistoi kortin {card} pinossa {stack} taululla {board}",
+ "You have unarchived card {card} in stack {stack} on board {board}" : "Palautit arkistosta kortin {card} pinossa {stack} taululla {board}",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} palautti arkistosta kortin {card} pinossa {stack} taululla {board}",
+ "You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}",
+ "{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}",
+ "You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}",
+ "{user} has set the due date of card {card} to {after}" : "{user} asetti kortille {card} eräpäivän {after}",
+ "You have updated the due date of card {card} to {after}" : "Päivitit kortin {card} eräpäiväksi {after}",
+ "{user} has updated the due date of card {card} to {after}" : "{user} päivitti kortin {card} eräpäiväksi {after}",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Lisäsit tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}",
+ "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} lisäsi tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}",
+ "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Poistit tunnisteen {label} kortista {card} pinossa {stack} taululla {board}",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} poisti tunnisteen {label} kortista {card} pinossa {stack} taululla {board}",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "Asetit kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}",
+ "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asetti kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}",
+ "You have unassigned {assigneduser} from card {card} on board {board}" : "Poistit kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}",
+ "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} poisti kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}",
+ "You have moved the card {card} from stack {stackBefore} to {stack}" : "Siirsit kortin {card} pinosta {stackBefore} pinoon {stack}",
+ "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} siirsi kortin {card} pinosta {stackBefore} pinoon {stack}",
"You have added the attachment {attachment} to card {card}" : "Lisäsit liitteen {attachment} kortille {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} lisäsi liitteen {attachment} kortille {card}",
+ "You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}",
"You have deleted the attachment {attachment} from card {card}" : "Poistit 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}",
"{user} has commented on card {card}" : "{user} kommentoi korttia {card}",
- "Deck" : "Kansi",
+ "A card description inside the Deck app has been changed" : "Kortin kuvaus Pakka-sovelluksessa on vaihtunut",
+ "Deck" : "Pakka",
+ "Changes in the Deck app" : "Muutokset Pakka-sovelluksessa",
"A comment was created on a card" : "Kommentti luotiin kortille",
"Personal" : "Henkilökohtainen",
+ "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
"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\".",
"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",
- "To review" : "Arvostella",
+ "To review" : "Arvosteltavana",
"Action needed" : "Toimia vaaditaan",
"Later" : "Myöhemmin",
"To do" : "Odottaa",
@@ -46,16 +91,23 @@ OC.L10N.register(
"Example Task 2" : "Esimerkkitehtävä 2",
"Example Task 1" : "Esimerkkitehtävä 1",
"The file was uploaded" : "Tiedosto lähetettiin",
+ "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Lähetetty tiedosto ylittää php.ini-tiedostossa määritellyn upload_max_filesize -säännön ",
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön",
"The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain",
"No file was uploaded" : "Tiedostoa ei lähetetty",
+ "Missing a temporary folder" : "Väliaikaistiedostojen kansio puuttuu",
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
+ "A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen",
+ "No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
"A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille",
+ "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",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Select board" : "Valitse taulu",
"Add a new stack" : "Lisää uusi pino",
"Submit" : "Lähetä",
"Show archived cards" : "Näytä arkistoidut kortit",
"Hide archived cards" : "Piilota arkistoidut kortit",
+ "Toggle compact mode" : "Käytä kompaktia tilaa",
"Show board details" : "Näytä taulun tiedot",
"All Boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut",
@@ -90,6 +142,7 @@ OC.L10N.register(
"Delete tag" : "Poista tunniste",
"Create" : "Luo",
"Create a new tag" : "Luo uusi tunniste",
+ "Deleted stacks" : "Poistetut pinot",
"Deleted cards" : "Poistetut kortit",
"Status" : "Tila",
"No archived boards to display" : "Ei arkistoituja tauluja näytettäväksi",
@@ -103,13 +156,15 @@ OC.L10N.register(
"Delete board" : "Poista taulu",
"Update board" : "Päivitä taulu",
"Reset board" : "Nollaa taulu",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Peru taulun poisto - muussa tapauksessa taulu poistetaan seuraavan cron-ajon yhteydessä.",
"Create new board" : "Luo uusi taulu",
"New board title" : "Uusi taulun otsikko",
"Create board" : "Luo taulu",
"Select an attachment" : "Valitse liite",
"Cancel upload" : "Peruuta lähetys",
"by" : " Kirjoittaja:",
- "Undo file deletion" : "Kumoa tiedoston luonti",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Peru tiedoston poisto - muussa tapauksessa tiedosto poistetaan seuraavan cron-ajon yhteydessä.",
+ "Undo file deletion" : "Kumoa tiedoston poisto",
"Insert the file into the description" : "Lisää tiedosto kuvaukseen",
"Delete attachment" : "Poista liite",
"Modified:" : "Muokattu:",
@@ -134,6 +189,8 @@ OC.L10N.register(
"Shared boards" : "Jaetut taulut",
"Move board to archive" : "Siirrä taulu arkistoon",
"Create a new board" : "Luo uusi taulu",
- "Settings" : "Asetukset"
+ "Settings" : "Asetukset",
+ "Limit deck to groups" : "Rajoita Pakan käyttö ryhmille",
+ "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja."
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/fi.json b/l10n/fi.json
index 3a3ce35ca..14e9a3067 100644
--- a/l10n/fi.json
+++ b/l10n/fi.json
@@ -14,27 +14,72 @@
"{user} has deleted the board {board}" : "{user} poisti taulun {board}",
"You have restored the board {board}" : "Palautit taulun {board}",
"{user} has restored the board {board}" : "{user} palautti taulun {board}",
+ "You have shared the board {board} with {acl}" : "Jaoit taulun {board} ryhmälle {acl}",
+ "{user} has shared the board {board} with {acl}" : "{user} jakoi taulun {board} ryhmälle {acl}",
+ "You have removed {acl} from the board {board}" : "Poistit ryhmän {acl} taulun {board} jaosta",
+ "{user} has removed {acl} from the board {board}" : "{user} poisti {acl}-ryhmän taululta {board}",
"You have renamed the board {before} to {board}" : "Asetit taulun {before} uudeksi nimeksi {board}",
"{user} has renamed the board {before} to {board}" : "{user} asetti taulun {before} uudeksi nimeksi {board}",
"You have archived the board {board}" : "Arkistoit taulun {board}",
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
+ "You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
+ "{user} has unarchived the board {before}" : "{user} palautti taulun {before} arkistosta",
+ "You have created a new stack {stack} on board {board}" : "Loit pinon {stack} tauluun {board}",
+ "{user} has created a new stack {stack} on board {board}" : "{user} loi pinon {stack} tauluun {board}",
+ "You have renamed stack {before} to {stack} on board {board}" : "Muutit pinon {before} nimeksi {stack} taululla {board}",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "{user} muutti pinon {before} nimeksi {stack} taululla {board}",
+ "You have deleted stack {stack} on board {board}" : "Poistit pinon {stack} taululta {board}",
+ "{user} has deleted stack {stack} on board {board}" : "{user} poisti pinon {stack} taululta {board}",
+ "You have created card {card} in stack {stack} on board {board}" : "Loit kortin {card} pinoon {stack} taululla {board}",
+ "{user} has created card {card} in stack {stack} on board {board}" : "{user} loi kortin {card} pinoon {stack} taululla {board}",
+ "You have deleted card {card} in stack {stack} on board {board}" : "Poistit kortin {card} pinosta {stack} taululta {board}",
+ "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} poisti kortin {card} pinosta {stack} taululta {board}",
"You have renamed the card {before} to {card}" : "Muutit kortin {before} uudeksi nimeksi {card}",
"{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "Lisäsit kuvauksen korttiin {card} pinossa {stack} taululla {board}",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} lisäsi kuvauksen korttiin {card} pinossa {stack} taululla {board}",
+ "You have updated the description of card {card} in stack {stack} on board {board}" : "Päivitit kortin {card} kuvausta pinossa {stack} taululla {board}",
+ "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} päivitti kortin {card} kuvausta pinossa {stack} taululla {board}",
+ "You have archived card {card} in stack {stack} on board {board}" : "Arkistoit kortin {card} pinossa {stack} taululla {board}",
+ "{user} has archived card {card} in stack {stack} on board {board}" : "{user} arkistoi kortin {card} pinossa {stack} taululla {board}",
+ "You have unarchived card {card} in stack {stack} on board {board}" : "Palautit arkistosta kortin {card} pinossa {stack} taululla {board}",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} palautti arkistosta kortin {card} pinossa {stack} taululla {board}",
+ "You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}",
+ "{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}",
+ "You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}",
+ "{user} has set the due date of card {card} to {after}" : "{user} asetti kortille {card} eräpäivän {after}",
+ "You have updated the due date of card {card} to {after}" : "Päivitit kortin {card} eräpäiväksi {after}",
+ "{user} has updated the due date of card {card} to {after}" : "{user} päivitti kortin {card} eräpäiväksi {after}",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Lisäsit tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}",
+ "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} lisäsi tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}",
+ "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Poistit tunnisteen {label} kortista {card} pinossa {stack} taululla {board}",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} poisti tunnisteen {label} kortista {card} pinossa {stack} taululla {board}",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "Asetit kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}",
+ "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asetti kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}",
+ "You have unassigned {assigneduser} from card {card} on board {board}" : "Poistit kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}",
+ "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} poisti kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}",
+ "You have moved the card {card} from stack {stackBefore} to {stack}" : "Siirsit kortin {card} pinosta {stackBefore} pinoon {stack}",
+ "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} siirsi kortin {card} pinosta {stackBefore} pinoon {stack}",
"You have added the attachment {attachment} to card {card}" : "Lisäsit liitteen {attachment} kortille {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} lisäsi liitteen {attachment} kortille {card}",
+ "You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}",
"You have deleted the attachment {attachment} from card {card}" : "Poistit 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}",
"{user} has commented on card {card}" : "{user} kommentoi korttia {card}",
- "Deck" : "Kansi",
+ "A card description inside the Deck app has been changed" : "Kortin kuvaus Pakka-sovelluksessa on vaihtunut",
+ "Deck" : "Pakka",
+ "Changes in the Deck app" : "Muutokset Pakka-sovelluksessa",
"A comment was created on a card" : "Kommentti luotiin kortille",
"Personal" : "Henkilökohtainen",
+ "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
"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\".",
"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",
- "To review" : "Arvostella",
+ "To review" : "Arvosteltavana",
"Action needed" : "Toimia vaaditaan",
"Later" : "Myöhemmin",
"To do" : "Odottaa",
@@ -44,16 +89,23 @@
"Example Task 2" : "Esimerkkitehtävä 2",
"Example Task 1" : "Esimerkkitehtävä 1",
"The file was uploaded" : "Tiedosto lähetettiin",
+ "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Lähetetty tiedosto ylittää php.ini-tiedostossa määritellyn upload_max_filesize -säännön ",
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön",
"The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain",
"No file was uploaded" : "Tiedostoa ei lähetetty",
+ "Missing a temporary folder" : "Väliaikaistiedostojen kansio puuttuu",
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
+ "A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen",
+ "No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
"A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille",
+ "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",
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Select board" : "Valitse taulu",
"Add a new stack" : "Lisää uusi pino",
"Submit" : "Lähetä",
"Show archived cards" : "Näytä arkistoidut kortit",
"Hide archived cards" : "Piilota arkistoidut kortit",
+ "Toggle compact mode" : "Käytä kompaktia tilaa",
"Show board details" : "Näytä taulun tiedot",
"All Boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut",
@@ -88,6 +140,7 @@
"Delete tag" : "Poista tunniste",
"Create" : "Luo",
"Create a new tag" : "Luo uusi tunniste",
+ "Deleted stacks" : "Poistetut pinot",
"Deleted cards" : "Poistetut kortit",
"Status" : "Tila",
"No archived boards to display" : "Ei arkistoituja tauluja näytettäväksi",
@@ -101,13 +154,15 @@
"Delete board" : "Poista taulu",
"Update board" : "Päivitä taulu",
"Reset board" : "Nollaa taulu",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Peru taulun poisto - muussa tapauksessa taulu poistetaan seuraavan cron-ajon yhteydessä.",
"Create new board" : "Luo uusi taulu",
"New board title" : "Uusi taulun otsikko",
"Create board" : "Luo taulu",
"Select an attachment" : "Valitse liite",
"Cancel upload" : "Peruuta lähetys",
"by" : " Kirjoittaja:",
- "Undo file deletion" : "Kumoa tiedoston luonti",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Peru tiedoston poisto - muussa tapauksessa tiedosto poistetaan seuraavan cron-ajon yhteydessä.",
+ "Undo file deletion" : "Kumoa tiedoston poisto",
"Insert the file into the description" : "Lisää tiedosto kuvaukseen",
"Delete attachment" : "Poista liite",
"Modified:" : "Muokattu:",
@@ -132,6 +187,8 @@
"Shared boards" : "Jaetut taulut",
"Move board to archive" : "Siirrä taulu arkistoon",
"Create a new board" : "Luo uusi taulu",
- "Settings" : "Asetukset"
+ "Settings" : "Asetukset",
+ "Limit deck to groups" : "Rajoita Pakan käyttö ryhmille",
+ "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/fr.js b/l10n/fr.js
index 593de0792..5b61706fa 100644
--- a/l10n/fr.js
+++ b/l10n/fr.js
@@ -67,9 +67,7 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Vous avez ajouté la pièce jointe {attachment} à la carte {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} a ajouté la pièce jointe {attachment} à la carte {card}",
"You have updated the attachment {attachment} on card {card}" : "Vous avez mis à jour la pièce jointe {attachment} de la carte {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} a mis à jour la pièce jointe {attachment} de la carte {card}",
"You have deleted the attachment {attachment} from card {card}" : "Vous avez supprimé la pièce jointe {attachment} de la carte {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} a supprimé la pièce jointe {attachment} de la carte {card}",
"You have restored the attachment {attachment} to card {card}" : "Vous avez restauré la pièce jointe {attachment} de la carte {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} a restauré la pièce jointe {attachment} de la carte {card}",
"You have commented on card {card}" : "Vous avez commenté la carte {card}",
@@ -110,7 +108,7 @@ OC.L10N.register(
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Attachez des fichiers et utilisez les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets",
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
"Select board" : "Sélectionner le tableau",
- "Add a new stack" : "Ajouter une nouvelle pile",
+ "Add a new stack" : "Nouvelle pile",
"Submit" : "Envoyer",
"Show archived cards" : "Afficher les cartes archivées",
"Hide archived cards" : "Masquer les cartes archivées",
@@ -183,7 +181,7 @@ OC.L10N.register(
"Choose a user to assign" : "Choisir un utilisateur à assigner",
"Assign this card to a user" : "Assigner cette carte à un utilisateur",
"Due date" : "Date d'échéance",
- "Click to set" : "Cliquer pour définir",
+ "Click to set" : "Définir",
"Remove due date" : "Supprimer la date d'échéance",
"Description" : "Description",
"Attachments" : "Pièces jointes",
diff --git a/l10n/fr.json b/l10n/fr.json
index bed3a7299..8d76ab0c0 100644
--- a/l10n/fr.json
+++ b/l10n/fr.json
@@ -65,9 +65,7 @@
"You have added the attachment {attachment} to card {card}" : "Vous avez ajouté la pièce jointe {attachment} à la carte {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} a ajouté la pièce jointe {attachment} à la carte {card}",
"You have updated the attachment {attachment} on card {card}" : "Vous avez mis à jour la pièce jointe {attachment} de la carte {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} a mis à jour la pièce jointe {attachment} de la carte {card}",
"You have deleted the attachment {attachment} from card {card}" : "Vous avez supprimé la pièce jointe {attachment} de la carte {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} a supprimé la pièce jointe {attachment} de la carte {card}",
"You have restored the attachment {attachment} to card {card}" : "Vous avez restauré la pièce jointe {attachment} de la carte {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} a restauré la pièce jointe {attachment} de la carte {card}",
"You have commented on card {card}" : "Vous avez commenté la carte {card}",
@@ -108,7 +106,7 @@
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Attachez des fichiers et utilisez les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets",
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
"Select board" : "Sélectionner le tableau",
- "Add a new stack" : "Ajouter une nouvelle pile",
+ "Add a new stack" : "Nouvelle pile",
"Submit" : "Envoyer",
"Show archived cards" : "Afficher les cartes archivées",
"Hide archived cards" : "Masquer les cartes archivées",
@@ -181,7 +179,7 @@
"Choose a user to assign" : "Choisir un utilisateur à assigner",
"Assign this card to a user" : "Assigner cette carte à un utilisateur",
"Due date" : "Date d'échéance",
- "Click to set" : "Cliquer pour définir",
+ "Click to set" : "Définir",
"Remove due date" : "Supprimer la date d'échéance",
"Description" : "Description",
"Attachments" : "Pièces jointes",
diff --git a/l10n/gl.js b/l10n/gl.js
index fa66a12b3..48aaea5f6 100644
--- a/l10n/gl.js
+++ b/l10n/gl.js
@@ -67,16 +67,16 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Vostede engadiu o anexo {attachment} na tarxeta {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}",
"You have updated the attachment {attachment} on card {card}" : "Vostede actualizou o anexo {attachment} na tarxeta {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}",
"You have deleted the attachment {attachment} from card {card}" : "Vostede eliminou o anexo {attachment} da tarxeta {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}",
"You have restored the attachment {attachment} to card {card}" : "Vostede restaurou o anexo {attachment} na tarxeta {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} da tarxeta {card}",
"You have commented on card {card}" : "Vostede comentou na tarxeta {card}",
"{user} has commented on card {card}" : "{user} comentou na tarxeta {card}",
- "A card description inside the Deck app has been changed" : "Cambiouse a descripción da tarxeta dentro do aplicativo Deck",
+ "A card description inside the Deck app has been changed" : "Cambiouse a descripción da tarxeta dentro da aplicación Deck",
"Deck" : "Deck",
- "Changes in the Deck app" : "Cambios no aplicativo Deck",
+ "Changes in the Deck app" : "Cambios na aplicación Deck",
"A comment was created on a card" : "Creouse un comentario nunha tarxeta",
"Personal" : "Persoal",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "A tarxeta «%s» en «%s» foi asignada a vostede por %s.",
@@ -118,12 +118,12 @@ OC.L10N.register(
"Show board details" : "Amosar os detalles do taboleiro",
"All Boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
- "Share board" : "Comparte taboleiro",
+ "Share board" : "Taboleiro compartido",
"Archived cards" : "Tarxetas arquivadas",
"Actions" : "Accións",
"Drop your files here to upload it to the card" : "Solte aquí os seus ficheiros para envialos á tarxeta",
"Assign card to me" : "Asignarme a tarxeta",
- "Unassign card from me" : "Desasignarme tarxeta",
+ "Unassign card from me" : "Desasignarme a tarxeta",
"Archive card" : "Arquivar a tarxeta",
"Unarchive card" : "Desarquivar a tarxeta",
"Delete card" : "Eliminar tarxeta",
@@ -190,7 +190,7 @@ OC.L10N.register(
"Saved" : "Gardado",
"Unsaved changes" : "Cambios sen gardar",
"Insert attachment" : "Inserir o anexo",
- "Formatting help" : "Axuda de formato",
+ "Formatting help" : "Axuda de formatado",
"Upload attachment" : "Enviar anexos",
"Add a card description…" : "Engadir unha descrición da tarxeta…",
"Shared boards" : "Taboleiros compartidos",
diff --git a/l10n/gl.json b/l10n/gl.json
index b2e02f978..2221bba5b 100644
--- a/l10n/gl.json
+++ b/l10n/gl.json
@@ -65,16 +65,16 @@
"You have added the attachment {attachment} to card {card}" : "Vostede engadiu o anexo {attachment} na tarxeta {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}",
"You have updated the attachment {attachment} on card {card}" : "Vostede actualizou o anexo {attachment} na tarxeta {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}",
"You have deleted the attachment {attachment} from card {card}" : "Vostede eliminou o anexo {attachment} da tarxeta {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}",
"You have restored the attachment {attachment} to card {card}" : "Vostede restaurou o anexo {attachment} na tarxeta {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} da tarxeta {card}",
"You have commented on card {card}" : "Vostede comentou na tarxeta {card}",
"{user} has commented on card {card}" : "{user} comentou na tarxeta {card}",
- "A card description inside the Deck app has been changed" : "Cambiouse a descripción da tarxeta dentro do aplicativo Deck",
+ "A card description inside the Deck app has been changed" : "Cambiouse a descripción da tarxeta dentro da aplicación Deck",
"Deck" : "Deck",
- "Changes in the Deck app" : "Cambios no aplicativo Deck",
+ "Changes in the Deck app" : "Cambios na aplicación Deck",
"A comment was created on a card" : "Creouse un comentario nunha tarxeta",
"Personal" : "Persoal",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "A tarxeta «%s» en «%s» foi asignada a vostede por %s.",
@@ -116,12 +116,12 @@
"Show board details" : "Amosar os detalles do taboleiro",
"All Boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
- "Share board" : "Comparte taboleiro",
+ "Share board" : "Taboleiro compartido",
"Archived cards" : "Tarxetas arquivadas",
"Actions" : "Accións",
"Drop your files here to upload it to the card" : "Solte aquí os seus ficheiros para envialos á tarxeta",
"Assign card to me" : "Asignarme a tarxeta",
- "Unassign card from me" : "Desasignarme tarxeta",
+ "Unassign card from me" : "Desasignarme a tarxeta",
"Archive card" : "Arquivar a tarxeta",
"Unarchive card" : "Desarquivar a tarxeta",
"Delete card" : "Eliminar tarxeta",
@@ -188,7 +188,7 @@
"Saved" : "Gardado",
"Unsaved changes" : "Cambios sen gardar",
"Insert attachment" : "Inserir o anexo",
- "Formatting help" : "Axuda de formato",
+ "Formatting help" : "Axuda de formatado",
"Upload attachment" : "Enviar anexos",
"Add a card description…" : "Engadir unha descrición da tarxeta…",
"Shared boards" : "Taboleiros compartidos",
diff --git a/l10n/hr.js b/l10n/hr.js
index 1aaebe458..0a6792fbd 100644
--- a/l10n/hr.js
+++ b/l10n/hr.js
@@ -1,31 +1,201 @@
OC.L10N.register(
"deck",
{
+ "Please provide a content for your comment." : "Navedite sadržaj za svoj komentar.",
+ "Posting the comment failed." : "Objavljivanje komentara nije uspjelo.",
+ "The comment has been deleted" : "Komentar je izbrisan",
+ "The associated stack is deleted as well, it will be restored as well." : "Također se briše pridruženi stog, ali će se također vratiti.",
+ "Restore associated stack" : "Vrati pridruženi stog",
+ "Remove user from card" : "Ukloni korisnika s kartice",
+ "Hours" : "Sati",
+ "Minutes" : "Minute",
+ "Link to a board" : "Poveznica na ploču",
+ "Maximum file size of {size} exceeded" : "Prekoračena je maksimalna veličina datoteke od {size}",
+ "File already exists" : "Datoteka već postoji",
+ "You have created a new board {board}" : "Stvorili ste novu ploču {board}",
+ "{user} has created a new board {board}" : "{user} je stvorio novu ploču {board}",
+ "You have deleted the board {board}" : "Izbrisali ste ploču {board}",
+ "{user} has deleted the board {board}" : "{user} je izbrisao ploču {board}",
+ "You have restored the board {board}" : "Vratili ste ploču {board}",
+ "{user} has restored the board {board}" : "{user} je vratio ploču {board}",
+ "You have shared the board {board} with {acl}" : "Podijelili ste ploču {board} s {acl}",
+ "{user} has shared the board {board} with {acl}" : "{user} je podijelio ploču {board} s {acl}",
+ "You have removed {acl} from the board {board}" : "Uklonili ste {acl} s ploče {board}",
+ "{user} has removed {acl} from the board {board}" : "{user} je uklonio {acl} s ploče {board}",
+ "You have renamed the board {before} to {board}" : "Preimenovali ste ploču {before} u {board}",
+ "{user} has renamed the board {before} to {board}" : "{user} je preimenovao ploču {before} u {board}",
+ "You have archived the board {board}" : "Arhivirali ste ploču {board}",
+ "{user} has archived the board {before}" : "{user} je arhivirao ploču {before}",
+ "You have unarchived the board {board}" : "Dearhivirali ste ploču {board}",
+ "{user} has unarchived the board {before}" : "{user} je dearhivirao ploču {before}",
+ "You have created a new stack {stack} on board {board}" : "Stvorili ste novi stog {stack} na ploči {board}",
+ "{user} has created a new stack {stack} on board {board}" : "{user} je stvorio novi stog {stack} na ploči {board}",
+ "You have renamed stack {before} to {stack} on board {board}" : "Preimenovali ste stog {before} u {stack} na ploči {board}",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "{user} je preimenovao stog {before} u {stack} na ploči {board}",
+ "You have deleted stack {stack} on board {board}" : "Izbrisali ste stog {stack} na ploči {board}",
+ "{user} has deleted stack {stack} on board {board}" : "{user} je izbrisao stog {stack} na ploči {board}",
+ "You have created card {card} in stack {stack} on board {board}" : "Stvorili ste karticu {card} u stogu {stack} na ploči {board}",
+ "{user} has created card {card} in stack {stack} on board {board}" : "{user} je stvorio karticu {card} u stogu {stack} na ploči {board}",
+ "You have deleted card {card} in stack {stack} on board {board}" : "Izbrisali ste karticu {card} u stogu {stack} na ploči {board}",
+ "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} je izbrisao karticu {card} u stogu {stack} na ploči {board}",
+ "You have renamed the card {before} to {card}" : "Preimenovali ste karticu {before} u {card}",
+ "{user} has renamed the card {before} to {card}" : "{user} je preimenovao karticu {before} u {card}",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "Dodali ste opis kartici {card} u stogu {stack} na ploči {board}",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} je dodao opis kartici {card} u stogu {stack} na ploči {board}",
+ "You have updated the description of card {card} in stack {stack} on board {board}" : "Ažurirali ste opis kartice {card} u stogu {stack} na ploči {board}",
+ "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} je ažurirao opis kartice {card} u stogu {stack} na ploči {board}",
+ "You have archived card {card} in stack {stack} on board {board}" : "Arhivirali ste karticu {card} u stogu {stack} na ploči {board}",
+ "{user} has archived card {card} in stack {stack} on board {board}" : "{user} je arhivirao karticu {card} u stogu {stack} na ploči {board}",
+ "You have unarchived card {card} in stack {stack} on board {board}" : "Dearhivirali ste karticu {card} u stogu {stack} na ploči {board}",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} je dearhivirao karticu {card} u stogu {stack} na ploči {board}",
+ "You have removed the due date of card {card}" : "Uklonili ste datum dospijeća kartice {card}",
+ "{user} has removed the due date of card {card}" : "{user} je uklonio datum dospijeća kartice {card}",
+ "You have set the due date of card {card} to {after}" : "Postavili ste datum dospijeća kartice {card} na {after}",
+ "{user} has set the due date of card {card} to {after}" : "{user} je postavio datum dospijeća kartice {card} na {after}",
+ "You have updated the due date of card {card} to {after}" : "Ažurirali ste datum dospijeća kartice {card} na {after}",
+ "{user} has updated the due date of card {card} to {after}" : "{user} je ažurirao datum dospijeća kartice {card} na {after}",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodali ste oznaku {label} na karticu {card} u stogu {stack} na ploči {board}",
+ "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} je dodao oznaku {label} na karticu {card} u stogu {stack} na ploči {board}",
+ "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Uklonili ste oznaku {label} s kartice {card} u stogu {stack} na ploči {board}",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} je uklonio oznaku {label} s kartice {card} u stogu {stack} na ploči {board}",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "Dodijelili ste {assigneduser} kartici {card} na ploči {board}",
+ "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} je dodijelio {assigneduser} kartici {card} na ploči {board}",
+ "You have unassigned {assigneduser} from card {card} on board {board}" : "Uklonili ste {assigneduser} s kartice {card} na ploči {board}",
+ "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} je uklonio {assigneduser} s kartice {card} na ploči {board}",
+ "You have moved the card {card} from stack {stackBefore} to {stack}" : "Premjestili ste karticu {card} iz stoga {stackBefore} u {stack}",
+ "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} je premjestio karticu {card} iz stoga {stackBefore} u {stack}",
+ "You have added the attachment {attachment} to card {card}" : "Dodali ste privitak {attachment} kartici {card}",
+ "{user} has added the attachment {attachment} to card {card}" : "{user} je dodao privitak {attachment} kartici {card}",
+ "You have updated the attachment {attachment} on card {card}" : "Ažurirali ste privitak {attachment} na kartici {card}",
+ "You have deleted the attachment {attachment} from card {card}" : "Izbrisali ste privitak {attachment} s kartice {card}",
+ "You have restored the attachment {attachment} to card {card}" : "Vratili ste privitak {attachment} na karticu {card}",
+ "{user} has restored the attachment {attachment} to card {card}" : "{user} je vratio privitak {attachment} na karticu {card}",
+ "You have commented on card {card}" : "Komentirali ste karticu {card}",
+ "{user} has commented on card {card}" : "{user} je komentirao karticu {card}",
+ "A card description inside the Deck app has been changed" : "Promijenjen je opis kartice u aplikaciji Deck",
"Deck" : "Deck",
+ "Changes in the Deck app" : "Promjene u aplikaciji Deck",
+ "A comment was created on a card" : "Komentar 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”.",
+ "The card \"%s\" on \"%s\" has reached its due date." : "Kartica „%s” na „%s” dosegla je datum dospijeća.",
+ "%s has mentioned you in a comment on \"%s\"." : "%s vas spominje u komentaru na „%s”.",
+ "{user} has mentioned you in a comment on \"%s\"." : "{user} vas je spomenuo u komentaru na „%s”.",
+ "The board \"%s\" has been shared with you by %s." : "Ploču „%s” je s vama podijelio %s.",
+ "{user} has shared the board %s with you." : "{user} je s vama podijelio ploču %s.",
+ "No data was provided to create an attachment." : "Nema podataka za izradu privitka.",
"Finished" : "Završeno",
"To review" : "Provjeriti",
"Action needed" : "Potrebna radnja",
"Later" : "Kasnije",
+ "To do" : "Zadatak",
+ "Doing" : "U postupku",
+ "Done" : "Gotovo",
+ "Example Task 3" : "Primjer zadatka 3.",
+ "Example Task 2" : "Primjer zadatka 2.",
+ "Example Task 1" : "Primjer zadatka 1.",
+ "The file was uploaded" : "Datoteka je otpremljena",
+ "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Otpremljena datoteka premašuje postavku upload_max_filesize u datoteci php.ini",
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Otpremljena datoteka premašuje postavku MAX_FILE_SIZE koja je navedena u obrascu HTML-a",
+ "The file was only partially uploaded" : "Datoteka je samo djelomično otpremljena",
+ "No file was uploaded" : "Nije otpremljena nijedna datoteka",
+ "Missing a temporary folder" : "Nedostaje privremena mapa",
+ "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",
+ "A kanban style project and personal management tool for Nextcloud" : "Kanban projekt i osobni alat za upravljanje za Nextcloud",
+ "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",
+ "Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom",
+ "Select board" : "Odaberi ploču",
+ "Add a new stack" : "Dodaj novi stog",
+ "Submit" : "Šalji",
"Show archived cards" : "Prikaži arhivirane kartice",
"Hide archived cards" : "Sakrij arhivirane kartice",
+ "Toggle compact mode" : "Prebaci u kompaktni način rada",
+ "Show board details" : "Prikaži pojedinosti o ploči",
"All Boards" : "Sve ploče",
- "Enter a card title" : "Naslov kartice",
+ "Archived boards" : "Arhivirane ploče",
+ "Share board" : "Dijeli ploču",
+ "Archived cards" : "Arhivirane kartice",
+ "Actions" : "Radnje",
+ "Drop your files here to upload it to the card" : "Ispustite datoteke ovdje kako biste ih otpremili na karticu",
+ "Assign card to me" : "Dodijeli mi karticu",
+ "Unassign card from me" : "Ukloni me s kartice",
+ "Archive card" : "Arhiviraj karticu",
+ "Unarchive card" : "Dearhiviraj karticu",
+ "Delete card" : "Izbriši karticu",
+ "Enter a card title" : "Unesi naslov kartice",
+ "Add card" : "Dodaj karticu",
+ "Close" : "Zatvori",
"Sharing" : "Dijeljenje",
- "Select users or groups to share with" : "Podijeli s korisnicima ili grupama",
- "No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa",
+ "Tags" : "Oznake",
+ "Deleted items" : "Izbrisane stavke",
+ "Timeline" : "Vremenska crta",
+ "Select users or groups to share with" : "Dijeli s korisnicima ili grupama",
+ "Group" : "Grupa",
+ "Circle" : "Krug",
+ "No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa.",
+ "Loading" : "Učitavanje",
"Edit" : "Uređivanje",
- "Share" : "Dijeljenje",
+ "Share" : "Dijeli",
"Manage" : "Upravljanje",
"Discard share" : "Prestani dijeliti",
+ "Sharing has been disabled for your account." : "Dijeljenje je onemogućeno za vaš račun.",
+ "Update tag" : "Ažuriraj oznaku",
+ "Edit tag" : "Uredi oznaku",
+ "Delete tag" : "Izbriši oznaku",
+ "Create" : "Stvori",
+ "Create a new tag" : "Stvori novu oznaku",
+ "Deleted stacks" : "Izbrisani stogovi",
+ "Deleted cards" : "Izbrisane kartice",
+ "Status" : "Status",
+ "No archived boards to display" : "Nema arhiviranih ploča za prikaz",
+ "No shared boards to display" : "Nema dijeljenih ploča za prikaz",
+ "Title" : "Naslov",
"Members" : "Članovi",
- "Create new board" : "Izradi novu ploču",
- "New board title" : "Naslov ploče",
+ "More actions" : "Dodatne radnje",
+ "Edit board" : "Uredi ploču",
+ "Archive board" : "Arhiviraj ploču",
+ "Unarchive board" : "Dearhiviraj ploču",
+ "Delete board" : "Izbriši ploču",
+ "Update board" : "Ažuriraj ploču",
+ "Reset board" : "Resetiraj ploču",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Poništi brisanje ploče – u suprotnom će se ploča izbrisati tijekom sljedećeg izvođenja cronjoba.",
+ "Create new board" : "Stvori novu ploču",
+ "New board title" : "Novi naslov ploče",
+ "Create board" : "Stvori ploču",
+ "Select an attachment" : "Odaberi privitak",
+ "Cancel upload" : "Otkaži otpremanje",
"by" : "od",
- "Modified:" : "Promijenjena:",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Poništi brisanje datoteke – u suprotnom će se datoteka izbrisati tijekom sljedećeg izvođenja cronjoba.",
+ "Undo file deletion" : "Poništi brisanje datoteke",
+ "Insert the file into the description" : "Umetni datoteku u opis",
+ "Delete attachment" : "Izbriši privitak",
+ "Modified:" : "Promijenjeno:",
"Created:" : "Stvorena:",
+ "Choose a tag" : "Odaberi oznaku",
+ "Add a tag" : "Dodaj oznaku",
+ "Select tags" : "Odaberite oznake",
+ "Assign users" : "Dodijeli korisnike",
+ "Choose a user to assign" : "Odaberi korisnika za dodjelu",
+ "Assign this card to a user" : "Dodijeli ovu karticu korisniku",
+ "Due date" : "Datum dospijeća",
+ "Click to set" : "Klikni za postavljanje",
+ "Remove due date" : "Ukloni datum dospijeća",
"Description" : "Opis",
+ "Attachments" : "Privici",
"Saved" : "Spremljeno",
- "Add a card description…" : "Dodaj opis...",
- "Create a new board" : "Izradi novu ploču"
+ "Unsaved changes" : "Nespremljene promjene",
+ "Insert attachment" : "Umetni privitak",
+ "Formatting help" : "Pomoć pri oblikovanju",
+ "Upload attachment" : "Otpremi privitak",
+ "Add a card description…" : "Dodaj opis kartice...",
+ "Shared boards" : "Dijeljene ploče",
+ "Move board to archive" : "Premjesti ploču u arhivu",
+ "Create a new board" : "Stvori novu ploču",
+ "Settings" : "Postavke",
+ "Limit deck to groups" : "Ograniči Deck na grupe",
+ "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima."
},
"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;");
diff --git a/l10n/hr.json b/l10n/hr.json
index 3b3045f86..1cf71aad6 100644
--- a/l10n/hr.json
+++ b/l10n/hr.json
@@ -1,29 +1,199 @@
{ "translations": {
+ "Please provide a content for your comment." : "Navedite sadržaj za svoj komentar.",
+ "Posting the comment failed." : "Objavljivanje komentara nije uspjelo.",
+ "The comment has been deleted" : "Komentar je izbrisan",
+ "The associated stack is deleted as well, it will be restored as well." : "Također se briše pridruženi stog, ali će se također vratiti.",
+ "Restore associated stack" : "Vrati pridruženi stog",
+ "Remove user from card" : "Ukloni korisnika s kartice",
+ "Hours" : "Sati",
+ "Minutes" : "Minute",
+ "Link to a board" : "Poveznica na ploču",
+ "Maximum file size of {size} exceeded" : "Prekoračena je maksimalna veličina datoteke od {size}",
+ "File already exists" : "Datoteka već postoji",
+ "You have created a new board {board}" : "Stvorili ste novu ploču {board}",
+ "{user} has created a new board {board}" : "{user} je stvorio novu ploču {board}",
+ "You have deleted the board {board}" : "Izbrisali ste ploču {board}",
+ "{user} has deleted the board {board}" : "{user} je izbrisao ploču {board}",
+ "You have restored the board {board}" : "Vratili ste ploču {board}",
+ "{user} has restored the board {board}" : "{user} je vratio ploču {board}",
+ "You have shared the board {board} with {acl}" : "Podijelili ste ploču {board} s {acl}",
+ "{user} has shared the board {board} with {acl}" : "{user} je podijelio ploču {board} s {acl}",
+ "You have removed {acl} from the board {board}" : "Uklonili ste {acl} s ploče {board}",
+ "{user} has removed {acl} from the board {board}" : "{user} je uklonio {acl} s ploče {board}",
+ "You have renamed the board {before} to {board}" : "Preimenovali ste ploču {before} u {board}",
+ "{user} has renamed the board {before} to {board}" : "{user} je preimenovao ploču {before} u {board}",
+ "You have archived the board {board}" : "Arhivirali ste ploču {board}",
+ "{user} has archived the board {before}" : "{user} je arhivirao ploču {before}",
+ "You have unarchived the board {board}" : "Dearhivirali ste ploču {board}",
+ "{user} has unarchived the board {before}" : "{user} je dearhivirao ploču {before}",
+ "You have created a new stack {stack} on board {board}" : "Stvorili ste novi stog {stack} na ploči {board}",
+ "{user} has created a new stack {stack} on board {board}" : "{user} je stvorio novi stog {stack} na ploči {board}",
+ "You have renamed stack {before} to {stack} on board {board}" : "Preimenovali ste stog {before} u {stack} na ploči {board}",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "{user} je preimenovao stog {before} u {stack} na ploči {board}",
+ "You have deleted stack {stack} on board {board}" : "Izbrisali ste stog {stack} na ploči {board}",
+ "{user} has deleted stack {stack} on board {board}" : "{user} je izbrisao stog {stack} na ploči {board}",
+ "You have created card {card} in stack {stack} on board {board}" : "Stvorili ste karticu {card} u stogu {stack} na ploči {board}",
+ "{user} has created card {card} in stack {stack} on board {board}" : "{user} je stvorio karticu {card} u stogu {stack} na ploči {board}",
+ "You have deleted card {card} in stack {stack} on board {board}" : "Izbrisali ste karticu {card} u stogu {stack} na ploči {board}",
+ "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} je izbrisao karticu {card} u stogu {stack} na ploči {board}",
+ "You have renamed the card {before} to {card}" : "Preimenovali ste karticu {before} u {card}",
+ "{user} has renamed the card {before} to {card}" : "{user} je preimenovao karticu {before} u {card}",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "Dodali ste opis kartici {card} u stogu {stack} na ploči {board}",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} je dodao opis kartici {card} u stogu {stack} na ploči {board}",
+ "You have updated the description of card {card} in stack {stack} on board {board}" : "Ažurirali ste opis kartice {card} u stogu {stack} na ploči {board}",
+ "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} je ažurirao opis kartice {card} u stogu {stack} na ploči {board}",
+ "You have archived card {card} in stack {stack} on board {board}" : "Arhivirali ste karticu {card} u stogu {stack} na ploči {board}",
+ "{user} has archived card {card} in stack {stack} on board {board}" : "{user} je arhivirao karticu {card} u stogu {stack} na ploči {board}",
+ "You have unarchived card {card} in stack {stack} on board {board}" : "Dearhivirali ste karticu {card} u stogu {stack} na ploči {board}",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} je dearhivirao karticu {card} u stogu {stack} na ploči {board}",
+ "You have removed the due date of card {card}" : "Uklonili ste datum dospijeća kartice {card}",
+ "{user} has removed the due date of card {card}" : "{user} je uklonio datum dospijeća kartice {card}",
+ "You have set the due date of card {card} to {after}" : "Postavili ste datum dospijeća kartice {card} na {after}",
+ "{user} has set the due date of card {card} to {after}" : "{user} je postavio datum dospijeća kartice {card} na {after}",
+ "You have updated the due date of card {card} to {after}" : "Ažurirali ste datum dospijeća kartice {card} na {after}",
+ "{user} has updated the due date of card {card} to {after}" : "{user} je ažurirao datum dospijeća kartice {card} na {after}",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodali ste oznaku {label} na karticu {card} u stogu {stack} na ploči {board}",
+ "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} je dodao oznaku {label} na karticu {card} u stogu {stack} na ploči {board}",
+ "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Uklonili ste oznaku {label} s kartice {card} u stogu {stack} na ploči {board}",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} je uklonio oznaku {label} s kartice {card} u stogu {stack} na ploči {board}",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "Dodijelili ste {assigneduser} kartici {card} na ploči {board}",
+ "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} je dodijelio {assigneduser} kartici {card} na ploči {board}",
+ "You have unassigned {assigneduser} from card {card} on board {board}" : "Uklonili ste {assigneduser} s kartice {card} na ploči {board}",
+ "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} je uklonio {assigneduser} s kartice {card} na ploči {board}",
+ "You have moved the card {card} from stack {stackBefore} to {stack}" : "Premjestili ste karticu {card} iz stoga {stackBefore} u {stack}",
+ "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} je premjestio karticu {card} iz stoga {stackBefore} u {stack}",
+ "You have added the attachment {attachment} to card {card}" : "Dodali ste privitak {attachment} kartici {card}",
+ "{user} has added the attachment {attachment} to card {card}" : "{user} je dodao privitak {attachment} kartici {card}",
+ "You have updated the attachment {attachment} on card {card}" : "Ažurirali ste privitak {attachment} na kartici {card}",
+ "You have deleted the attachment {attachment} from card {card}" : "Izbrisali ste privitak {attachment} s kartice {card}",
+ "You have restored the attachment {attachment} to card {card}" : "Vratili ste privitak {attachment} na karticu {card}",
+ "{user} has restored the attachment {attachment} to card {card}" : "{user} je vratio privitak {attachment} na karticu {card}",
+ "You have commented on card {card}" : "Komentirali ste karticu {card}",
+ "{user} has commented on card {card}" : "{user} je komentirao karticu {card}",
+ "A card description inside the Deck app has been changed" : "Promijenjen je opis kartice u aplikaciji Deck",
"Deck" : "Deck",
+ "Changes in the Deck app" : "Promjene u aplikaciji Deck",
+ "A comment was created on a card" : "Komentar 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”.",
+ "The card \"%s\" on \"%s\" has reached its due date." : "Kartica „%s” na „%s” dosegla je datum dospijeća.",
+ "%s has mentioned you in a comment on \"%s\"." : "%s vas spominje u komentaru na „%s”.",
+ "{user} has mentioned you in a comment on \"%s\"." : "{user} vas je spomenuo u komentaru na „%s”.",
+ "The board \"%s\" has been shared with you by %s." : "Ploču „%s” je s vama podijelio %s.",
+ "{user} has shared the board %s with you." : "{user} je s vama podijelio ploču %s.",
+ "No data was provided to create an attachment." : "Nema podataka za izradu privitka.",
"Finished" : "Završeno",
"To review" : "Provjeriti",
"Action needed" : "Potrebna radnja",
"Later" : "Kasnije",
+ "To do" : "Zadatak",
+ "Doing" : "U postupku",
+ "Done" : "Gotovo",
+ "Example Task 3" : "Primjer zadatka 3.",
+ "Example Task 2" : "Primjer zadatka 2.",
+ "Example Task 1" : "Primjer zadatka 1.",
+ "The file was uploaded" : "Datoteka je otpremljena",
+ "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Otpremljena datoteka premašuje postavku upload_max_filesize u datoteci php.ini",
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Otpremljena datoteka premašuje postavku MAX_FILE_SIZE koja je navedena u obrascu HTML-a",
+ "The file was only partially uploaded" : "Datoteka je samo djelomično otpremljena",
+ "No file was uploaded" : "Nije otpremljena nijedna datoteka",
+ "Missing a temporary folder" : "Nedostaje privremena mapa",
+ "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",
+ "A kanban style project and personal management tool for Nextcloud" : "Kanban projekt i osobni alat za upravljanje za Nextcloud",
+ "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",
+ "Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom",
+ "Select board" : "Odaberi ploču",
+ "Add a new stack" : "Dodaj novi stog",
+ "Submit" : "Šalji",
"Show archived cards" : "Prikaži arhivirane kartice",
"Hide archived cards" : "Sakrij arhivirane kartice",
+ "Toggle compact mode" : "Prebaci u kompaktni način rada",
+ "Show board details" : "Prikaži pojedinosti o ploči",
"All Boards" : "Sve ploče",
- "Enter a card title" : "Naslov kartice",
+ "Archived boards" : "Arhivirane ploče",
+ "Share board" : "Dijeli ploču",
+ "Archived cards" : "Arhivirane kartice",
+ "Actions" : "Radnje",
+ "Drop your files here to upload it to the card" : "Ispustite datoteke ovdje kako biste ih otpremili na karticu",
+ "Assign card to me" : "Dodijeli mi karticu",
+ "Unassign card from me" : "Ukloni me s kartice",
+ "Archive card" : "Arhiviraj karticu",
+ "Unarchive card" : "Dearhiviraj karticu",
+ "Delete card" : "Izbriši karticu",
+ "Enter a card title" : "Unesi naslov kartice",
+ "Add card" : "Dodaj karticu",
+ "Close" : "Zatvori",
"Sharing" : "Dijeljenje",
- "Select users or groups to share with" : "Podijeli s korisnicima ili grupama",
- "No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa",
+ "Tags" : "Oznake",
+ "Deleted items" : "Izbrisane stavke",
+ "Timeline" : "Vremenska crta",
+ "Select users or groups to share with" : "Dijeli s korisnicima ili grupama",
+ "Group" : "Grupa",
+ "Circle" : "Krug",
+ "No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa.",
+ "Loading" : "Učitavanje",
"Edit" : "Uređivanje",
- "Share" : "Dijeljenje",
+ "Share" : "Dijeli",
"Manage" : "Upravljanje",
"Discard share" : "Prestani dijeliti",
+ "Sharing has been disabled for your account." : "Dijeljenje je onemogućeno za vaš račun.",
+ "Update tag" : "Ažuriraj oznaku",
+ "Edit tag" : "Uredi oznaku",
+ "Delete tag" : "Izbriši oznaku",
+ "Create" : "Stvori",
+ "Create a new tag" : "Stvori novu oznaku",
+ "Deleted stacks" : "Izbrisani stogovi",
+ "Deleted cards" : "Izbrisane kartice",
+ "Status" : "Status",
+ "No archived boards to display" : "Nema arhiviranih ploča za prikaz",
+ "No shared boards to display" : "Nema dijeljenih ploča za prikaz",
+ "Title" : "Naslov",
"Members" : "Članovi",
- "Create new board" : "Izradi novu ploču",
- "New board title" : "Naslov ploče",
+ "More actions" : "Dodatne radnje",
+ "Edit board" : "Uredi ploču",
+ "Archive board" : "Arhiviraj ploču",
+ "Unarchive board" : "Dearhiviraj ploču",
+ "Delete board" : "Izbriši ploču",
+ "Update board" : "Ažuriraj ploču",
+ "Reset board" : "Resetiraj ploču",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Poništi brisanje ploče – u suprotnom će se ploča izbrisati tijekom sljedećeg izvođenja cronjoba.",
+ "Create new board" : "Stvori novu ploču",
+ "New board title" : "Novi naslov ploče",
+ "Create board" : "Stvori ploču",
+ "Select an attachment" : "Odaberi privitak",
+ "Cancel upload" : "Otkaži otpremanje",
"by" : "od",
- "Modified:" : "Promijenjena:",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Poništi brisanje datoteke – u suprotnom će se datoteka izbrisati tijekom sljedećeg izvođenja cronjoba.",
+ "Undo file deletion" : "Poništi brisanje datoteke",
+ "Insert the file into the description" : "Umetni datoteku u opis",
+ "Delete attachment" : "Izbriši privitak",
+ "Modified:" : "Promijenjeno:",
"Created:" : "Stvorena:",
+ "Choose a tag" : "Odaberi oznaku",
+ "Add a tag" : "Dodaj oznaku",
+ "Select tags" : "Odaberite oznake",
+ "Assign users" : "Dodijeli korisnike",
+ "Choose a user to assign" : "Odaberi korisnika za dodjelu",
+ "Assign this card to a user" : "Dodijeli ovu karticu korisniku",
+ "Due date" : "Datum dospijeća",
+ "Click to set" : "Klikni za postavljanje",
+ "Remove due date" : "Ukloni datum dospijeća",
"Description" : "Opis",
+ "Attachments" : "Privici",
"Saved" : "Spremljeno",
- "Add a card description…" : "Dodaj opis...",
- "Create a new board" : "Izradi novu ploču"
+ "Unsaved changes" : "Nespremljene promjene",
+ "Insert attachment" : "Umetni privitak",
+ "Formatting help" : "Pomoć pri oblikovanju",
+ "Upload attachment" : "Otpremi privitak",
+ "Add a card description…" : "Dodaj opis kartice...",
+ "Shared boards" : "Dijeljene ploče",
+ "Move board to archive" : "Premjesti ploču u arhivu",
+ "Create a new board" : "Stvori novu ploču",
+ "Settings" : "Postavke",
+ "Limit deck to groups" : "Ograniči Deck na grupe",
+ "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima."
},"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;"
}
\ No newline at end of file
diff --git a/l10n/hu.js b/l10n/hu.js
index bce10c8a4..a4f5d0238 100644
--- a/l10n/hu.js
+++ b/l10n/hu.js
@@ -19,6 +19,7 @@ OC.L10N.register(
"You have restored the board {board}" : "Visszaállította a(z) {board} táblát",
"{user} has restored the board {board}" : "{user} visszaállította a(z) {board} táblát",
"You have shared the board {board} with {acl}" : "Megosztotta a(z) {board} táblát a következővel: {acl}",
+ "{user} has shared the board {board} with {acl}" : "{user} megosztotta a(z) {board} táblát a következővel: {acl}",
"You have removed {acl} from the board {board}" : "Eltávolította a következőt a(z) {board} táblától: {acl}",
"{user} has removed {acl} from the board {board}" : "{user} eltávolította a következőt a(z) {board} táblától: {acl}",
"You have renamed the board {before} to {board}" : "Átnevezte a(z) {before} táblát erre: {board}",
@@ -66,9 +67,7 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
"{user} has added the attachment {attachment} to card {card}" : "{user} hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
"You have updated the attachment {attachment} on card {card}" : "Frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál",
"You have deleted the attachment {attachment} from card {card}" : "Eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról",
"You have restored the attachment {attachment} to card {card}" : "Visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál",
"{user} has restored the attachment {attachment} to card {card}" : "{user} visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál",
"You have commented on card {card}" : "Hozzászólt a(z) {card} kártyához",
@@ -76,6 +75,7 @@ OC.L10N.register(
"A card description inside the Deck app has been changed" : "A kártyaleírás megváltozott a Kártyák alkalmazásban",
"Deck" : "Kártyák",
"Changes in the Deck app" : "Változások a Kártyák alkalmazásban",
+ "A comment was created on a card" : "Egy hozzászólás lett létrehozva egy kártyán",
"Personal" : "Személyes",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "A(z) „%s” kártyát a(z) „%s” táblán %s hozzárendelte Önhöz.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hozzárendelte Önhöz a(z) „%s” kártyát a(z) „%s”.",
diff --git a/l10n/hu.json b/l10n/hu.json
index a5b726702..0bb2cd2b0 100644
--- a/l10n/hu.json
+++ b/l10n/hu.json
@@ -17,6 +17,7 @@
"You have restored the board {board}" : "Visszaállította a(z) {board} táblát",
"{user} has restored the board {board}" : "{user} visszaállította a(z) {board} táblát",
"You have shared the board {board} with {acl}" : "Megosztotta a(z) {board} táblát a következővel: {acl}",
+ "{user} has shared the board {board} with {acl}" : "{user} megosztotta a(z) {board} táblát a következővel: {acl}",
"You have removed {acl} from the board {board}" : "Eltávolította a következőt a(z) {board} táblától: {acl}",
"{user} has removed {acl} from the board {board}" : "{user} eltávolította a következőt a(z) {board} táblától: {acl}",
"You have renamed the board {before} to {board}" : "Átnevezte a(z) {before} táblát erre: {board}",
@@ -64,9 +65,7 @@
"You have added the attachment {attachment} to card {card}" : "Hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
"{user} has added the attachment {attachment} to card {card}" : "{user} hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
"You have updated the attachment {attachment} on card {card}" : "Frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál",
"You have deleted the attachment {attachment} from card {card}" : "Eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról",
"You have restored the attachment {attachment} to card {card}" : "Visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál",
"{user} has restored the attachment {attachment} to card {card}" : "{user} visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál",
"You have commented on card {card}" : "Hozzászólt a(z) {card} kártyához",
@@ -74,6 +73,7 @@
"A card description inside the Deck app has been changed" : "A kártyaleírás megváltozott a Kártyák alkalmazásban",
"Deck" : "Kártyák",
"Changes in the Deck app" : "Változások a Kártyák alkalmazásban",
+ "A comment was created on a card" : "Egy hozzászólás lett létrehozva egy kártyán",
"Personal" : "Személyes",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "A(z) „%s” kártyát a(z) „%s” táblán %s hozzárendelte Önhöz.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hozzárendelte Önhöz a(z) „%s” kártyát a(z) „%s”.",
diff --git a/l10n/is.js b/l10n/is.js
index e4e25baa4..fc7443299 100644
--- a/l10n/is.js
+++ b/l10n/is.js
@@ -67,9 +67,7 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Þú bættir viðhenginu {attachment} við spjaldið {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} bætti viðhenginu {attachment} við spjaldið {card}",
"You have updated the attachment {attachment} on card {card}" : "Þú uppfærðir viðhengið {attachment} á spjaldinu {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} uppfærði viðhengið {attachment} á spjaldinu {card}",
"You have deleted the attachment {attachment} from card {card}" : "Þú eyddir viðhenginu {attachment} af spjaldinu {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} eyddi viðhenginu {attachment} af spjaldinu {card}",
"You have restored the attachment {attachment} to card {card}" : "Þú endurheimtir viðhengið {attachment} á spjaldinu {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} endurheimti viðhengið {attachment} á spjaldinu {card}",
"You have commented on card {card}" : "Þú settir inn athugasemd við spjaldið {card}",
diff --git a/l10n/is.json b/l10n/is.json
index d37d06811..c1b53fdd7 100644
--- a/l10n/is.json
+++ b/l10n/is.json
@@ -65,9 +65,7 @@
"You have added the attachment {attachment} to card {card}" : "Þú bættir viðhenginu {attachment} við spjaldið {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} bætti viðhenginu {attachment} við spjaldið {card}",
"You have updated the attachment {attachment} on card {card}" : "Þú uppfærðir viðhengið {attachment} á spjaldinu {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} uppfærði viðhengið {attachment} á spjaldinu {card}",
"You have deleted the attachment {attachment} from card {card}" : "Þú eyddir viðhenginu {attachment} af spjaldinu {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} eyddi viðhenginu {attachment} af spjaldinu {card}",
"You have restored the attachment {attachment} to card {card}" : "Þú endurheimtir viðhengið {attachment} á spjaldinu {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} endurheimti viðhengið {attachment} á spjaldinu {card}",
"You have commented on card {card}" : "Þú settir inn athugasemd við spjaldið {card}",
diff --git a/l10n/it.js b/l10n/it.js
index c543eccd0..9728034f0 100644
--- a/l10n/it.js
+++ b/l10n/it.js
@@ -67,9 +67,9 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Hai aggiunto l'allegato {attachment} alla scheda {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} ha aggiunto l'allegato {attachment} alla scheda {card}",
"You have updated the attachment {attachment} on card {card}" : "Hai aggiornato l'allegato {attachment} sulla scheda {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} ha aggiornato l'allegato {attachment} sulla scheda {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} ha aggiornato l'allegato {attachment} nella scheda {card}",
"You have deleted the attachment {attachment} from card {card}" : "Hai eliminato l'allegato {attachment} dalla scheda {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha eliminato l'allegato {attachment} della scheda {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} ha eliminato l'allegato {attachment} dalla scheda {card}",
"You have restored the attachment {attachment} to card {card}" : "Hai ripristinato l'allegato {attachment} nella scheda {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha ripristinato l'allegato {attachment} nella scheda {card}",
"You have commented on card {card}" : "Hai commentato sulla scheda {card}",
diff --git a/l10n/it.json b/l10n/it.json
index fa2b6b2cd..609d2d97a 100644
--- a/l10n/it.json
+++ b/l10n/it.json
@@ -65,9 +65,9 @@
"You have added the attachment {attachment} to card {card}" : "Hai aggiunto l'allegato {attachment} alla scheda {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} ha aggiunto l'allegato {attachment} alla scheda {card}",
"You have updated the attachment {attachment} on card {card}" : "Hai aggiornato l'allegato {attachment} sulla scheda {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} ha aggiornato l'allegato {attachment} sulla scheda {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} ha aggiornato l'allegato {attachment} nella scheda {card}",
"You have deleted the attachment {attachment} from card {card}" : "Hai eliminato l'allegato {attachment} dalla scheda {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} ha eliminato l'allegato {attachment} della scheda {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} ha eliminato l'allegato {attachment} dalla scheda {card}",
"You have restored the attachment {attachment} to card {card}" : "Hai ripristinato l'allegato {attachment} nella scheda {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha ripristinato l'allegato {attachment} nella scheda {card}",
"You have commented on card {card}" : "Hai commentato sulla scheda {card}",
diff --git a/l10n/ja.js b/l10n/ja.js
index 756219d56..d6df1aa52 100644
--- a/l10n/ja.js
+++ b/l10n/ja.js
@@ -67,9 +67,7 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "添付ファイル{attachment}をカード{card}に追加しました",
"{user} has added the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に追加しました",
"You have updated the attachment {attachment} on card {card}" : "カード{card}の添付ファイル{attachment}を更新しました",
- "{user} has updated the attachment {attachment} to card {card}" : "{user}がカード {card}の添付ファイル {attachment}を更新しました",
"You have deleted the attachment {attachment} from card {card}" : "カード{card}から添付ファイル{attachment}を削除しました",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user}がカード{card}の添付ファイル{attachment}を削除しました",
"You have restored the attachment {attachment} to card {card}" : "添付ファイル{attachment}をカード{card}に復元しました",
"{user} has restored the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に復元しました",
"You have commented on card {card}" : "カード{card}にコメントしました",
diff --git a/l10n/ja.json b/l10n/ja.json
index d6b21d9de..a09b55391 100644
--- a/l10n/ja.json
+++ b/l10n/ja.json
@@ -65,9 +65,7 @@
"You have added the attachment {attachment} to card {card}" : "添付ファイル{attachment}をカード{card}に追加しました",
"{user} has added the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に追加しました",
"You have updated the attachment {attachment} on card {card}" : "カード{card}の添付ファイル{attachment}を更新しました",
- "{user} has updated the attachment {attachment} to card {card}" : "{user}がカード {card}の添付ファイル {attachment}を更新しました",
"You have deleted the attachment {attachment} from card {card}" : "カード{card}から添付ファイル{attachment}を削除しました",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user}がカード{card}の添付ファイル{attachment}を削除しました",
"You have restored the attachment {attachment} to card {card}" : "添付ファイル{attachment}をカード{card}に復元しました",
"{user} has restored the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に復元しました",
"You have commented on card {card}" : "カード{card}にコメントしました",
diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js
index 5a508a3d2..d7b4a1900 100644
--- a/l10n/lt_LT.js
+++ b/l10n/lt_LT.js
@@ -4,16 +4,85 @@ OC.L10N.register(
"Please provide a content for your comment." : "Pateikite savo komentaro turinį.",
"Posting the comment failed." : "Komentaro paskelbimas patyrė nesėkmę.",
"The comment has been deleted" : "Komentaras ištrintas",
+ "Restore associated stack" : "Atkurti susietą dėklą",
"Remove user from card" : "Šalinti naudotoją iš kortelės",
"Hours" : "Valandos",
"Minutes" : "Minutės",
+ "Link to a board" : "Susieti su plokšte",
+ "Maximum file size of {size} exceeded" : "Viršytas maksimalus {size} failo dydis",
"File already exists" : "Failas jau yra",
- "Deck" : "Užduočių saugykla",
+ "You have created a new board {board}" : "Jūs sukūrėte naują plokštę {board}",
+ "{user} has created a new board {board}" : "{user} sukūrė naują plokštę {board}",
+ "You have deleted the board {board}" : "Jūs ištrynėte plokštę {board}",
+ "{user} has deleted the board {board}" : "{user} ištrynė plokštę {board}",
+ "You have restored the board {board}" : "Jūs atkūrėte plokštę {board}",
+ "{user} has restored the board {board}" : "{user} atkūrė plokštę {board}",
+ "You have shared the board {board} with {acl}" : "Jūs pradėjote bendrinti plokštę {board} su {acl}",
+ "{user} has shared the board {board} with {acl}" : "{user} pradėjo bendrinti plokštę {board} su {acl}",
+ "You have removed {acl} from the board {board}" : "Jūs pašalinote {acl} iš plokštės {board}",
+ "{user} has removed {acl} from the board {board}" : "{user} pašalino {acl} iš plokštės {board}",
+ "You have renamed the board {before} to {board}" : "Jūs pervadinote plokštę {before} į {board}",
+ "{user} has renamed the board {before} to {board}" : "{user} pervadino plokštę {before} į {board}",
+ "You have archived the board {board}" : "Jūs užarchyvavote plokštę {board}",
+ "{user} has archived the board {before}" : "{user} užarchyvavo plokštę {before}",
+ "You have unarchived the board {board}" : "Jūs išarchyvavote plokštę {board}",
+ "{user} has unarchived the board {before}" : "{user} išarchyvavo plokštę {before}",
+ "You have created a new stack {stack} on board {board}" : "Jūs plokštėje {board} sukūrėte naują dėklą {stack}",
+ "{user} has created a new stack {stack} on board {board}" : "{user} plokštėje {board} sukūrė naują dėklą {stack}",
+ "You have renamed stack {before} to {stack} on board {board}" : "Jūs plokštėje {board} pervadinote dėklą {before} į {stack}",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "{user} plokštėje {board} pervadino dėklą {before} į {stack}",
+ "You have deleted stack {stack} on board {board}" : "Jūs plokštėje {board} ištrynėte dėklą {stack}",
+ "{user} has deleted stack {stack} on board {board}" : "{user} plokštėje {board} ištrynė dėklą {stack}",
+ "You have created card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} sukūrėte kortelę {card}",
+ "{user} has created card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} sukūrė kortelę {card}",
+ "You have deleted card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} ištrynėte kortelę {card}",
+ "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} ištrynė kortelę {card} ",
+ "You have renamed the card {before} to {card}" : "Jūs pervadinote kortelę {before} į {card}",
+ "{user} has renamed the card {before} to {card}" : "{user} pervadino kortelę {before} į {card}",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} į kortelę {card} pridėjote aprašą",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} į kortelę {card} pridėjo aprašą",
+ "You have updated the description of card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} atnaujinote kortelės {card} aprašą",
+ "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} atnaujino kortelės {card} aprašą",
+ "You have archived card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} užarchyvavote kortelę {card}",
+ "{user} has archived card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} užarchyvavo kortelę {card}",
+ "You have unarchived card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} išarchyvavote kortelę {card}",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} išarchyvavo kortelę {card}",
+ "You have removed the due date of card {card}" : "Jūs pašalinote galutinį kortelės {card} terminą",
+ "{user} has removed the due date of card {card}" : "{user} pašalino galutinį kortelės {card} terminą",
+ "You have set the due date of card {card} to {after}" : "Jūs nustatėte galutinį kortelės {card} terminą į {after}",
+ "{user} has set the due date of card {card} to {after}" : "{user} nustatė galutinį kortelės {card} terminą į {after}",
+ "You have updated the due date of card {card} to {after}" : "Jūs atnaujinote galutinį kortelės {card} terminą į {after}",
+ "{user} has updated the due date of card {card} to {after}" : "{user} atnaujino galutinį kortelės {card} terminą į {after}",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} į kortelę {card} pridėjote žymę {label}",
+ "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} į kortelę {card} pridėjo žymę {label}",
+ "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} iš kortelės {card} pašalinote žymę {label}",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} iš kortelės {card} pašalino žymę {label}",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "Jūs plokštėje {board} prie kortelės {card} priskyrėte {assigneduser}",
+ "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} plokštėje {board} prie kortelės {card} priskyrė {assigneduser}",
+ "You have moved the card {card} from stack {stackBefore} to {stack}" : "Jūs perkėlėte kortelę {card} iš dėklo {stackBefore} į dėklą {stack}",
+ "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} perkėlė kortelę {card} iš dėklo {stackBefore} į dėklą {stack}",
+ "You have added the attachment {attachment} to card {card}" : "Jūs pridėjote priedą {attachment} į kortelę {card}",
+ "{user} has added the attachment {attachment} to card {card}" : "{user} pridėjo priedą {attachment} į kortelę {card}",
+ "You have updated the attachment {attachment} on card {card}" : "Jūs atnaujinote priedą {attachment} kortelėje {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} atnaujino priedą {attachment} kortelėje {card}",
+ "You have deleted the attachment {attachment} from card {card}" : "Jūs ištrynėte priedą {attachment} iš kortelės {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} ištrynė priedą {attachment} iš kortelės {card}",
+ "You have restored the attachment {attachment} to card {card}" : "Jūs atkūrėte priedą {attachment} į kortelę {card}",
+ "{user} has restored the attachment {attachment} to card {card}" : "{user} atkūrė priedą {attachment} į kortelę {card}",
+ "You have commented on card {card}" : "Jūs pakomentavote kortelėje {card}",
+ "{user} has commented on card {card}" : "{user} pakomentavo kortelėje {card}",
+ "Deck" : "Darbai",
+ "A comment was created on a card" : "Kortelėje buvo sukurtas comment",
+ "Personal" : "Asmeniniai",
+ "{user} has mentioned you in a comment on \"%s\"." : "{user} paminėjo jus komentare ties \"%s\".",
+ "{user} has shared the board %s with you." : "{user} pradėjo su jumis bendrinti plokštę %s.",
"No data was provided to create an attachment." : "Priedo sukūrimui nebuvo pateikta jokių duomenų.",
"Finished" : "Baigta",
- "To review" : "Peržiūrėti",
+ "To review" : "Reikia peržiūrėti",
"Action needed" : "Reikalingas veiksmas",
"Later" : "Vėliau",
+ "To do" : "Reikia atlikti",
+ "Doing" : "Atliekama",
"Done" : "Atlikta",
"Example Task 3" : "Pavyzdinė užduotis 3",
"Example Task 2" : "Pavyzdinė užduotis 2",
@@ -26,52 +95,72 @@ OC.L10N.register(
"Missing a temporary folder" : "Trūksta laikinojo aplanko",
"Could not write file to disk" : "Nepavyko įrašyti failą į diską",
"A PHP extension stopped the file upload" : "PHP plėtinys sustabdė failo įkėlimą",
- "Add a new stack" : "Pridėti naują skiltį",
+ "No file uploaded or file size exceeds maximum of %s" : "Neįkeltas joks failas arba failo dydis viršija maksimalų %s dydį",
+ "Add a new stack" : "Pridėti naują dėklą",
"Submit" : "Pateikti",
- "Show archived cards" : "Rodyti archyvuotus elementus",
- "Hide archived cards" : "Paslėpti archyvuotus elementus",
- "All Boards" : "Visi užduočių sąrašai",
- "Archived boards" : "Archyvuoti sąrašai",
+ "Show archived cards" : "Rodyti archyvuotas korteles",
+ "Hide archived cards" : "Slėpti archyvuotas korteles",
+ "Toggle compact mode" : "Perjungti kompaktišką veikseną",
+ "Show board details" : "Rodyti išsamesnę plokštės informaciją",
+ "All Boards" : "Visos plokštės",
+ "Archived boards" : "Archyvuotos plokštės",
+ "Share board" : "Bendrinti plokštę",
+ "Archived cards" : "Archyvuotos kortelės",
"Actions" : "Veiksmai",
"Drop your files here to upload it to the card" : "Vilkite savo failus čia, norėdami įkelti juos į kortelę",
- "Enter a card title" : "Įveskite kortelės vardą",
+ "Assign card to me" : "Priskirti kortelę sau",
+ "Archive card" : "Archyvuoti kortelę",
+ "Unarchive card" : "Išarchyvuoti kortelę",
+ "Delete card" : "Ištrinti kortelę",
+ "Enter a card title" : "Įveskite kortelės pavadinimą",
"Add card" : "Pridėti kortelę",
"Close" : "Užverti",
"Sharing" : "Bendrinimas",
"Tags" : "Žymės",
"Deleted items" : "Ištrinti elementai",
- "Select users or groups to share with" : "Pasirinkti naudotojus ar naudotojų grupes bendrinimui",
+ "Select users or groups to share with" : "Pasirinkti naudotojus ar grupes su kuriomis bendrinti",
"Group" : "Grupė",
"Circle" : "Ratas",
"No matching user or group found." : "Nerasta vartotojų ir grupių",
"Loading" : "Įkeliama",
"Edit" : "Taisyti",
- "Share" : "Dalintis",
+ "Share" : "Bendrinti",
"Manage" : "Tvarkyti",
- "Sharing has been disabled for your account." : "Bendrinimas jūsų paskyrai yra išjungtas.",
+ "Sharing has been disabled for your account." : "Bendrinimas yra išjungtas jūsų paskyrai.",
"Update tag" : "Atnaujinti žymę",
"Edit tag" : "Taisyti žymę",
"Delete tag" : "Ištrinti žymę",
"Create" : "Sukurti",
"Create a new tag" : "Sukurti naują žymę",
+ "Deleted stacks" : "Ištrinti dėklai",
+ "Deleted cards" : "Ištrintos kortelės",
"Status" : "Būsena",
"Title" : "Pavadinimas",
"Members" : "Nariai",
"More actions" : "Daugiau veiksmų",
- "Edit board" : "Taisyti sąrašą",
- "Archive board" : "Archyvuoti sąrašą",
- "Unarchive board" : "Išskleisti sąrašą",
- "Delete board" : "Pašalinti sąrašą",
- "Create new board" : "Sukurti naują sąrašą",
- "New board title" : "Naujas sąrašo vardas",
- "Cancel upload" : "Atšaukti įkėlimą",
- "by" : " ",
+ "Edit board" : "Taisyti plokštę",
+ "Archive board" : "Archyvuoti plokštę",
+ "Unarchive board" : "Išarchyvuoti plokštę",
+ "Delete board" : "Ištrinti plokštę",
+ "Update board" : "Atnaujinti plokštę",
+ "Reset board" : "Atstatyti plokštę",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Atšaukti plokštės ištrynimą - Priešingu atveju, plokštė bus ištrinta kitos cron užduoties vykdymo metu.",
+ "Create new board" : "Sukurti naują plokštę",
+ "New board title" : "Naujos plokštės pavadinimas",
+ "Create board" : "Sukurti plokštę",
+ "Cancel upload" : "Atsisakyti įkėlimo",
+ "by" : "pagal",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Atšaukti failo ištrynimą - Priešingu atveju, failas bus ištrintas kitos cron užduoties vykdymo metu.",
"Undo file deletion" : "Atšaukti failo ištrynimą",
"Insert the file into the description" : "Įterpti failą į aprašą",
+ "Delete attachment" : "Ištrinti priedą",
"Modified:" : "Keitimo laikas:",
"Created:" : "Sukūrimo laikas:",
+ "Choose a tag" : "Pasirinkite žymę",
"Add a tag" : "Pridėti žymę",
+ "Select tags" : "Pasirinkti žymes",
"Assign users" : "Priskirti naudotojus",
+ "Choose a user to assign" : "Pasirinkite naudotoją, kuriam priskirti",
"Assign this card to a user" : "Priskirti šią kortelę naudotojui",
"Due date" : "Terminas",
"Click to set" : "Spustelėkite pakeitimams atlikti",
@@ -84,9 +173,9 @@ OC.L10N.register(
"Formatting help" : "Formatavimo pagalba",
"Upload attachment" : "Įkelti priedą",
"Add a card description…" : "Pridėti elemento apibūdinimą...",
- "Shared boards" : "Bendrinami sąrašai",
- "Move board to archive" : "Perkelti sąrašą į archyvą",
- "Create a new board" : "Sukurti naują sąrašą",
+ "Shared boards" : "Bendrinamos plokštės",
+ "Move board to archive" : "Perkelti plokštę į archyvą",
+ "Create a new board" : "Sukurti naują plokštę",
"Settings" : "Nustatymai"
},
"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);");
diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json
index 7ddadd5da..eaeb38736 100644
--- a/l10n/lt_LT.json
+++ b/l10n/lt_LT.json
@@ -2,16 +2,85 @@
"Please provide a content for your comment." : "Pateikite savo komentaro turinį.",
"Posting the comment failed." : "Komentaro paskelbimas patyrė nesėkmę.",
"The comment has been deleted" : "Komentaras ištrintas",
+ "Restore associated stack" : "Atkurti susietą dėklą",
"Remove user from card" : "Šalinti naudotoją iš kortelės",
"Hours" : "Valandos",
"Minutes" : "Minutės",
+ "Link to a board" : "Susieti su plokšte",
+ "Maximum file size of {size} exceeded" : "Viršytas maksimalus {size} failo dydis",
"File already exists" : "Failas jau yra",
- "Deck" : "Užduočių saugykla",
+ "You have created a new board {board}" : "Jūs sukūrėte naują plokštę {board}",
+ "{user} has created a new board {board}" : "{user} sukūrė naują plokštę {board}",
+ "You have deleted the board {board}" : "Jūs ištrynėte plokštę {board}",
+ "{user} has deleted the board {board}" : "{user} ištrynė plokštę {board}",
+ "You have restored the board {board}" : "Jūs atkūrėte plokštę {board}",
+ "{user} has restored the board {board}" : "{user} atkūrė plokštę {board}",
+ "You have shared the board {board} with {acl}" : "Jūs pradėjote bendrinti plokštę {board} su {acl}",
+ "{user} has shared the board {board} with {acl}" : "{user} pradėjo bendrinti plokštę {board} su {acl}",
+ "You have removed {acl} from the board {board}" : "Jūs pašalinote {acl} iš plokštės {board}",
+ "{user} has removed {acl} from the board {board}" : "{user} pašalino {acl} iš plokštės {board}",
+ "You have renamed the board {before} to {board}" : "Jūs pervadinote plokštę {before} į {board}",
+ "{user} has renamed the board {before} to {board}" : "{user} pervadino plokštę {before} į {board}",
+ "You have archived the board {board}" : "Jūs užarchyvavote plokštę {board}",
+ "{user} has archived the board {before}" : "{user} užarchyvavo plokštę {before}",
+ "You have unarchived the board {board}" : "Jūs išarchyvavote plokštę {board}",
+ "{user} has unarchived the board {before}" : "{user} išarchyvavo plokštę {before}",
+ "You have created a new stack {stack} on board {board}" : "Jūs plokštėje {board} sukūrėte naują dėklą {stack}",
+ "{user} has created a new stack {stack} on board {board}" : "{user} plokštėje {board} sukūrė naują dėklą {stack}",
+ "You have renamed stack {before} to {stack} on board {board}" : "Jūs plokštėje {board} pervadinote dėklą {before} į {stack}",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "{user} plokštėje {board} pervadino dėklą {before} į {stack}",
+ "You have deleted stack {stack} on board {board}" : "Jūs plokštėje {board} ištrynėte dėklą {stack}",
+ "{user} has deleted stack {stack} on board {board}" : "{user} plokštėje {board} ištrynė dėklą {stack}",
+ "You have created card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} sukūrėte kortelę {card}",
+ "{user} has created card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} sukūrė kortelę {card}",
+ "You have deleted card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} ištrynėte kortelę {card}",
+ "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} ištrynė kortelę {card} ",
+ "You have renamed the card {before} to {card}" : "Jūs pervadinote kortelę {before} į {card}",
+ "{user} has renamed the card {before} to {card}" : "{user} pervadino kortelę {before} į {card}",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} į kortelę {card} pridėjote aprašą",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} į kortelę {card} pridėjo aprašą",
+ "You have updated the description of card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} atnaujinote kortelės {card} aprašą",
+ "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} atnaujino kortelės {card} aprašą",
+ "You have archived card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} užarchyvavote kortelę {card}",
+ "{user} has archived card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} užarchyvavo kortelę {card}",
+ "You have unarchived card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} išarchyvavote kortelę {card}",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} išarchyvavo kortelę {card}",
+ "You have removed the due date of card {card}" : "Jūs pašalinote galutinį kortelės {card} terminą",
+ "{user} has removed the due date of card {card}" : "{user} pašalino galutinį kortelės {card} terminą",
+ "You have set the due date of card {card} to {after}" : "Jūs nustatėte galutinį kortelės {card} terminą į {after}",
+ "{user} has set the due date of card {card} to {after}" : "{user} nustatė galutinį kortelės {card} terminą į {after}",
+ "You have updated the due date of card {card} to {after}" : "Jūs atnaujinote galutinį kortelės {card} terminą į {after}",
+ "{user} has updated the due date of card {card} to {after}" : "{user} atnaujino galutinį kortelės {card} terminą į {after}",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} į kortelę {card} pridėjote žymę {label}",
+ "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} į kortelę {card} pridėjo žymę {label}",
+ "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Jūs plokštėje {board}, dėkle {stack} iš kortelės {card} pašalinote žymę {label}",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} plokštėje {board}, dėkle {stack} iš kortelės {card} pašalino žymę {label}",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "Jūs plokštėje {board} prie kortelės {card} priskyrėte {assigneduser}",
+ "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} plokštėje {board} prie kortelės {card} priskyrė {assigneduser}",
+ "You have moved the card {card} from stack {stackBefore} to {stack}" : "Jūs perkėlėte kortelę {card} iš dėklo {stackBefore} į dėklą {stack}",
+ "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} perkėlė kortelę {card} iš dėklo {stackBefore} į dėklą {stack}",
+ "You have added the attachment {attachment} to card {card}" : "Jūs pridėjote priedą {attachment} į kortelę {card}",
+ "{user} has added the attachment {attachment} to card {card}" : "{user} pridėjo priedą {attachment} į kortelę {card}",
+ "You have updated the attachment {attachment} on card {card}" : "Jūs atnaujinote priedą {attachment} kortelėje {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} atnaujino priedą {attachment} kortelėje {card}",
+ "You have deleted the attachment {attachment} from card {card}" : "Jūs ištrynėte priedą {attachment} iš kortelės {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} ištrynė priedą {attachment} iš kortelės {card}",
+ "You have restored the attachment {attachment} to card {card}" : "Jūs atkūrėte priedą {attachment} į kortelę {card}",
+ "{user} has restored the attachment {attachment} to card {card}" : "{user} atkūrė priedą {attachment} į kortelę {card}",
+ "You have commented on card {card}" : "Jūs pakomentavote kortelėje {card}",
+ "{user} has commented on card {card}" : "{user} pakomentavo kortelėje {card}",
+ "Deck" : "Darbai",
+ "A comment was created on a card" : "Kortelėje buvo sukurtas comment",
+ "Personal" : "Asmeniniai",
+ "{user} has mentioned you in a comment on \"%s\"." : "{user} paminėjo jus komentare ties \"%s\".",
+ "{user} has shared the board %s with you." : "{user} pradėjo su jumis bendrinti plokštę %s.",
"No data was provided to create an attachment." : "Priedo sukūrimui nebuvo pateikta jokių duomenų.",
"Finished" : "Baigta",
- "To review" : "Peržiūrėti",
+ "To review" : "Reikia peržiūrėti",
"Action needed" : "Reikalingas veiksmas",
"Later" : "Vėliau",
+ "To do" : "Reikia atlikti",
+ "Doing" : "Atliekama",
"Done" : "Atlikta",
"Example Task 3" : "Pavyzdinė užduotis 3",
"Example Task 2" : "Pavyzdinė užduotis 2",
@@ -24,52 +93,72 @@
"Missing a temporary folder" : "Trūksta laikinojo aplanko",
"Could not write file to disk" : "Nepavyko įrašyti failą į diską",
"A PHP extension stopped the file upload" : "PHP plėtinys sustabdė failo įkėlimą",
- "Add a new stack" : "Pridėti naują skiltį",
+ "No file uploaded or file size exceeds maximum of %s" : "Neįkeltas joks failas arba failo dydis viršija maksimalų %s dydį",
+ "Add a new stack" : "Pridėti naują dėklą",
"Submit" : "Pateikti",
- "Show archived cards" : "Rodyti archyvuotus elementus",
- "Hide archived cards" : "Paslėpti archyvuotus elementus",
- "All Boards" : "Visi užduočių sąrašai",
- "Archived boards" : "Archyvuoti sąrašai",
+ "Show archived cards" : "Rodyti archyvuotas korteles",
+ "Hide archived cards" : "Slėpti archyvuotas korteles",
+ "Toggle compact mode" : "Perjungti kompaktišką veikseną",
+ "Show board details" : "Rodyti išsamesnę plokštės informaciją",
+ "All Boards" : "Visos plokštės",
+ "Archived boards" : "Archyvuotos plokštės",
+ "Share board" : "Bendrinti plokštę",
+ "Archived cards" : "Archyvuotos kortelės",
"Actions" : "Veiksmai",
"Drop your files here to upload it to the card" : "Vilkite savo failus čia, norėdami įkelti juos į kortelę",
- "Enter a card title" : "Įveskite kortelės vardą",
+ "Assign card to me" : "Priskirti kortelę sau",
+ "Archive card" : "Archyvuoti kortelę",
+ "Unarchive card" : "Išarchyvuoti kortelę",
+ "Delete card" : "Ištrinti kortelę",
+ "Enter a card title" : "Įveskite kortelės pavadinimą",
"Add card" : "Pridėti kortelę",
"Close" : "Užverti",
"Sharing" : "Bendrinimas",
"Tags" : "Žymės",
"Deleted items" : "Ištrinti elementai",
- "Select users or groups to share with" : "Pasirinkti naudotojus ar naudotojų grupes bendrinimui",
+ "Select users or groups to share with" : "Pasirinkti naudotojus ar grupes su kuriomis bendrinti",
"Group" : "Grupė",
"Circle" : "Ratas",
"No matching user or group found." : "Nerasta vartotojų ir grupių",
"Loading" : "Įkeliama",
"Edit" : "Taisyti",
- "Share" : "Dalintis",
+ "Share" : "Bendrinti",
"Manage" : "Tvarkyti",
- "Sharing has been disabled for your account." : "Bendrinimas jūsų paskyrai yra išjungtas.",
+ "Sharing has been disabled for your account." : "Bendrinimas yra išjungtas jūsų paskyrai.",
"Update tag" : "Atnaujinti žymę",
"Edit tag" : "Taisyti žymę",
"Delete tag" : "Ištrinti žymę",
"Create" : "Sukurti",
"Create a new tag" : "Sukurti naują žymę",
+ "Deleted stacks" : "Ištrinti dėklai",
+ "Deleted cards" : "Ištrintos kortelės",
"Status" : "Būsena",
"Title" : "Pavadinimas",
"Members" : "Nariai",
"More actions" : "Daugiau veiksmų",
- "Edit board" : "Taisyti sąrašą",
- "Archive board" : "Archyvuoti sąrašą",
- "Unarchive board" : "Išskleisti sąrašą",
- "Delete board" : "Pašalinti sąrašą",
- "Create new board" : "Sukurti naują sąrašą",
- "New board title" : "Naujas sąrašo vardas",
- "Cancel upload" : "Atšaukti įkėlimą",
- "by" : " ",
+ "Edit board" : "Taisyti plokštę",
+ "Archive board" : "Archyvuoti plokštę",
+ "Unarchive board" : "Išarchyvuoti plokštę",
+ "Delete board" : "Ištrinti plokštę",
+ "Update board" : "Atnaujinti plokštę",
+ "Reset board" : "Atstatyti plokštę",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Atšaukti plokštės ištrynimą - Priešingu atveju, plokštė bus ištrinta kitos cron užduoties vykdymo metu.",
+ "Create new board" : "Sukurti naują plokštę",
+ "New board title" : "Naujos plokštės pavadinimas",
+ "Create board" : "Sukurti plokštę",
+ "Cancel upload" : "Atsisakyti įkėlimo",
+ "by" : "pagal",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Atšaukti failo ištrynimą - Priešingu atveju, failas bus ištrintas kitos cron užduoties vykdymo metu.",
"Undo file deletion" : "Atšaukti failo ištrynimą",
"Insert the file into the description" : "Įterpti failą į aprašą",
+ "Delete attachment" : "Ištrinti priedą",
"Modified:" : "Keitimo laikas:",
"Created:" : "Sukūrimo laikas:",
+ "Choose a tag" : "Pasirinkite žymę",
"Add a tag" : "Pridėti žymę",
+ "Select tags" : "Pasirinkti žymes",
"Assign users" : "Priskirti naudotojus",
+ "Choose a user to assign" : "Pasirinkite naudotoją, kuriam priskirti",
"Assign this card to a user" : "Priskirti šią kortelę naudotojui",
"Due date" : "Terminas",
"Click to set" : "Spustelėkite pakeitimams atlikti",
@@ -82,9 +171,9 @@
"Formatting help" : "Formatavimo pagalba",
"Upload attachment" : "Įkelti priedą",
"Add a card description…" : "Pridėti elemento apibūdinimą...",
- "Shared boards" : "Bendrinami sąrašai",
- "Move board to archive" : "Perkelti sąrašą į archyvą",
- "Create a new board" : "Sukurti naują sąrašą",
+ "Shared boards" : "Bendrinamos plokštės",
+ "Move board to archive" : "Perkelti plokštę į archyvą",
+ "Create a new board" : "Sukurti naują plokštę",
"Settings" : "Nustatymai"
},"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"
}
\ No newline at end of file
diff --git a/l10n/lv.js b/l10n/lv.js
index 70d277858..2cf56d23b 100644
--- a/l10n/lv.js
+++ b/l10n/lv.js
@@ -10,6 +10,7 @@ OC.L10N.register(
"Hide archived cards" : "Slēpt arhivētās kartes",
"Enter a card title" : "Ievadiet kartes nosaukumu",
"Sharing" : "Koplietošana",
+ "Tags" : "Birkas",
"Select users or groups to share with" : "Atlasiet lietotājus vai grupas ar kuriem koplietot",
"Edit" : "Rediģēt",
"Share" : "Koplietot",
@@ -17,6 +18,7 @@ OC.L10N.register(
"Members" : "Biedri",
"Modified:" : "Modificēta:",
"Created:" : "Izveidota:",
+ "Select tags" : "Izvēlies birkas",
"Saved" : "Saglabāts"
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);");
diff --git a/l10n/lv.json b/l10n/lv.json
index 5058a47df..ad25748d4 100644
--- a/l10n/lv.json
+++ b/l10n/lv.json
@@ -8,6 +8,7 @@
"Hide archived cards" : "Slēpt arhivētās kartes",
"Enter a card title" : "Ievadiet kartes nosaukumu",
"Sharing" : "Koplietošana",
+ "Tags" : "Birkas",
"Select users or groups to share with" : "Atlasiet lietotājus vai grupas ar kuriem koplietot",
"Edit" : "Rediģēt",
"Share" : "Koplietot",
@@ -15,6 +16,7 @@
"Members" : "Biedri",
"Modified:" : "Modificēta:",
"Created:" : "Izveidota:",
+ "Select tags" : "Izvēlies birkas",
"Saved" : "Saglabāts"
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"
}
\ No newline at end of file
diff --git a/l10n/nb.js b/l10n/nb.js
index d448a610f..653bb7378 100644
--- a/l10n/nb.js
+++ b/l10n/nb.js
@@ -65,9 +65,7 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Du har lagt til vedlegget {attachment} ti kortet {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} har lagt til vedlegget {attachment} på kortet {card}",
"You have updated the attachment {attachment} on card {card}" : "Du har oppdatert vedlegget {attachment} på kortet {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} har oppdatert vedlegget {attachment} på kortet {card}",
"You have deleted the attachment {attachment} from card {card}" : "Du har slettet vedlegget {attachment} på kortet {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} har slettet vedlegget {attachment} på kortet {card}",
"You have restored the attachment {attachment} to card {card}" : "Du har gjennopprettet vedlegget {attachment} på kortet {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} har gjennopprettet vedlegget {attachment} på kortet {card}",
"You have commented on card {card}" : "Du har kommetnert på kort {card}",
diff --git a/l10n/nb.json b/l10n/nb.json
index 06be81f0c..7704528ae 100644
--- a/l10n/nb.json
+++ b/l10n/nb.json
@@ -63,9 +63,7 @@
"You have added the attachment {attachment} to card {card}" : "Du har lagt til vedlegget {attachment} ti kortet {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} har lagt til vedlegget {attachment} på kortet {card}",
"You have updated the attachment {attachment} on card {card}" : "Du har oppdatert vedlegget {attachment} på kortet {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} har oppdatert vedlegget {attachment} på kortet {card}",
"You have deleted the attachment {attachment} from card {card}" : "Du har slettet vedlegget {attachment} på kortet {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} har slettet vedlegget {attachment} på kortet {card}",
"You have restored the attachment {attachment} to card {card}" : "Du har gjennopprettet vedlegget {attachment} på kortet {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} har gjennopprettet vedlegget {attachment} på kortet {card}",
"You have commented on card {card}" : "Du har kommetnert på kort {card}",
diff --git a/l10n/nl.js b/l10n/nl.js
index 6788ea873..a65d08ab1 100644
--- a/l10n/nl.js
+++ b/l10n/nl.js
@@ -67,9 +67,7 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Je voegde bijlage {attachment} toe aan kaart {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} voegde bijlage {attachment} toe aan kaart {card}",
"You have updated the attachment {attachment} on card {card}" : "Je werkte bijlage {attachment} bij op kaart {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} werkte bijlage {attachment} bij op kaart {card}",
"You have deleted the attachment {attachment} from card {card}" : "Je verwijderde bijlage {attachment} van kaart {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} verwijderde bijlage {attachment} van kaart {card}",
"You have restored the attachment {attachment} to card {card}" : "Je herstelde bijlage {attachment} bij kaart {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} herstelde bijlage {attachment} bij kaart {card}",
"You have commented on card {card}" : "Je hebt gereageerd op kaart {card}",
diff --git a/l10n/nl.json b/l10n/nl.json
index 7199627fa..f8c5b2f8c 100644
--- a/l10n/nl.json
+++ b/l10n/nl.json
@@ -65,9 +65,7 @@
"You have added the attachment {attachment} to card {card}" : "Je voegde bijlage {attachment} toe aan kaart {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} voegde bijlage {attachment} toe aan kaart {card}",
"You have updated the attachment {attachment} on card {card}" : "Je werkte bijlage {attachment} bij op kaart {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} werkte bijlage {attachment} bij op kaart {card}",
"You have deleted the attachment {attachment} from card {card}" : "Je verwijderde bijlage {attachment} van kaart {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} verwijderde bijlage {attachment} van kaart {card}",
"You have restored the attachment {attachment} to card {card}" : "Je herstelde bijlage {attachment} bij kaart {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} herstelde bijlage {attachment} bij kaart {card}",
"You have commented on card {card}" : "Je hebt gereageerd op kaart {card}",
diff --git a/l10n/pl.js b/l10n/pl.js
index 8e26d6815..2fad0fa2a 100644
--- a/l10n/pl.js
+++ b/l10n/pl.js
@@ -67,9 +67,9 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Dodałeś/-aś załącznik {attachment} do karty {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} dodał załącznik {attachment} do karty {card}",
"You have updated the attachment {attachment} on card {card}" : "Zaktualizowałeś/-aś załącznik {attachment} na karcie {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} zaktualizował załącznik {attachment} na karcie {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} zaktualizował załącznik {attachment} na karcie {card}",
"You have deleted the attachment {attachment} from card {card}" : "Usunąłeś/-aś załącznik {attachment} z karty {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} usunął załącznik {attachment} z karty {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} usunął załącznik {attachment} z karty {card}",
"You have restored the attachment {attachment} to card {card}" : "Przywróciłeś/-aś załącznik {attachment} na kartę {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} przywrócił załącznik {attachment} na kartę {card}",
"You have commented on card {card}" : "Skomentowałeś/-aś kartę {card}",
@@ -183,7 +183,7 @@ OC.L10N.register(
"Choose a user to assign" : "Wybierz użytkownika, który chcesz przypisać",
"Assign this card to a user" : "Przydziel tę kartę użytkownikowi",
"Due date" : "Data realizacji",
- "Click to set" : "Kliknij by ustawić",
+ "Click to set" : "Kliknij, aby ustawić",
"Remove due date" : "Usuń datę realizacji",
"Description" : "Opis",
"Attachments" : "Załączniki",
diff --git a/l10n/pl.json b/l10n/pl.json
index 35f0c50d6..be462e1e6 100644
--- a/l10n/pl.json
+++ b/l10n/pl.json
@@ -65,9 +65,9 @@
"You have added the attachment {attachment} to card {card}" : "Dodałeś/-aś załącznik {attachment} do karty {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} dodał załącznik {attachment} do karty {card}",
"You have updated the attachment {attachment} on card {card}" : "Zaktualizowałeś/-aś załącznik {attachment} na karcie {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} zaktualizował załącznik {attachment} na karcie {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} zaktualizował załącznik {attachment} na karcie {card}",
"You have deleted the attachment {attachment} from card {card}" : "Usunąłeś/-aś załącznik {attachment} z karty {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} usunął załącznik {attachment} z karty {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} usunął załącznik {attachment} z karty {card}",
"You have restored the attachment {attachment} to card {card}" : "Przywróciłeś/-aś załącznik {attachment} na kartę {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} przywrócił załącznik {attachment} na kartę {card}",
"You have commented on card {card}" : "Skomentowałeś/-aś kartę {card}",
@@ -181,7 +181,7 @@
"Choose a user to assign" : "Wybierz użytkownika, który chcesz przypisać",
"Assign this card to a user" : "Przydziel tę kartę użytkownikowi",
"Due date" : "Data realizacji",
- "Click to set" : "Kliknij by ustawić",
+ "Click to set" : "Kliknij, aby ustawić",
"Remove due date" : "Usuń datę realizacji",
"Description" : "Opis",
"Attachments" : "Załączniki",
diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js
index cfea663a4..d323e1362 100644
--- a/l10n/pt_BR.js
+++ b/l10n/pt_BR.js
@@ -67,9 +67,9 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Você adicionou o anexo {attachment} no cartão {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} adicionou um anexo {attachment} ao cartão {card}",
"You have updated the attachment {attachment} on card {card}" : "Você atualizou o anexo {attachment} do cartão {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} atualizou o anexo {attachment} do cartão {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} atualizou o anexo {attachment} no cartão {card}",
"You have deleted the attachment {attachment} from card {card}" : "Você excluiu o anexo {attachment} do cartão {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} excluiu o anexo {attachment} do cartão {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} excluiu o anexo {attachment} do cartão {card}",
"You have restored the attachment {attachment} to card {card}" : "Você restaurou o anexo {attachment} do cartão {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} do cartão {card}",
"You have commented on card {card}" : "Você comentou no cartão {card}",
diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json
index bbb3657bc..88de05d3a 100644
--- a/l10n/pt_BR.json
+++ b/l10n/pt_BR.json
@@ -65,9 +65,9 @@
"You have added the attachment {attachment} to card {card}" : "Você adicionou o anexo {attachment} no cartão {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} adicionou um anexo {attachment} ao cartão {card}",
"You have updated the attachment {attachment} on card {card}" : "Você atualizou o anexo {attachment} do cartão {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} atualizou o anexo {attachment} do cartão {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} atualizou o anexo {attachment} no cartão {card}",
"You have deleted the attachment {attachment} from card {card}" : "Você excluiu o anexo {attachment} do cartão {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} excluiu o anexo {attachment} do cartão {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} excluiu o anexo {attachment} do cartão {card}",
"You have restored the attachment {attachment} to card {card}" : "Você restaurou o anexo {attachment} do cartão {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} do cartão {card}",
"You have commented on card {card}" : "Você comentou no cartão {card}",
diff --git a/l10n/ru.js b/l10n/ru.js
index 977677aae..272a43e4a 100644
--- a/l10n/ru.js
+++ b/l10n/ru.js
@@ -13,13 +13,13 @@ OC.L10N.register(
"Maximum file size of {size} exceeded" : "Превышен максимально разрешённый размер файла в {size}",
"File already exists" : "Файл уже существует",
"You have created a new board {board}" : "Вы создали доску «{board}»",
- "{user} has created a new board {board}" : "{user} создал(а) рабочую доску «{board}»",
- "You have deleted the board {board}" : "Вы удалили рабочую доску «{board}»",
- "{user} has deleted the board {board}" : "{user} удалил(а) рабочую доску «{board}»",
- "You have restored the board {board}" : "Вы восстановили из корзины рабочую доску «{board}»",
- "{user} has restored the board {board}" : "{user} восстановил(а) рабочую доску «{board}» из корзины",
+ "{user} has created a new board {board}" : "{user} создал(а) доску «{board}»",
+ "You have deleted the board {board}" : "Вы удалили доску «{board}»",
+ "{user} has deleted the board {board}" : "{user} удалил(а) доску «{board}»",
+ "You have restored the board {board}" : "Вы восстановили из корзины доску «{board}»",
+ "{user} has restored the board {board}" : "{user} восстановил(а) доску «{board}» из корзины",
"You have shared the board {board} with {acl}" : "Вы предоставили {acl} доступ к рабочей доске «{board}»",
- "{user} has shared the board {board} with {acl}" : "{user} предоставил(а) {acl} доступ к рабочей доске «{board}»",
+ "{user} has shared the board {board} with {acl}" : "{user} предоставил(а) {acl} доступ к доске «{board}»",
"You have removed {acl} from the board {board}" : "Вы закрыли {acl} доступ к рабочей доске «{board}»",
"{user} has removed {acl} from the board {board}" : "{user} закрыл(а) {acl} доступ к рабочей доске «{board}»",
"You have renamed the board {before} to {board}" : "Вы переименовали рабочую доску из «{before}» в «{board}»",
@@ -29,10 +29,10 @@ OC.L10N.register(
"You have unarchived the board {board}" : "Вы восстановили доску «{board}» из архива",
"{user} has unarchived the board {before}" : "{user} восстановил(а) доску «{before}» из архива",
"You have created a new stack {stack} on board {board}" : "Вы создали стопку карточек «{stack}» на рабочей доске «{board}»",
- "{user} has created a new stack {stack} on board {board}" : "{user} создал(а) новую стопку карточек «{stack}» на рабочей доске «{board}»",
- "You have renamed stack {before} to {stack} on board {board}" : "Вы переименовали стопку карточек на рабочей доске «{board}» из «{before}» в «{stack}»",
- "{user} has renamed stack {before} to {stack} on board {board}" : "{user} переименовал(а) стопку карточек на рабочей доске «{board}» из «{before}» в «{stack}»",
- "You have deleted stack {stack} on board {board}" : "Вы удалили стопку карточек «{stack}» с рабочей доски «{board}»",
+ "{user} has created a new stack {stack} on board {board}" : "{user} создал(а) стопку карточек «{stack}» на доске «{board}»",
+ "You have renamed stack {before} to {stack} on board {board}" : "Вы переименовали стопку карточек на доске «{board}» из «{before}» в «{stack}»",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "{user} переименовал(а) стопку карточек на доске «{board}» из «{before}» в «{stack}»",
+ "You have deleted stack {stack} on board {board}" : "Вы удалили стопку карточек «{stack}» с доски «{board}»",
"{user} has deleted stack {stack} on board {board}" : "{user} удалил(а) стопку карточек «{stack}» с рабочей доски «{board}»",
"You have created card {card} in stack {stack} on board {board}" : "Вы создали карточку «{card}» в стопке «{stack}» на рабочей доске «{board}»",
"{user} has created card {card} in stack {stack} on board {board}" : "{user} создал(а) карточку «{card}» в стопке «{stack}» на рабочей доске «{board}»",
@@ -54,7 +54,7 @@ OC.L10N.register(
"{user} has set the due date of card {card} to {after}" : "{user} задал(а) срок исполнения по карточке «{card}» до {after}",
"You have updated the due date of card {card} to {after}" : "Вы изменили срок исполнения по карточке «{card}» до {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} изменил(а) срок исполнения по карточке «{card}» до {after}",
- "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Вы пометили карточку «{card}» в стопке «{stack}» на рабочей доске «{board}» меткой «{label}»",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Вы пометили карточку «{card}» в стопке «{stack}» на доске «{board}» меткой «{label}»",
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} пометил(а) карточку «{card}» в стопке «{stack}» на рабочей доске «{board}» меткой «{label}»",
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Вы убрали метку «{label}» с карточки «{card}» в стопке «{stack}» на рабочей доске «{board}»",
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} убрал(а) метку «{label}» с карточки «{card}» в стопке «{stack}» на рабочей доске «{board}»",
@@ -67,9 +67,7 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Вы добавили вложение «{attachment}» в карточку «{card}»",
"{user} has added the attachment {attachment} to card {card}" : "{user} добавил(а) вложение «{attachment}» в карточку «{card}»",
"You have updated the attachment {attachment} on card {card}" : "Вы изменили вложение «{attachment}» в карточке «{card}»",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} изменил(а) вложение «{attachment}» в карточке «{card}»",
"You have deleted the attachment {attachment} from card {card}" : "Вы удалили вложение «{attachment}» из карточки «{card}»",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} удалил(а) вложение «{attachment}» из карточки «{card}»",
"You have restored the attachment {attachment} to card {card}" : "Вы восстановили вложение «{attachment}» в карточке «{card}»",
"{user} has restored the attachment {attachment} to card {card}" : "{user} восстановил(а) из корзины файл «{attachment}» в карточке «{card}»",
"You have commented on card {card}" : "Вы добавили комментарий к карточке «{card}»",
@@ -91,9 +89,9 @@ OC.L10N.register(
"To review" : "Проверить",
"Action needed" : "Требуется действие",
"Later" : "Позже",
- "To do" : "Надо сделать",
+ "To do" : "Ожидающие выполнения",
"Doing" : "В работе",
- "Done" : "Готово",
+ "Done" : "Выполненные",
"Example Task 3" : "Пример задачи 3",
"Example Task 2" : "Пример задачи 2",
"Example Task 1" : "Пример задачи 1",
@@ -111,7 +109,7 @@ OC.L10N.register(
"Select the board to link to a project" : "Выберите рабочую доску, чтобы связать с проектом",
"Select board" : "Выбор рабочей доски",
"Add a new stack" : "Создать стопку карточек",
- "Submit" : "Отправить",
+ "Submit" : "Создать",
"Show archived cards" : "Показать архивные карточки",
"Hide archived cards" : "Скрыть архивные карточки",
"Toggle compact mode" : "Переключение в компактный режим и обратно",
diff --git a/l10n/ru.json b/l10n/ru.json
index 51c66ce9a..6b0343c81 100644
--- a/l10n/ru.json
+++ b/l10n/ru.json
@@ -11,13 +11,13 @@
"Maximum file size of {size} exceeded" : "Превышен максимально разрешённый размер файла в {size}",
"File already exists" : "Файл уже существует",
"You have created a new board {board}" : "Вы создали доску «{board}»",
- "{user} has created a new board {board}" : "{user} создал(а) рабочую доску «{board}»",
- "You have deleted the board {board}" : "Вы удалили рабочую доску «{board}»",
- "{user} has deleted the board {board}" : "{user} удалил(а) рабочую доску «{board}»",
- "You have restored the board {board}" : "Вы восстановили из корзины рабочую доску «{board}»",
- "{user} has restored the board {board}" : "{user} восстановил(а) рабочую доску «{board}» из корзины",
+ "{user} has created a new board {board}" : "{user} создал(а) доску «{board}»",
+ "You have deleted the board {board}" : "Вы удалили доску «{board}»",
+ "{user} has deleted the board {board}" : "{user} удалил(а) доску «{board}»",
+ "You have restored the board {board}" : "Вы восстановили из корзины доску «{board}»",
+ "{user} has restored the board {board}" : "{user} восстановил(а) доску «{board}» из корзины",
"You have shared the board {board} with {acl}" : "Вы предоставили {acl} доступ к рабочей доске «{board}»",
- "{user} has shared the board {board} with {acl}" : "{user} предоставил(а) {acl} доступ к рабочей доске «{board}»",
+ "{user} has shared the board {board} with {acl}" : "{user} предоставил(а) {acl} доступ к доске «{board}»",
"You have removed {acl} from the board {board}" : "Вы закрыли {acl} доступ к рабочей доске «{board}»",
"{user} has removed {acl} from the board {board}" : "{user} закрыл(а) {acl} доступ к рабочей доске «{board}»",
"You have renamed the board {before} to {board}" : "Вы переименовали рабочую доску из «{before}» в «{board}»",
@@ -27,10 +27,10 @@
"You have unarchived the board {board}" : "Вы восстановили доску «{board}» из архива",
"{user} has unarchived the board {before}" : "{user} восстановил(а) доску «{before}» из архива",
"You have created a new stack {stack} on board {board}" : "Вы создали стопку карточек «{stack}» на рабочей доске «{board}»",
- "{user} has created a new stack {stack} on board {board}" : "{user} создал(а) новую стопку карточек «{stack}» на рабочей доске «{board}»",
- "You have renamed stack {before} to {stack} on board {board}" : "Вы переименовали стопку карточек на рабочей доске «{board}» из «{before}» в «{stack}»",
- "{user} has renamed stack {before} to {stack} on board {board}" : "{user} переименовал(а) стопку карточек на рабочей доске «{board}» из «{before}» в «{stack}»",
- "You have deleted stack {stack} on board {board}" : "Вы удалили стопку карточек «{stack}» с рабочей доски «{board}»",
+ "{user} has created a new stack {stack} on board {board}" : "{user} создал(а) стопку карточек «{stack}» на доске «{board}»",
+ "You have renamed stack {before} to {stack} on board {board}" : "Вы переименовали стопку карточек на доске «{board}» из «{before}» в «{stack}»",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "{user} переименовал(а) стопку карточек на доске «{board}» из «{before}» в «{stack}»",
+ "You have deleted stack {stack} on board {board}" : "Вы удалили стопку карточек «{stack}» с доски «{board}»",
"{user} has deleted stack {stack} on board {board}" : "{user} удалил(а) стопку карточек «{stack}» с рабочей доски «{board}»",
"You have created card {card} in stack {stack} on board {board}" : "Вы создали карточку «{card}» в стопке «{stack}» на рабочей доске «{board}»",
"{user} has created card {card} in stack {stack} on board {board}" : "{user} создал(а) карточку «{card}» в стопке «{stack}» на рабочей доске «{board}»",
@@ -52,7 +52,7 @@
"{user} has set the due date of card {card} to {after}" : "{user} задал(а) срок исполнения по карточке «{card}» до {after}",
"You have updated the due date of card {card} to {after}" : "Вы изменили срок исполнения по карточке «{card}» до {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} изменил(а) срок исполнения по карточке «{card}» до {after}",
- "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Вы пометили карточку «{card}» в стопке «{stack}» на рабочей доске «{board}» меткой «{label}»",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Вы пометили карточку «{card}» в стопке «{stack}» на доске «{board}» меткой «{label}»",
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} пометил(а) карточку «{card}» в стопке «{stack}» на рабочей доске «{board}» меткой «{label}»",
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Вы убрали метку «{label}» с карточки «{card}» в стопке «{stack}» на рабочей доске «{board}»",
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} убрал(а) метку «{label}» с карточки «{card}» в стопке «{stack}» на рабочей доске «{board}»",
@@ -65,9 +65,7 @@
"You have added the attachment {attachment} to card {card}" : "Вы добавили вложение «{attachment}» в карточку «{card}»",
"{user} has added the attachment {attachment} to card {card}" : "{user} добавил(а) вложение «{attachment}» в карточку «{card}»",
"You have updated the attachment {attachment} on card {card}" : "Вы изменили вложение «{attachment}» в карточке «{card}»",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} изменил(а) вложение «{attachment}» в карточке «{card}»",
"You have deleted the attachment {attachment} from card {card}" : "Вы удалили вложение «{attachment}» из карточки «{card}»",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} удалил(а) вложение «{attachment}» из карточки «{card}»",
"You have restored the attachment {attachment} to card {card}" : "Вы восстановили вложение «{attachment}» в карточке «{card}»",
"{user} has restored the attachment {attachment} to card {card}" : "{user} восстановил(а) из корзины файл «{attachment}» в карточке «{card}»",
"You have commented on card {card}" : "Вы добавили комментарий к карточке «{card}»",
@@ -89,9 +87,9 @@
"To review" : "Проверить",
"Action needed" : "Требуется действие",
"Later" : "Позже",
- "To do" : "Надо сделать",
+ "To do" : "Ожидающие выполнения",
"Doing" : "В работе",
- "Done" : "Готово",
+ "Done" : "Выполненные",
"Example Task 3" : "Пример задачи 3",
"Example Task 2" : "Пример задачи 2",
"Example Task 1" : "Пример задачи 1",
@@ -109,7 +107,7 @@
"Select the board to link to a project" : "Выберите рабочую доску, чтобы связать с проектом",
"Select board" : "Выбор рабочей доски",
"Add a new stack" : "Создать стопку карточек",
- "Submit" : "Отправить",
+ "Submit" : "Создать",
"Show archived cards" : "Показать архивные карточки",
"Hide archived cards" : "Скрыть архивные карточки",
"Toggle compact mode" : "Переключение в компактный режим и обратно",
diff --git a/l10n/sk.js b/l10n/sk.js
index b5df8d59b..3f2d7df10 100644
--- a/l10n/sk.js
+++ b/l10n/sk.js
@@ -11,6 +11,7 @@ OC.L10N.register(
"Minutes" : "Minút",
"Link to a board" : "Odkaz na nástenku",
"Maximum file size of {size} exceeded" : "Bola prekročená maximálna veľkosť súboru {size}",
+ "File already exists" : "Súbor už existuje",
"You have created a new board {board}" : "Vytvorili ste nová nástenku {board}",
"{user} has created a new board {board}" : "Používateľ {user} vytvoril novú nástenku {board}",
"You have deleted the board {board}" : "Vymazali ste nástenku {board}",
@@ -18,6 +19,7 @@ OC.L10N.register(
"You have restored the board {board}" : "Obnovili ste nástenku {board}",
"{user} has restored the board {board}" : "Používateľ {user} obnovil nástenku {board}",
"You have shared the board {board} with {acl}" : "Sprístupnili ste nástenku {board} s {acl}",
+ "{user} has shared the board {board} with {acl}" : "Používateľ {user} sprístupnil nástenku {board} pre {acl}",
"You have removed {acl} from the board {board}" : "Odobrali ste {acl} z nástenky {board}",
"{user} has removed {acl} from the board {board}" : "Používateľ {user} odobral {acl} z nástenky {board}",
"You have renamed the board {before} to {board}" : "Premenovali ste nástenku {before} na {board}",
@@ -65,9 +67,7 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Pridali ste prílohu {attachment} ku karte {card}",
"{user} has added the attachment {attachment} to card {card}" : "Používateľ {user} pridal prílohu {attachment} ku karte {card}",
"You have updated the attachment {attachment} on card {card}" : "Aktualizovali ste prílohu {attachment} na karte {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "Používateľ {user} aktualizoval prílohu {attachment} ku karte {card}",
"You have deleted the attachment {attachment} from card {card}" : "Vymazali ste prílohu {attachment} na karte {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "Používateľ {user} vymazal prílohu {attachment} z karty {card}",
"You have restored the attachment {attachment} to card {card}" : "Obnovili ste prílohu {attachment} na karte {card}",
"{user} has restored the attachment {attachment} to card {card}" : "Používateľ {user} obnovil prílohu {attachment} na karte {card}",
"You have commented on card {card}" : "Komentovali ste kartu {card}",
@@ -75,6 +75,7 @@ OC.L10N.register(
"A card description inside the Deck app has been changed" : "V apke Nástenka sa zmenil Popis karty",
"Deck" : "Nástenka",
"Changes in the Deck app" : "Zmeny v apke Nástenka",
+ "A comment was created on a card" : "Na karte bol vytvorený komentár. ",
"Personal" : "Osobné",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Používateľ %s vám priradil kartu „%s“ na „%s“.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Používateľ {user} vám priradil kartu „%s“ na „%s“.",
diff --git a/l10n/sk.json b/l10n/sk.json
index 1130cbd44..6e3341af0 100644
--- a/l10n/sk.json
+++ b/l10n/sk.json
@@ -9,6 +9,7 @@
"Minutes" : "Minút",
"Link to a board" : "Odkaz na nástenku",
"Maximum file size of {size} exceeded" : "Bola prekročená maximálna veľkosť súboru {size}",
+ "File already exists" : "Súbor už existuje",
"You have created a new board {board}" : "Vytvorili ste nová nástenku {board}",
"{user} has created a new board {board}" : "Používateľ {user} vytvoril novú nástenku {board}",
"You have deleted the board {board}" : "Vymazali ste nástenku {board}",
@@ -16,6 +17,7 @@
"You have restored the board {board}" : "Obnovili ste nástenku {board}",
"{user} has restored the board {board}" : "Používateľ {user} obnovil nástenku {board}",
"You have shared the board {board} with {acl}" : "Sprístupnili ste nástenku {board} s {acl}",
+ "{user} has shared the board {board} with {acl}" : "Používateľ {user} sprístupnil nástenku {board} pre {acl}",
"You have removed {acl} from the board {board}" : "Odobrali ste {acl} z nástenky {board}",
"{user} has removed {acl} from the board {board}" : "Používateľ {user} odobral {acl} z nástenky {board}",
"You have renamed the board {before} to {board}" : "Premenovali ste nástenku {before} na {board}",
@@ -63,9 +65,7 @@
"You have added the attachment {attachment} to card {card}" : "Pridali ste prílohu {attachment} ku karte {card}",
"{user} has added the attachment {attachment} to card {card}" : "Používateľ {user} pridal prílohu {attachment} ku karte {card}",
"You have updated the attachment {attachment} on card {card}" : "Aktualizovali ste prílohu {attachment} na karte {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "Používateľ {user} aktualizoval prílohu {attachment} ku karte {card}",
"You have deleted the attachment {attachment} from card {card}" : "Vymazali ste prílohu {attachment} na karte {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "Používateľ {user} vymazal prílohu {attachment} z karty {card}",
"You have restored the attachment {attachment} to card {card}" : "Obnovili ste prílohu {attachment} na karte {card}",
"{user} has restored the attachment {attachment} to card {card}" : "Používateľ {user} obnovil prílohu {attachment} na karte {card}",
"You have commented on card {card}" : "Komentovali ste kartu {card}",
@@ -73,6 +73,7 @@
"A card description inside the Deck app has been changed" : "V apke Nástenka sa zmenil Popis karty",
"Deck" : "Nástenka",
"Changes in the Deck app" : "Zmeny v apke Nástenka",
+ "A comment was created on a card" : "Na karte bol vytvorený komentár. ",
"Personal" : "Osobné",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Používateľ %s vám priradil kartu „%s“ na „%s“.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Používateľ {user} vám priradil kartu „%s“ na „%s“.",
diff --git a/l10n/sl.js b/l10n/sl.js
index 69b03e779..f223d4f8d 100644
--- a/l10n/sl.js
+++ b/l10n/sl.js
@@ -1,50 +1,194 @@
OC.L10N.register(
"deck",
{
- "Please provide a content for your comment." : "Priskrbite vsebino za svoj komentar.",
- "Hours" : "Ure",
+ "Please provide a content for your comment." : "Vpišite vsebino opombe.",
+ "Posting the comment failed." : "Objava opombe je spodletela.",
+ "The comment has been deleted" : "Opomba je bila izbrisana",
+ "The associated stack is deleted as well, it will be restored as well." : "Povezan paket nalog, ki je bil prav tako izbrisan, bo tudi obnovljen.",
+ "Restore associated stack" : "Obnovi povezan paket nalog",
+ "Remove user from card" : "Odstrani uporabnika z naloge",
+ "Hours" : "Ura",
"Minutes" : "Minute",
+ "Link to a board" : "Povezava do zbirke",
+ "Maximum file size of {size} exceeded" : "Omejitev velikosti datoteke {size} je prekoračena.",
+ "File already exists" : "Datoteka že obstaja",
+ "You have created a new board {board}" : "Ustvarite novo zbirko {board}",
+ "{user} has created a new board {board}" : "Uporabnik {user} ustvari novo zbirko {board}",
+ "You have deleted the board {board}" : "Izbrišete zbirko {board}",
+ "{user} has deleted the board {board}" : "Uporabnik {user} izbriše zbirko {board}",
+ "You have restored the board {board}" : "Obnovite izbrisano zbirko {board}",
+ "{user} has restored the board {board}" : "Uporabnik {user} obnovi izbrisano zbirko {board}",
+ "You have shared the board {board} with {acl}" : "Omogočite souporabo zbirke {board} z uporabnikom {acl}",
+ "{user} has shared the board {board} with {acl}" : "Uporabnik {user} omogoči souporabo zbirke {board} z uporabnikom {acl}",
+ "You have removed {acl} from the board {board}" : "Odstranite uporabnika {acl} z zbirke {board}",
+ "{user} has removed {acl} from the board {board}" : "Uporabnik {user} odstrani uporabnika {acl} z zbirke {board}",
+ "You have renamed the board {before} to {board}" : "Zbirko {before} preimenujete v {board}",
+ "{user} has renamed the board {before} to {board}" : "Uporabnik {user} preimenuje zbirko {before} v {board}",
+ "You have archived the board {board}" : "Arhivirate zbirko {board}",
+ "{user} has archived the board {before}" : "Uporabnik {user} arhivira zbirko {board}",
+ "You have unarchived the board {board}" : "Povrnete zbirko {board} iz arhiva",
+ "{user} has unarchived the board {before}" : "Uporabnik {user} povrne zbirko {board} iz arhiva",
+ "You have created a new stack {stack} on board {board}" : "Ustvarite nov paket nalog {stack} v zbirki {board}",
+ "{user} has created a new stack {stack} on board {board}" : "Uporabnik {user} ustvari nov paket nalog {stack} v zbirki {board}",
+ "You have renamed stack {before} to {stack} on board {board}" : "Paket nalog {before} v zbirki {board} preimenujete v {stack}",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "Uporabnik {user} preimenuje paket {before} v zbirki {board} v {stack}",
+ "You have deleted stack {stack} on board {board}" : "Izbrišete paket nalog {stack} v zbirki {board}",
+ "{user} has deleted stack {stack} on board {board}" : "Uporabnik {user} izbriše paket nalog {stack} v zbirki {board}",
+ "You have created card {card} in stack {stack} on board {board}" : "Ustvarite nalogo {card} v paketu {stack} zbirke {board}",
+ "{user} has created card {card} in stack {stack} on board {board}" : "Uporabnik {user} ustvari nalogo {card} v paketu {stack} zbirke {board}",
+ "You have deleted card {card} in stack {stack} on board {board}" : "Izbrišete nalogo {card} v paketu {stack} zbirke {board}",
+ "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} izbriše nalogo {card} v paketu {stack} zbirke {board}",
+ "You have renamed the card {before} to {card}" : "Preimenujete nalogo {before} v {card}",
+ "{user} has renamed the card {before} to {card}" : "{user} preimenuje nalogo {before} v {card}",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "Dodate opis k nalogi {card} paketa {stack} v zbirki {board}.",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} doda opis k nalogi {card} paketa {stack} v zbirki {board}.",
+ "You have updated the description of card {card} in stack {stack} on board {board}" : "Posodobite opis naloge {card} v paketu {stack} zbirke {board}",
+ "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} posodobi opis naloge {card} v paketu {stack} zbirke {board}",
+ "You have archived card {card} in stack {stack} on board {board}" : "Arhivirate nalogo {card} v paketu {stack} zbirke {board}",
+ "{user} has archived card {card} in stack {stack} on board {board}" : "{user} arhivira nalogo {card} v paketu {stack} zbirke {board}",
+ "You have unarchived card {card} in stack {stack} on board {board}" : "Iz arhiva povrnete nalogo {card} v paketu {stack} zbirke {board}",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} iz arhiva povrne nalogo {card} v paketu {stack} zbirke {board}",
+ "You have removed the due date of card {card}" : "Odstranite datum preteka z naloge {card}",
+ "{user} has removed the due date of card {card}" : "{user} odstrani datum preteka z naloge {card}",
+ "You have set the due date of card {card} to {after}" : "Nastavite datum preteka naloge {card} na {after}",
+ "{user} has set the due date of card {card} to {after}" : "{user} nastavi datum preteka naloge {card} na {after}",
+ "You have updated the due date of card {card} to {after}" : "Posodobite datum preteka naloge {card} na {after}",
+ "{user} has updated the due date of card {card} to {after}" : "{user} posodobi datum preteka naloge {card} na {after}",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodate oznako {label} k nalogi {card} paketa {stack} v zbirki {board}",
+ "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} doda oznako {label} k nalogi {card} paketa {stack} v zbirki {board}",
+ "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odstranite oznako {label} z naloge {card} paketa {stack} v zbirki {board}",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odstrani oznako {label} z naloge {card} paketa {stack} v zbirki {board}",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "Dodelite nalogo {card} v zbirki {board} → {assigneduser}",
+ "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} dodeli nalogo {card} v zbirki {board} → {assigneduser}",
+ "You have unassigned {assigneduser} from card {card} on board {board}" : "Odvzamete nalogo {card} v zbirki {board} ✕ {assigneduser}",
+ "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} odvzame nalogo {card} v zbirki {board} ✕ {assigneduser}",
+ "You have moved the card {card} from stack {stackBefore} to {stack}" : "Premaknete nalogo {card} iz paketa {stackBefore} v {stack}",
+ "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} premakne nalogo {card} iz paketa {stackBefore} v {stack}",
+ "You have added the attachment {attachment} to card {card}" : "Dodate prilogo {attachment} k nalogi {card}",
+ "{user} has added the attachment {attachment} to card {card}" : "{user} doda prilogo {attachment} k nalogi {card}",
+ "You have updated the attachment {attachment} on card {card}" : "Posodobite prilogo {attachment} v nalogi {card}",
+ "You have deleted the attachment {attachment} from card {card}" : "Izbišete prilogo {attachment} v nalogi {card}",
+ "You have restored the attachment {attachment} to card {card}" : "Obnovite prilogo {attachment} k nalogi {card}",
+ "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovi prilogo {attachment} naloge {card}",
+ "You have commented on card {card}" : "Vpišete opombo k nalogi {card}",
+ "{user} has commented on card {card}" : "Uporabnik {user} vpiše opombo k nalogi {card}",
+ "A card description inside the Deck app has been changed" : "Spremenjen jeopis ene izmed nalog v programu Deck",
+ "Deck" : "Deck",
+ "Changes in the Deck app" : "Spremembe v programu Deck",
+ "A comment was created on a card" : "Nalogi je dodana nova opomba",
"Personal" : "Osebno",
- "Finished" : "Zaključeno",
+ "{user} has shared the board %s with you." : "{user} vam omogoči souporabo zbirke %s.",
+ "No data was provided to create an attachment." : "Ni podanih podatkov za ustvarjanje priloge.",
+ "Finished" : "Končano",
"To review" : "Za pregled",
- "Action needed" : "Operacija je potrebna",
+ "Action needed" : "Čaka na odziv",
"Later" : "Kasneje",
- "Show archived cards" : "Prikaži arhivirane kartice",
- "Hide archived cards" : "Skrij arhivirane kartice",
- "All Boards" : "Vse table",
- "Archived boards" : "Arhivirane table",
- "Enter a card title" : "Vpiši naslov kartice",
+ "To do" : "Prihajajoče naloge",
+ "Doing" : "Naloge v teku",
+ "Done" : "Končane naloge",
+ "Example Task 3" : "Primer naloge 3",
+ "Example Task 2" : "Primer naloge 2",
+ "Example Task 1" : "Primer naloge 1",
+ "The file was uploaded" : "Datoteka je uspešno poslana.",
+ "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Poslana datoteka presega določilo največje dovoljene velikosti v datoteki php.ini",
+ "The file was only partially uploaded" : "Datoteka ni bila poslana v celoti",
+ "No file was uploaded" : "Datoteka ni bila poslana",
+ "Missing a temporary folder" : "Manjka začasna mapa",
+ "Could not write file to disk" : "Ni mogoče zapisati datoteke na disk",
+ "A PHP extension stopped the file upload" : "Razširitev PHP onemogoča pošiljanje datoteke",
+ "No file uploaded or file size exceeds maximum of %s" : "Ali ni poslane datoteke ali pa velikost datoteke presega omejitev %s",
+ "A kanban style project and personal management tool for Nextcloud" : "Orodje za projektno in osebno vodenje nalog v slogu kanban za okolje Nextcloud.",
+ "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" : "Program Deck je orodje za osebno načrtovanje in projektno delo v slogu kanban, ki se izvrstno vključuje v okolje Nextcloud.\n\nOrodje omogoča:\n- 📥 dodajanje in urejanje nalog\n- 📄 zapis dodatnih opomb v zapisu markdown\n- 🔖 dodeljevanje oznak za lažje urejanje in iskanje\n- 👥 souporabo v skupini, s prijatelji ali družino\n- 📎 pripenjanje in vstavljanje datotek v opise\n- 💬 opombe k posamezni nalogi\n- ⚡ sledenje spremembam in dejavnosti\n- 🚀 Organizaciji projekta",
+ "Select the board to link to a project" : "Izberite zbirko za povezavo s projektom",
+ "Select board" : "Izbor zbirke",
+ "Add a new stack" : "Dodaj nov paket nalog",
+ "Submit" : "Objavi",
+ "Show archived cards" : "Prikaži arhivirane naloge",
+ "Hide archived cards" : "Skrij arhivirane naloge",
+ "Toggle compact mode" : "Preklopi način prikaza",
+ "Show board details" : "Pokaži podrobnosti zbirke",
+ "All Boards" : "Vse zbirke",
+ "Archived boards" : "Arhivirane zbirke",
+ "Share board" : "Souporaba zbirke",
+ "Archived cards" : "Arhivirane naloge",
+ "Actions" : "Dejanja",
+ "Drop your files here to upload it to the card" : "Spustite datoteke na to mesto za dodajanje k nalogi",
+ "Assign card to me" : "Nalogo dodeli meni",
+ "Unassign card from me" : "Odstrani me z naloge",
+ "Archive card" : "Arhiviraj nalogo",
+ "Unarchive card" : "Povrni nalogo",
+ "Delete card" : "Izbriši nalogo",
+ "Enter a card title" : "Naslov naloge",
+ "Add card" : "Dodaj nalogo",
+ "Close" : "Zapri",
"Sharing" : "Souporaba",
"Tags" : "Oznake",
- "Select users or groups to share with" : "Izberi uporabnike ali skupine s katerimi želiš deliti",
- "No matching user or group found." : "Ne najdem ujemajočega uporabnika ali skupine.",
+ "Deleted items" : "Izbrisani predmeti",
+ "Timeline" : "Časovnica",
+ "Select users or groups to share with" : "Uporabniki in skupine za souporabo",
+ "Group" : "Skupina",
+ "Circle" : "Krog",
+ "No matching user or group found." : "Ni uporabnikov ali skupin s tem nazivom.",
+ "Loading" : "Poteka nalaganje ...",
"Edit" : "Uredi",
- "Share" : "Deli",
- "Manage" : "Upravljaj",
- "Discard share" : "Prekliči deljenje",
+ "Share" : "Souporaba",
+ "Manage" : "Upravljanje",
+ "Discard share" : "Prekliči souporabo",
+ "Sharing has been disabled for your account." : "Za ta račun je možnost dodeljevanja souporabe onemogočena.",
+ "Update tag" : "Posodobi oznako",
+ "Edit tag" : "Uredi oznako",
+ "Delete tag" : "Izbriši oznako",
+ "Create" : "Ustvari",
"Create a new tag" : "Ustvari novo oznako",
+ "Deleted stacks" : "Izbrisani paketi nalog",
+ "Deleted cards" : "Izbrisane naloge",
+ "Status" : "Stanje",
+ "No archived boards to display" : "Ni arhiviranih zbirk za prikaz",
+ "No shared boards to display" : "Ni zbirk v souporabi",
"Title" : "Naslov",
"Members" : "Člani",
- "More actions" : "Več akcij",
- "Edit board" : "Uredi tablo",
- "Archive board" : "Arhiviraj tablo",
- "Unarchive board" : "Odarhiviraj tablo",
- "Delete board" : "Izbriši tablo",
- "Create new board" : "Ustvari novo tablo",
- "New board title" : "Naslov nove table",
+ "More actions" : "Več možnosti",
+ "Edit board" : "Uredi zbirko",
+ "Archive board" : "Arhiviraj zbirko",
+ "Unarchive board" : "Povrni zbirko",
+ "Delete board" : "Izbriši zbirko",
+ "Update board" : "Posodobi zbirko",
+ "Reset board" : "Ponastavi zbirko",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Razveljavi brisanje zbirke – ta bo sicer izbrisana med naslednjo izvedbo opravila cronjob.",
+ "Create new board" : "Ustvari novo zbirko",
+ "New board title" : "Naslov nove zbirke",
+ "Create board" : "Ustvari zbirko",
+ "Select an attachment" : "Izbor priloge",
"Cancel upload" : "Prekliči pošiljanje",
"by" : "s strani",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Razveljavi brisanje datoteke – ta bo sicer izbrisana med naslednjo izvedbo opravila cronjob.",
+ "Undo file deletion" : "Razveljavi brisanje datoteke",
+ "Insert the file into the description" : "Vstavi datoteko v opis",
+ "Delete attachment" : "Izbriši prilogo",
"Modified:" : "Spremenjeno:",
"Created:" : "Ustvarjeno:",
- "Due date" : "Datum poteka",
- "Click to set" : "Klikni za nastaviti",
- "Remove due date" : "Odstrani datum poteka",
+ "Choose a tag" : "Izbor oznake",
+ "Add a tag" : "Dodaj oznako",
+ "Select tags" : "Izbor oznak",
+ "Assign users" : "Dodeli uporabnike",
+ "Choose a user to assign" : "Izbor uporabnika za nalogo",
+ "Assign this card to a user" : "Dodeli nalogo uporabniku",
+ "Due date" : "Datum preteka",
+ "Click to set" : "Klik za nastavitev",
+ "Remove due date" : "Odstrani datum preteka",
"Description" : "Opis",
+ "Attachments" : "Priloge",
"Saved" : "Shranjeno",
+ "Unsaved changes" : "Neshranjene spremembe",
+ "Insert attachment" : "Vstavi prilogo",
"Formatting help" : "Pomoč pri oblikovanju",
- "Add a card description…" : "Dodaj opis kartice...",
- "Shared boards" : "Deljene table",
- "Move board to archive" : "Premakni tablo v arhiv",
- "Create a new board" : "Ustvari novo tablo"
+ "Upload attachment" : "Pošlji prilogo",
+ "Add a card description…" : "Dodaj opis naloge ...",
+ "Shared boards" : "Zbirke v souporabi",
+ "Move board to archive" : "Premakni zbirko v arhiv",
+ "Create a new board" : "Ustvari novo zbirko",
+ "Settings" : "Nastavitve",
+ "Limit deck to groups" : "Omeji uporabo izbranim skupinam",
+ "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omejevanje programa prepreči uporabnikom, ki niso del teh skupin, ustvarjanje novih zbirk. Uporabniki bodo še vedno lahko spreminjali zbirke, ki so jih dobili v souporabo."
},
"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);");
diff --git a/l10n/sl.json b/l10n/sl.json
index 5f08e38ca..7b9cb75fa 100644
--- a/l10n/sl.json
+++ b/l10n/sl.json
@@ -1,48 +1,192 @@
{ "translations": {
- "Please provide a content for your comment." : "Priskrbite vsebino za svoj komentar.",
- "Hours" : "Ure",
+ "Please provide a content for your comment." : "Vpišite vsebino opombe.",
+ "Posting the comment failed." : "Objava opombe je spodletela.",
+ "The comment has been deleted" : "Opomba je bila izbrisana",
+ "The associated stack is deleted as well, it will be restored as well." : "Povezan paket nalog, ki je bil prav tako izbrisan, bo tudi obnovljen.",
+ "Restore associated stack" : "Obnovi povezan paket nalog",
+ "Remove user from card" : "Odstrani uporabnika z naloge",
+ "Hours" : "Ura",
"Minutes" : "Minute",
+ "Link to a board" : "Povezava do zbirke",
+ "Maximum file size of {size} exceeded" : "Omejitev velikosti datoteke {size} je prekoračena.",
+ "File already exists" : "Datoteka že obstaja",
+ "You have created a new board {board}" : "Ustvarite novo zbirko {board}",
+ "{user} has created a new board {board}" : "Uporabnik {user} ustvari novo zbirko {board}",
+ "You have deleted the board {board}" : "Izbrišete zbirko {board}",
+ "{user} has deleted the board {board}" : "Uporabnik {user} izbriše zbirko {board}",
+ "You have restored the board {board}" : "Obnovite izbrisano zbirko {board}",
+ "{user} has restored the board {board}" : "Uporabnik {user} obnovi izbrisano zbirko {board}",
+ "You have shared the board {board} with {acl}" : "Omogočite souporabo zbirke {board} z uporabnikom {acl}",
+ "{user} has shared the board {board} with {acl}" : "Uporabnik {user} omogoči souporabo zbirke {board} z uporabnikom {acl}",
+ "You have removed {acl} from the board {board}" : "Odstranite uporabnika {acl} z zbirke {board}",
+ "{user} has removed {acl} from the board {board}" : "Uporabnik {user} odstrani uporabnika {acl} z zbirke {board}",
+ "You have renamed the board {before} to {board}" : "Zbirko {before} preimenujete v {board}",
+ "{user} has renamed the board {before} to {board}" : "Uporabnik {user} preimenuje zbirko {before} v {board}",
+ "You have archived the board {board}" : "Arhivirate zbirko {board}",
+ "{user} has archived the board {before}" : "Uporabnik {user} arhivira zbirko {board}",
+ "You have unarchived the board {board}" : "Povrnete zbirko {board} iz arhiva",
+ "{user} has unarchived the board {before}" : "Uporabnik {user} povrne zbirko {board} iz arhiva",
+ "You have created a new stack {stack} on board {board}" : "Ustvarite nov paket nalog {stack} v zbirki {board}",
+ "{user} has created a new stack {stack} on board {board}" : "Uporabnik {user} ustvari nov paket nalog {stack} v zbirki {board}",
+ "You have renamed stack {before} to {stack} on board {board}" : "Paket nalog {before} v zbirki {board} preimenujete v {stack}",
+ "{user} has renamed stack {before} to {stack} on board {board}" : "Uporabnik {user} preimenuje paket {before} v zbirki {board} v {stack}",
+ "You have deleted stack {stack} on board {board}" : "Izbrišete paket nalog {stack} v zbirki {board}",
+ "{user} has deleted stack {stack} on board {board}" : "Uporabnik {user} izbriše paket nalog {stack} v zbirki {board}",
+ "You have created card {card} in stack {stack} on board {board}" : "Ustvarite nalogo {card} v paketu {stack} zbirke {board}",
+ "{user} has created card {card} in stack {stack} on board {board}" : "Uporabnik {user} ustvari nalogo {card} v paketu {stack} zbirke {board}",
+ "You have deleted card {card} in stack {stack} on board {board}" : "Izbrišete nalogo {card} v paketu {stack} zbirke {board}",
+ "{user} has deleted card {card} in stack {stack} on board {board}" : "{user} izbriše nalogo {card} v paketu {stack} zbirke {board}",
+ "You have renamed the card {before} to {card}" : "Preimenujete nalogo {before} v {card}",
+ "{user} has renamed the card {before} to {card}" : "{user} preimenuje nalogo {before} v {card}",
+ "You have added a description to card {card} in stack {stack} on board {board}" : "Dodate opis k nalogi {card} paketa {stack} v zbirki {board}.",
+ "{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} doda opis k nalogi {card} paketa {stack} v zbirki {board}.",
+ "You have updated the description of card {card} in stack {stack} on board {board}" : "Posodobite opis naloge {card} v paketu {stack} zbirke {board}",
+ "{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} posodobi opis naloge {card} v paketu {stack} zbirke {board}",
+ "You have archived card {card} in stack {stack} on board {board}" : "Arhivirate nalogo {card} v paketu {stack} zbirke {board}",
+ "{user} has archived card {card} in stack {stack} on board {board}" : "{user} arhivira nalogo {card} v paketu {stack} zbirke {board}",
+ "You have unarchived card {card} in stack {stack} on board {board}" : "Iz arhiva povrnete nalogo {card} v paketu {stack} zbirke {board}",
+ "{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} iz arhiva povrne nalogo {card} v paketu {stack} zbirke {board}",
+ "You have removed the due date of card {card}" : "Odstranite datum preteka z naloge {card}",
+ "{user} has removed the due date of card {card}" : "{user} odstrani datum preteka z naloge {card}",
+ "You have set the due date of card {card} to {after}" : "Nastavite datum preteka naloge {card} na {after}",
+ "{user} has set the due date of card {card} to {after}" : "{user} nastavi datum preteka naloge {card} na {after}",
+ "You have updated the due date of card {card} to {after}" : "Posodobite datum preteka naloge {card} na {after}",
+ "{user} has updated the due date of card {card} to {after}" : "{user} posodobi datum preteka naloge {card} na {after}",
+ "You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodate oznako {label} k nalogi {card} paketa {stack} v zbirki {board}",
+ "{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} doda oznako {label} k nalogi {card} paketa {stack} v zbirki {board}",
+ "You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odstranite oznako {label} z naloge {card} paketa {stack} v zbirki {board}",
+ "{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odstrani oznako {label} z naloge {card} paketa {stack} v zbirki {board}",
+ "You have assigned {assigneduser} to card {card} on board {board}" : "Dodelite nalogo {card} v zbirki {board} → {assigneduser}",
+ "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} dodeli nalogo {card} v zbirki {board} → {assigneduser}",
+ "You have unassigned {assigneduser} from card {card} on board {board}" : "Odvzamete nalogo {card} v zbirki {board} ✕ {assigneduser}",
+ "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} odvzame nalogo {card} v zbirki {board} ✕ {assigneduser}",
+ "You have moved the card {card} from stack {stackBefore} to {stack}" : "Premaknete nalogo {card} iz paketa {stackBefore} v {stack}",
+ "{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} premakne nalogo {card} iz paketa {stackBefore} v {stack}",
+ "You have added the attachment {attachment} to card {card}" : "Dodate prilogo {attachment} k nalogi {card}",
+ "{user} has added the attachment {attachment} to card {card}" : "{user} doda prilogo {attachment} k nalogi {card}",
+ "You have updated the attachment {attachment} on card {card}" : "Posodobite prilogo {attachment} v nalogi {card}",
+ "You have deleted the attachment {attachment} from card {card}" : "Izbišete prilogo {attachment} v nalogi {card}",
+ "You have restored the attachment {attachment} to card {card}" : "Obnovite prilogo {attachment} k nalogi {card}",
+ "{user} has restored the attachment {attachment} to card {card}" : "{user} obnovi prilogo {attachment} naloge {card}",
+ "You have commented on card {card}" : "Vpišete opombo k nalogi {card}",
+ "{user} has commented on card {card}" : "Uporabnik {user} vpiše opombo k nalogi {card}",
+ "A card description inside the Deck app has been changed" : "Spremenjen jeopis ene izmed nalog v programu Deck",
+ "Deck" : "Deck",
+ "Changes in the Deck app" : "Spremembe v programu Deck",
+ "A comment was created on a card" : "Nalogi je dodana nova opomba",
"Personal" : "Osebno",
- "Finished" : "Zaključeno",
+ "{user} has shared the board %s with you." : "{user} vam omogoči souporabo zbirke %s.",
+ "No data was provided to create an attachment." : "Ni podanih podatkov za ustvarjanje priloge.",
+ "Finished" : "Končano",
"To review" : "Za pregled",
- "Action needed" : "Operacija je potrebna",
+ "Action needed" : "Čaka na odziv",
"Later" : "Kasneje",
- "Show archived cards" : "Prikaži arhivirane kartice",
- "Hide archived cards" : "Skrij arhivirane kartice",
- "All Boards" : "Vse table",
- "Archived boards" : "Arhivirane table",
- "Enter a card title" : "Vpiši naslov kartice",
+ "To do" : "Prihajajoče naloge",
+ "Doing" : "Naloge v teku",
+ "Done" : "Končane naloge",
+ "Example Task 3" : "Primer naloge 3",
+ "Example Task 2" : "Primer naloge 2",
+ "Example Task 1" : "Primer naloge 1",
+ "The file was uploaded" : "Datoteka je uspešno poslana.",
+ "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Poslana datoteka presega določilo največje dovoljene velikosti v datoteki php.ini",
+ "The file was only partially uploaded" : "Datoteka ni bila poslana v celoti",
+ "No file was uploaded" : "Datoteka ni bila poslana",
+ "Missing a temporary folder" : "Manjka začasna mapa",
+ "Could not write file to disk" : "Ni mogoče zapisati datoteke na disk",
+ "A PHP extension stopped the file upload" : "Razširitev PHP onemogoča pošiljanje datoteke",
+ "No file uploaded or file size exceeds maximum of %s" : "Ali ni poslane datoteke ali pa velikost datoteke presega omejitev %s",
+ "A kanban style project and personal management tool for Nextcloud" : "Orodje za projektno in osebno vodenje nalog v slogu kanban za okolje Nextcloud.",
+ "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" : "Program Deck je orodje za osebno načrtovanje in projektno delo v slogu kanban, ki se izvrstno vključuje v okolje Nextcloud.\n\nOrodje omogoča:\n- 📥 dodajanje in urejanje nalog\n- 📄 zapis dodatnih opomb v zapisu markdown\n- 🔖 dodeljevanje oznak za lažje urejanje in iskanje\n- 👥 souporabo v skupini, s prijatelji ali družino\n- 📎 pripenjanje in vstavljanje datotek v opise\n- 💬 opombe k posamezni nalogi\n- ⚡ sledenje spremembam in dejavnosti\n- 🚀 Organizaciji projekta",
+ "Select the board to link to a project" : "Izberite zbirko za povezavo s projektom",
+ "Select board" : "Izbor zbirke",
+ "Add a new stack" : "Dodaj nov paket nalog",
+ "Submit" : "Objavi",
+ "Show archived cards" : "Prikaži arhivirane naloge",
+ "Hide archived cards" : "Skrij arhivirane naloge",
+ "Toggle compact mode" : "Preklopi način prikaza",
+ "Show board details" : "Pokaži podrobnosti zbirke",
+ "All Boards" : "Vse zbirke",
+ "Archived boards" : "Arhivirane zbirke",
+ "Share board" : "Souporaba zbirke",
+ "Archived cards" : "Arhivirane naloge",
+ "Actions" : "Dejanja",
+ "Drop your files here to upload it to the card" : "Spustite datoteke na to mesto za dodajanje k nalogi",
+ "Assign card to me" : "Nalogo dodeli meni",
+ "Unassign card from me" : "Odstrani me z naloge",
+ "Archive card" : "Arhiviraj nalogo",
+ "Unarchive card" : "Povrni nalogo",
+ "Delete card" : "Izbriši nalogo",
+ "Enter a card title" : "Naslov naloge",
+ "Add card" : "Dodaj nalogo",
+ "Close" : "Zapri",
"Sharing" : "Souporaba",
"Tags" : "Oznake",
- "Select users or groups to share with" : "Izberi uporabnike ali skupine s katerimi želiš deliti",
- "No matching user or group found." : "Ne najdem ujemajočega uporabnika ali skupine.",
+ "Deleted items" : "Izbrisani predmeti",
+ "Timeline" : "Časovnica",
+ "Select users or groups to share with" : "Uporabniki in skupine za souporabo",
+ "Group" : "Skupina",
+ "Circle" : "Krog",
+ "No matching user or group found." : "Ni uporabnikov ali skupin s tem nazivom.",
+ "Loading" : "Poteka nalaganje ...",
"Edit" : "Uredi",
- "Share" : "Deli",
- "Manage" : "Upravljaj",
- "Discard share" : "Prekliči deljenje",
+ "Share" : "Souporaba",
+ "Manage" : "Upravljanje",
+ "Discard share" : "Prekliči souporabo",
+ "Sharing has been disabled for your account." : "Za ta račun je možnost dodeljevanja souporabe onemogočena.",
+ "Update tag" : "Posodobi oznako",
+ "Edit tag" : "Uredi oznako",
+ "Delete tag" : "Izbriši oznako",
+ "Create" : "Ustvari",
"Create a new tag" : "Ustvari novo oznako",
+ "Deleted stacks" : "Izbrisani paketi nalog",
+ "Deleted cards" : "Izbrisane naloge",
+ "Status" : "Stanje",
+ "No archived boards to display" : "Ni arhiviranih zbirk za prikaz",
+ "No shared boards to display" : "Ni zbirk v souporabi",
"Title" : "Naslov",
"Members" : "Člani",
- "More actions" : "Več akcij",
- "Edit board" : "Uredi tablo",
- "Archive board" : "Arhiviraj tablo",
- "Unarchive board" : "Odarhiviraj tablo",
- "Delete board" : "Izbriši tablo",
- "Create new board" : "Ustvari novo tablo",
- "New board title" : "Naslov nove table",
+ "More actions" : "Več možnosti",
+ "Edit board" : "Uredi zbirko",
+ "Archive board" : "Arhiviraj zbirko",
+ "Unarchive board" : "Povrni zbirko",
+ "Delete board" : "Izbriši zbirko",
+ "Update board" : "Posodobi zbirko",
+ "Reset board" : "Ponastavi zbirko",
+ "Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Razveljavi brisanje zbirke – ta bo sicer izbrisana med naslednjo izvedbo opravila cronjob.",
+ "Create new board" : "Ustvari novo zbirko",
+ "New board title" : "Naslov nove zbirke",
+ "Create board" : "Ustvari zbirko",
+ "Select an attachment" : "Izbor priloge",
"Cancel upload" : "Prekliči pošiljanje",
"by" : "s strani",
+ "Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Razveljavi brisanje datoteke – ta bo sicer izbrisana med naslednjo izvedbo opravila cronjob.",
+ "Undo file deletion" : "Razveljavi brisanje datoteke",
+ "Insert the file into the description" : "Vstavi datoteko v opis",
+ "Delete attachment" : "Izbriši prilogo",
"Modified:" : "Spremenjeno:",
"Created:" : "Ustvarjeno:",
- "Due date" : "Datum poteka",
- "Click to set" : "Klikni za nastaviti",
- "Remove due date" : "Odstrani datum poteka",
+ "Choose a tag" : "Izbor oznake",
+ "Add a tag" : "Dodaj oznako",
+ "Select tags" : "Izbor oznak",
+ "Assign users" : "Dodeli uporabnike",
+ "Choose a user to assign" : "Izbor uporabnika za nalogo",
+ "Assign this card to a user" : "Dodeli nalogo uporabniku",
+ "Due date" : "Datum preteka",
+ "Click to set" : "Klik za nastavitev",
+ "Remove due date" : "Odstrani datum preteka",
"Description" : "Opis",
+ "Attachments" : "Priloge",
"Saved" : "Shranjeno",
+ "Unsaved changes" : "Neshranjene spremembe",
+ "Insert attachment" : "Vstavi prilogo",
"Formatting help" : "Pomoč pri oblikovanju",
- "Add a card description…" : "Dodaj opis kartice...",
- "Shared boards" : "Deljene table",
- "Move board to archive" : "Premakni tablo v arhiv",
- "Create a new board" : "Ustvari novo tablo"
+ "Upload attachment" : "Pošlji prilogo",
+ "Add a card description…" : "Dodaj opis naloge ...",
+ "Shared boards" : "Zbirke v souporabi",
+ "Move board to archive" : "Premakni zbirko v arhiv",
+ "Create a new board" : "Ustvari novo zbirko",
+ "Settings" : "Nastavitve",
+ "Limit deck to groups" : "Omeji uporabo izbranim skupinam",
+ "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omejevanje programa prepreči uporabnikom, ki niso del teh skupin, ustvarjanje novih zbirk. Uporabniki bodo še vedno lahko spreminjali zbirke, ki so jih dobili v souporabo."
},"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"
}
\ No newline at end of file
diff --git a/l10n/sr.js b/l10n/sr.js
index cffa78671..90bb9adef 100644
--- a/l10n/sr.js
+++ b/l10n/sr.js
@@ -67,9 +67,9 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Додали сте прилог {attachment} на картицу {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} је додао прилог {attachment} на картицу {card}",
"You have updated the attachment {attachment} on card {card}" : "Ажурирали сте прилог {attachment} на картици {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} је ажурирао прилог {attachment} на картици {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} је ажурирао прилог {attachment} на картици {card}",
"You have deleted the attachment {attachment} from card {card}" : "Обрисали сте прилог {attachment} са картице {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} је обрисао прилог {attachment} са картице {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} је обрисао прилог {attachment} са картице {card}",
"You have restored the attachment {attachment} to card {card}" : "Повратили сте прилог {attachment} на картицу {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} је повратио прилог {attachment} на картицу {card}",
"You have commented on card {card}" : "Оставили сте коментар на картици {card}",
diff --git a/l10n/sr.json b/l10n/sr.json
index ff385e9d3..cf60e2ea5 100644
--- a/l10n/sr.json
+++ b/l10n/sr.json
@@ -65,9 +65,9 @@
"You have added the attachment {attachment} to card {card}" : "Додали сте прилог {attachment} на картицу {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} је додао прилог {attachment} на картицу {card}",
"You have updated the attachment {attachment} on card {card}" : "Ажурирали сте прилог {attachment} на картици {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} је ажурирао прилог {attachment} на картици {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} је ажурирао прилог {attachment} на картици {card}",
"You have deleted the attachment {attachment} from card {card}" : "Обрисали сте прилог {attachment} са картице {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} је обрисао прилог {attachment} са картице {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} је обрисао прилог {attachment} са картице {card}",
"You have restored the attachment {attachment} to card {card}" : "Повратили сте прилог {attachment} на картицу {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} је повратио прилог {attachment} на картицу {card}",
"You have commented on card {card}" : "Оставили сте коментар на картици {card}",
diff --git a/l10n/sv.js b/l10n/sv.js
index abb763fa4..23dc3c07e 100644
--- a/l10n/sv.js
+++ b/l10n/sv.js
@@ -67,9 +67,9 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Du har lagt till bilagan {attachment} till kortet {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} har lagt till bilagan {attachment} till kortet {card}",
"You have updated the attachment {attachment} on card {card}" : "Du har uppdaterat bilagan {attachment} på kortet {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} har uppdaterat bilagan {attachment} på kortet {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} har uppdaterat bilagan {attachment} på kortet {card}",
"You have deleted the attachment {attachment} from card {card}" : "Du har raderat bilagan {attachment} från kortet {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} har raderat bilagan {attachment} från kortet {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} har raderat bilagan {attachment} från kortet {card}",
"You have restored the attachment {attachment} to card {card}" : "Du har återställt bilagan {attachment} till kortet {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} har återställt bilagan {attachment} till kortet {card}",
"You have commented on card {card}" : "Du har kommenterat på kortet {card}",
diff --git a/l10n/sv.json b/l10n/sv.json
index ffe01ebd7..16e67aa88 100644
--- a/l10n/sv.json
+++ b/l10n/sv.json
@@ -65,9 +65,9 @@
"You have added the attachment {attachment} to card {card}" : "Du har lagt till bilagan {attachment} till kortet {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} har lagt till bilagan {attachment} till kortet {card}",
"You have updated the attachment {attachment} on card {card}" : "Du har uppdaterat bilagan {attachment} på kortet {card}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} har uppdaterat bilagan {attachment} på kortet {card}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} har uppdaterat bilagan {attachment} på kortet {card}",
"You have deleted the attachment {attachment} from card {card}" : "Du har raderat bilagan {attachment} från kortet {card}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} har raderat bilagan {attachment} från kortet {card}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} har raderat bilagan {attachment} från kortet {card}",
"You have restored the attachment {attachment} to card {card}" : "Du har återställt bilagan {attachment} till kortet {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} har återställt bilagan {attachment} till kortet {card}",
"You have commented on card {card}" : "Du har kommenterat på kortet {card}",
diff --git a/l10n/tr.js b/l10n/tr.js
index 1ee085540..ae27b9d0b 100644
--- a/l10n/tr.js
+++ b/l10n/tr.js
@@ -67,9 +67,9 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "{card} kartına {attachment} dosyasını eklediniz",
"{user} has added the attachment {attachment} to card {card}" : "{user}, {card} kartına {attachment} dosyasını ekledi",
"You have updated the attachment {attachment} on card {card}" : "{card} kartındaki {attachment} dosyasını güncellediniz",
- "{user} has updated the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını güncelledi",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user}, {card} kartındaki {attachment} dosyasını güncelledi",
"You have deleted the attachment {attachment} from card {card}" : "{card} kartındaki {attachment} dosyasını sildiniz",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını sildi",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user}, {card} kartındaki {attachment} dosyasını sildi",
"You have restored the attachment {attachment} to card {card}" : "{card} kartındaki {attachment} dosyasını geri yüklediniz",
"{user} has restored the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını geri yükledi",
"You have commented on card {card}" : "{card} kartı hakkında yorum yaptınız",
@@ -82,11 +82,11 @@ OC.L10N.register(
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" kartı \"%s\" zamanında %s tarafından size atandı.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} size \"%s\" kartını \"%s\" zamanında atadı.",
"The card \"%s\" on \"%s\" has reached its due date." : "\"%s\" kartı \"%s\" zamanında son kullanma tarihine ulaştı.",
- "%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizden bahsetti.",
- "{user} has mentioned you in a comment on \"%s\"." : "{user} kullanıcısı, \"%s\" üzerindeki bir yorumda sizden bahsetti.",
+ "%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı",
+ "{user} has mentioned you in a comment on \"%s\"." : "{user} kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı",
"The board \"%s\" has been shared with you by %s." : "\"%s\" panosu %s tarafından sizinle paylaşıldı.",
"{user} has shared the board %s with you." : "{user} sizinle %s panosunu paylaştı.",
- "No data was provided to create an attachment." : "Bir ek dosyası oluşturmak için herhangi bir veri sağlanmadı.",
+ "No data was provided to create an attachment." : "Bir ek dosya oluşturmak için herhangi bir veri belirtilmedi.",
"Finished" : "Tamamlandı",
"To review" : "İncelenecek",
"Action needed" : "İşlem yapılması gerekiyor",
@@ -192,7 +192,7 @@ OC.L10N.register(
"Insert attachment" : "Ek dosya ekle",
"Formatting help" : "Biçimlendirme yardımı",
"Upload attachment" : "Ek dosya yükle",
- "Add a card description…" : "Bir kart açıklaması ekle...",
+ "Add a card description…" : "Bir kart açıklaması ekle …",
"Shared boards" : "Paylaşılmış panolar",
"Move board to archive" : "Panoyu arşive taşı",
"Create a new board" : "Pano ekle",
diff --git a/l10n/tr.json b/l10n/tr.json
index a87e27514..89c1c751a 100644
--- a/l10n/tr.json
+++ b/l10n/tr.json
@@ -65,9 +65,9 @@
"You have added the attachment {attachment} to card {card}" : "{card} kartına {attachment} dosyasını eklediniz",
"{user} has added the attachment {attachment} to card {card}" : "{user}, {card} kartına {attachment} dosyasını ekledi",
"You have updated the attachment {attachment} on card {card}" : "{card} kartındaki {attachment} dosyasını güncellediniz",
- "{user} has updated the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını güncelledi",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user}, {card} kartındaki {attachment} dosyasını güncelledi",
"You have deleted the attachment {attachment} from card {card}" : "{card} kartındaki {attachment} dosyasını sildiniz",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını sildi",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user}, {card} kartındaki {attachment} dosyasını sildi",
"You have restored the attachment {attachment} to card {card}" : "{card} kartındaki {attachment} dosyasını geri yüklediniz",
"{user} has restored the attachment {attachment} to card {card}" : "{user}, {card} kartındaki {attachment} dosyasını geri yükledi",
"You have commented on card {card}" : "{card} kartı hakkında yorum yaptınız",
@@ -80,11 +80,11 @@
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" kartı \"%s\" zamanında %s tarafından size atandı.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} size \"%s\" kartını \"%s\" zamanında atadı.",
"The card \"%s\" on \"%s\" has reached its due date." : "\"%s\" kartı \"%s\" zamanında son kullanma tarihine ulaştı.",
- "%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizden bahsetti.",
- "{user} has mentioned you in a comment on \"%s\"." : "{user} kullanıcısı, \"%s\" üzerindeki bir yorumda sizden bahsetti.",
+ "%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı",
+ "{user} has mentioned you in a comment on \"%s\"." : "{user} kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı",
"The board \"%s\" has been shared with you by %s." : "\"%s\" panosu %s tarafından sizinle paylaşıldı.",
"{user} has shared the board %s with you." : "{user} sizinle %s panosunu paylaştı.",
- "No data was provided to create an attachment." : "Bir ek dosyası oluşturmak için herhangi bir veri sağlanmadı.",
+ "No data was provided to create an attachment." : "Bir ek dosya oluşturmak için herhangi bir veri belirtilmedi.",
"Finished" : "Tamamlandı",
"To review" : "İncelenecek",
"Action needed" : "İşlem yapılması gerekiyor",
@@ -190,7 +190,7 @@
"Insert attachment" : "Ek dosya ekle",
"Formatting help" : "Biçimlendirme yardımı",
"Upload attachment" : "Ek dosya yükle",
- "Add a card description…" : "Bir kart açıklaması ekle...",
+ "Add a card description…" : "Bir kart açıklaması ekle …",
"Shared boards" : "Paylaşılmış panolar",
"Move board to archive" : "Panoyu arşive taşı",
"Create a new board" : "Pano ekle",
diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js
index 91b36733d..963cc7e59 100644
--- a/l10n/zh_CN.js
+++ b/l10n/zh_CN.js
@@ -67,9 +67,9 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "您为卡片 {card} 添加了附件 {attachment}",
"{user} has added the attachment {attachment} to card {card}" : "{user} 为卡片 {card} 添加了附件 {attachment}",
"You have updated the attachment {attachment} on card {card}" : "您更新了卡片 {card} 中的附件 {attachment}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} 更新了卡片 {card} 中的附件 {attachment}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} 更新了卡 {card} 上的附件 {attachment}",
"You have deleted the attachment {attachment} from card {card}" : "您删除了卡片 {card} 中的附件 {attachment}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} 删除了卡片 {card} 中的附件 {attachment}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} 已从卡 {card} 中删除附件 {attachment}",
"You have restored the attachment {attachment} to card {card}" : "您恢复了卡片 {card} 中的附件 {attachment}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} 恢复了卡片 {card} 中的附件 {attachment}",
"You have commented on card {card}" : "您评论了卡片 {card}",
diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json
index 077655779..a77796282 100644
--- a/l10n/zh_CN.json
+++ b/l10n/zh_CN.json
@@ -65,9 +65,9 @@
"You have added the attachment {attachment} to card {card}" : "您为卡片 {card} 添加了附件 {attachment}",
"{user} has added the attachment {attachment} to card {card}" : "{user} 为卡片 {card} 添加了附件 {attachment}",
"You have updated the attachment {attachment} on card {card}" : "您更新了卡片 {card} 中的附件 {attachment}",
- "{user} has updated the attachment {attachment} to card {card}" : "{user} 更新了卡片 {card} 中的附件 {attachment}",
+ "{user} has updated the attachment {attachment} on card {card}" : "{user} 更新了卡 {card} 上的附件 {attachment}",
"You have deleted the attachment {attachment} from card {card}" : "您删除了卡片 {card} 中的附件 {attachment}",
- "{user} has deleted the attachment {attachment} to card {card}" : "{user} 删除了卡片 {card} 中的附件 {attachment}",
+ "{user} has deleted the attachment {attachment} from card {card}" : "{user} 已从卡 {card} 中删除附件 {attachment}",
"You have restored the attachment {attachment} to card {card}" : "您恢复了卡片 {card} 中的附件 {attachment}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} 恢复了卡片 {card} 中的附件 {attachment}",
"You have commented on card {card}" : "您评论了卡片 {card}",
diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js
index d5725d54b..e735aff39 100644
--- a/l10n/zh_TW.js
+++ b/l10n/zh_TW.js
@@ -1,8 +1,24 @@
OC.L10N.register(
"deck",
{
+ "Posting the comment failed." : "儲存註解失敗",
+ "The comment has been deleted" : "註解已刪除",
+ "The associated stack is deleted as well, it will be restored as well." : "相關的項目已被刪除,他將被還原",
+ "Restore associated stack" : "還原相關項目",
+ "Remove user from card" : "將使用者從項目卡中移除",
"Hours" : "小時",
"Minutes" : "分鐘",
+ "Link to a board" : "連結到佈告欄",
+ "Maximum file size of {size} exceeded" : "達到最大的檔案大小 {size} ",
+ "File already exists" : "檔案已存在",
+ "You have created a new board {board}" : "您已建立新的佈告欄 {board}",
+ "{user} has created a new board {board}" : "{user} 已建立新的佈告欄 {board}",
+ "You have deleted the board {board}" : "您已刪除佈告欄 {board}",
+ "{user} has deleted the board {board}" : "{user} 已刪除佈告欄{board}",
+ "You have restored the board {board}" : "您已還原佈告欄{board}",
+ "{user} has restored the board {board}" : "{user}已還原佈告欄{board}",
+ "You have shared the board {board} with {acl}" : "您已和{acl}分享佈告欄{board}",
+ "{user} has shared the board {board} with {acl}" : "{user} 已和{acl}分享佈告欄{board}",
"Finished" : "已完成",
"Later" : "稍後",
"Submit" : "送出",
diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json
index 92596c7af..8d44598e9 100644
--- a/l10n/zh_TW.json
+++ b/l10n/zh_TW.json
@@ -1,6 +1,22 @@
{ "translations": {
+ "Posting the comment failed." : "儲存註解失敗",
+ "The comment has been deleted" : "註解已刪除",
+ "The associated stack is deleted as well, it will be restored as well." : "相關的項目已被刪除,他將被還原",
+ "Restore associated stack" : "還原相關項目",
+ "Remove user from card" : "將使用者從項目卡中移除",
"Hours" : "小時",
"Minutes" : "分鐘",
+ "Link to a board" : "連結到佈告欄",
+ "Maximum file size of {size} exceeded" : "達到最大的檔案大小 {size} ",
+ "File already exists" : "檔案已存在",
+ "You have created a new board {board}" : "您已建立新的佈告欄 {board}",
+ "{user} has created a new board {board}" : "{user} 已建立新的佈告欄 {board}",
+ "You have deleted the board {board}" : "您已刪除佈告欄 {board}",
+ "{user} has deleted the board {board}" : "{user} 已刪除佈告欄{board}",
+ "You have restored the board {board}" : "您已還原佈告欄{board}",
+ "{user} has restored the board {board}" : "{user}已還原佈告欄{board}",
+ "You have shared the board {board} with {acl}" : "您已和{acl}分享佈告欄{board}",
+ "{user} has shared the board {board} with {acl}" : "{user} 已和{acl}分享佈告欄{board}",
"Finished" : "已完成",
"Later" : "稍後",
"Submit" : "送出",
diff --git a/lib/Activity/ActivityManager.php b/lib/Activity/ActivityManager.php
index 641c34a7a..a432f63e4 100644
--- a/lib/Activity/ActivityManager.php
+++ b/lib/Activity/ActivityManager.php
@@ -2,6 +2,8 @@
/**
* @copyright Copyright (c) 2018 Julius Härtl
*
+ * @copyright Copyright (c) 2019 Alexandru Puiu
+ *
* @author Julius Härtl
*
* @license GNU AGPL version 3 or any later version
@@ -221,10 +223,10 @@ class ActivityManager {
$subject = $ownActivity ? $this->l10n->t('You have added the attachment {attachment} to card {card}') : $this->l10n->t('{user} has added the attachment {attachment} to card {card}');
break;
case self::SUBJECT_ATTACHMENT_UPDATE:
- $subject = $ownActivity ? $this->l10n->t('You have updated the attachment {attachment} on card {card}') : $this->l10n->t('{user} has updated the attachment {attachment} to card {card}');
+ $subject = $ownActivity ? $this->l10n->t('You have updated the attachment {attachment} on card {card}') : $this->l10n->t('{user} has updated the attachment {attachment} on card {card}');
break;
case self::SUBJECT_ATTACHMENT_DELETE:
- $subject = $ownActivity ? $this->l10n->t('You have deleted the attachment {attachment} from card {card}') : $this->l10n->t('{user} has deleted the attachment {attachment} to card {card}');
+ $subject = $ownActivity ? $this->l10n->t('You have deleted the attachment {attachment} from card {card}') : $this->l10n->t('{user} has deleted the attachment {attachment} from card {card}');
break;
case self::SUBJECT_ATTACHMENT_RESTORE:
$subject = $ownActivity ? $this->l10n->t('You have restored the attachment {attachment} to card {card}') : $this->l10n->t('{user} has restored the attachment {attachment} to card {card}');
@@ -384,6 +386,7 @@ class ActivityManager {
}
if ($subject === self::SUBJECT_CARD_UPDATE_STACKID) {
$subjectParams['stackBefore'] = $this->stackMapper->find($additionalParams['before']);
+ $subjectParams['stack'] = $this->stackMapper->find($additionalParams['after']);
}
$subjectParams['author'] = $this->userId;
diff --git a/lib/Activity/DeckProvider.php b/lib/Activity/DeckProvider.php
index 1efefdd27..85ec53bb0 100644
--- a/lib/Activity/DeckProvider.php
+++ b/lib/Activity/DeckProvider.php
@@ -2,6 +2,8 @@
/**
* @copyright Copyright (c) 2018 Julius Härtl
*
+ * @copyright Copyright (c) 2019 Alexandru Puiu
+ *
* @author Julius Härtl
*
* @license GNU AGPL version 3 or any later version
@@ -342,6 +344,13 @@ class DeckProvider implements IProvider {
'name' => $subjectParams['after']
];
}
+ if (array_key_exists('card', $subjectParams) && $event->getSubject() === ActivityManager::SUBJECT_CARD_UPDATE_TITLE) {
+ $params['card'] = [
+ 'type' => 'highlight',
+ 'id' => $subjectParams['after'],
+ 'name' => $subjectParams['after']
+ ];
+ }
return $params;
}
diff --git a/lib/Db/BoardMapper.php b/lib/Db/BoardMapper.php
index db65993c8..05bce17f9 100644
--- a/lib/Db/BoardMapper.php
+++ b/lib/Db/BoardMapper.php
@@ -95,10 +95,7 @@ class BoardMapper extends DeckMapper implements IPermissionMapper {
* @param null $offset
* @return array
*/
- public function findAllByUser($userId, $limit = null, $offset = null, $since = 0) {
- $sql = 'SELECT id, title, owner, color, archived, deleted_at, 0 as shared, last_modified FROM `*PREFIX*deck_boards` WHERE owner = ? AND last_modified > ?';
- $entries = $this->findEntities($sql, [$userId, $since], $limit, $offset);
-
+ public function findAllByUser($userId, $limit = null, $offset = null, $since = -1) {
$sql = 'SELECT id, title, owner, color, archived, deleted_at, 0 as shared, last_modified FROM `*PREFIX*deck_boards` WHERE owner = ? AND last_modified > ? UNION ' .
'SELECT boards.id, title, owner, color, archived, deleted_at, 1 as shared, last_modified FROM `*PREFIX*deck_boards` as boards ' .
'JOIN `*PREFIX*deck_board_acl` as acl ON boards.id=acl.board_id WHERE acl.participant=? AND acl.type=? AND boards.owner != ? AND last_modified > ?';
diff --git a/lib/Service/CardService.php b/lib/Service/CardService.php
index 406dd75ae..c5bbcb71d 100644
--- a/lib/Service/CardService.php
+++ b/lib/Service/CardService.php
@@ -431,7 +431,7 @@ class CardService {
$result[$card->getOrder()] = $card;
}
$this->changeHelper->cardChanged($id, false);
- return $result;
+ return array_values($result);
}
/**
diff --git a/lib/Service/StackService.php b/lib/Service/StackService.php
index c8953ece1..29763bb9e 100644
--- a/lib/Service/StackService.php
+++ b/lib/Service/StackService.php
@@ -345,7 +345,7 @@ class StackService {
throw new BadRequestException('order must be provided');
}
- $this->permissionService->checkPermission($this->stackMapper, $id, Acl::PERMISSION_EDIT);
+ $this->permissionService->checkPermission($this->stackMapper, $id, Acl::PERMISSION_MANAGE);
$stackToSort = $this->stackMapper->find($id);
$stacks = $this->stackMapper->findAll($stackToSort->getBoardId());
$result = [];
diff --git a/templates/part.board.headerControls.php b/templates/part.board.headerControls.php
index fa39c5855..32360bcf1 100644
--- a/templates/part.board.headerControls.php
+++ b/templates/part.board.headerControls.php
@@ -1,4 +1,4 @@
-