Compare commits
51 Commits
stable-0.6
...
v0.7.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bcc9f03942 | ||
|
|
002587523f | ||
|
|
313ceb9a95 | ||
|
|
36977564a2 | ||
|
|
17999595a5 | ||
|
|
96dac29870 | ||
|
|
1ab2ee1daa | ||
|
|
138faf2de1 | ||
|
|
7e58486877 | ||
|
|
3454127aee | ||
|
|
7a673efc4a | ||
|
|
36a5888faf | ||
|
|
6bfd9127ed | ||
|
|
a5e155b6c7 | ||
|
|
a0a0f9443d | ||
|
|
2a6385c68a | ||
|
|
33cb61fe07 | ||
|
|
f3fc9904d2 | ||
|
|
3b7382f2d0 | ||
|
|
7d52891eb8 | ||
|
|
a36bfda277 | ||
|
|
427e954764 | ||
|
|
5f6eb7848f | ||
|
|
dfdd3222ea | ||
|
|
8845ba1033 | ||
|
|
1b82ca5d17 | ||
|
|
cefec146a2 | ||
|
|
6db4cf44bc | ||
|
|
eff48652c9 | ||
|
|
28bdb2ea43 | ||
|
|
7b2de87b05 | ||
|
|
1fcf3f95ac | ||
|
|
2f893eb6ad | ||
|
|
65272d76e1 | ||
|
|
96bd7194af | ||
|
|
f064fe55e2 | ||
|
|
799497e62f | ||
|
|
a87277735d | ||
|
|
9d5c67cbef | ||
|
|
c031e1b9c2 | ||
|
|
54b4b7c430 | ||
|
|
a953822671 | ||
|
|
ea4f4e8335 | ||
|
|
0bf11c1976 | ||
|
|
98bd957dd6 | ||
|
|
6089d190f4 | ||
|
|
c51509faeb | ||
|
|
c817ff2245 | ||
|
|
a9dd5b8ebe | ||
|
|
3105ec62ec | ||
|
|
6ef071cee9 |
81
.drone.yml
81
.drone.yml
@@ -16,20 +16,11 @@ steps:
|
|||||||
- ./occ app:check-code $APP_NAME -c strong-comparison
|
- ./occ app:check-code $APP_NAME -c strong-comparison
|
||||||
- ./occ app:check-code $APP_NAME -c deprecation
|
- ./occ app:check-code $APP_NAME -c deprecation
|
||||||
- cd apps/$APP_NAME/
|
- cd apps/$APP_NAME/
|
||||||
- name: syntax-php7.0
|
|
||||||
image: nextcloudci/php7.0:php7.0-17
|
|
||||||
environment:
|
|
||||||
APP_NAME: deck
|
|
||||||
CORE_BRANCH: stable15
|
|
||||||
DB: sqlite
|
|
||||||
commands:
|
|
||||||
- composer install
|
|
||||||
- ./vendor/bin/parallel-lint --exclude ./vendor/ --exclude ./lib/Collaboration/ .
|
|
||||||
- name: syntax-php7.1
|
- name: syntax-php7.1
|
||||||
image: nextcloudci/php7.1:php7.1-15
|
image: nextcloudci/php7.1:php7.1-15
|
||||||
environment:
|
environment:
|
||||||
APP_NAME: deck
|
APP_NAME: deck
|
||||||
CORE_BRANCH: stable15
|
CORE_BRANCH: master
|
||||||
DB: sqlite
|
DB: sqlite
|
||||||
commands:
|
commands:
|
||||||
- composer install
|
- composer install
|
||||||
@@ -38,7 +29,7 @@ steps:
|
|||||||
image: nextcloudci/php7.2:php7.2-9
|
image: nextcloudci/php7.2:php7.2-9
|
||||||
environment:
|
environment:
|
||||||
APP_NAME: deck
|
APP_NAME: deck
|
||||||
CORE_BRANCH: stable15
|
CORE_BRANCH: master
|
||||||
DB: sqlite
|
DB: sqlite
|
||||||
commands:
|
commands:
|
||||||
- composer install
|
- composer install
|
||||||
@@ -47,7 +38,7 @@ steps:
|
|||||||
image: nextcloudci/php7.3:php7.3-2
|
image: nextcloudci/php7.3:php7.3-2
|
||||||
environment:
|
environment:
|
||||||
APP_NAME: deck
|
APP_NAME: deck
|
||||||
CORE_BRANCH: stable15
|
CORE_BRANCH: master
|
||||||
DB: sqlite
|
DB: sqlite
|
||||||
commands:
|
commands:
|
||||||
- composer install
|
- composer install
|
||||||
@@ -61,41 +52,13 @@ trigger:
|
|||||||
- push
|
- push
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: unit-php7.0
|
|
||||||
steps:
|
|
||||||
- name: php7.0
|
|
||||||
image: nextcloudci/php7.0:php7.0-17
|
|
||||||
environment:
|
|
||||||
APP_NAME: deck
|
|
||||||
CORE_BRANCH: stable15
|
|
||||||
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
|
|
||||||
# Run phpunit tests
|
|
||||||
- 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
|
|
||||||
trigger:
|
|
||||||
branch:
|
|
||||||
- master
|
|
||||||
- stable*
|
|
||||||
event:
|
|
||||||
- pull_request
|
|
||||||
- push
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
name: unit-php7.1
|
name: unit-php7.1
|
||||||
steps:
|
steps:
|
||||||
- name: php7.1
|
- name: php7.1
|
||||||
image: nextcloudci/php7.1:php7.1-15
|
image: nextcloudci/php7.1:php7.1-16
|
||||||
environment:
|
environment:
|
||||||
APP_NAME: deck
|
APP_NAME: deck
|
||||||
CORE_BRANCH: stable15
|
CORE_BRANCH: master
|
||||||
DB: sqlite
|
DB: sqlite
|
||||||
commands:
|
commands:
|
||||||
# Pre-setup steps
|
# Pre-setup steps
|
||||||
@@ -122,7 +85,7 @@ steps:
|
|||||||
image: nextcloudci/php7.2:php7.2-9
|
image: nextcloudci/php7.2:php7.2-9
|
||||||
environment:
|
environment:
|
||||||
APP_NAME: deck
|
APP_NAME: deck
|
||||||
CORE_BRANCH: stable15
|
CORE_BRANCH: master
|
||||||
DB: sqlite
|
DB: sqlite
|
||||||
commands:
|
commands:
|
||||||
# Pre-setup steps
|
# Pre-setup steps
|
||||||
@@ -149,7 +112,7 @@ steps:
|
|||||||
image: nextcloudci/php7.3:php7.3-2
|
image: nextcloudci/php7.3:php7.3-2
|
||||||
environment:
|
environment:
|
||||||
APP_NAME: deck
|
APP_NAME: deck
|
||||||
CORE_BRANCH: stable15
|
CORE_BRANCH: master
|
||||||
DB: sqlite
|
DB: sqlite
|
||||||
commands:
|
commands:
|
||||||
# Pre-setup steps
|
# Pre-setup steps
|
||||||
@@ -170,39 +133,13 @@ trigger:
|
|||||||
- push
|
- push
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: integration-stable16
|
name: integration
|
||||||
steps:
|
steps:
|
||||||
- name: integration
|
- name: integration
|
||||||
image: nextcloudci/php7.1:php7.1-16
|
image: nextcloudci/php7.1:php7.1-16
|
||||||
environment:
|
environment:
|
||||||
APP_NAME: deck
|
APP_NAME: deck
|
||||||
CORE_BRANCH: stable16
|
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
|
|
||||||
- cd tests/integration
|
|
||||||
- ./run.sh || true
|
|
||||||
trigger:
|
|
||||||
branch:
|
|
||||||
- master
|
|
||||||
- stable*
|
|
||||||
event:
|
|
||||||
- pull_request
|
|
||||||
- push
|
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
name: integration-stable15
|
|
||||||
steps:
|
|
||||||
- name: integration
|
|
||||||
image: nextcloudci/php7.1:php7.1-16
|
|
||||||
environment:
|
|
||||||
APP_NAME: deck
|
|
||||||
CORE_BRANCH: stable15
|
|
||||||
DB: sqlite
|
DB: sqlite
|
||||||
commands:
|
commands:
|
||||||
# Pre-setup steps
|
# Pre-setup steps
|
||||||
|
|||||||
@@ -2,18 +2,17 @@ language: php
|
|||||||
services:
|
services:
|
||||||
- mysql
|
- mysql
|
||||||
php:
|
php:
|
||||||
- 7.0
|
|
||||||
- 7.1
|
- 7.1
|
||||||
- 7.2
|
- 7.2
|
||||||
- 7.3
|
- 7.3
|
||||||
env:
|
env:
|
||||||
- CORE_BRANCH=stable15 DB=mysql
|
- CORE_BRANCH=master DB=mysql
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- wget https://phar.phpunit.de/phpunit-5.7.phar
|
- wget https://phar.phpunit.de/phpunit-6.5.phar
|
||||||
- chmod +x phpunit-5.7.phar
|
- chmod +x phpunit-6.5.phar
|
||||||
- mkdir bin
|
- mkdir bin
|
||||||
- mv phpunit-5.7.phar bin/phpunit
|
- mv phpunit-6.5.phar bin/phpunit
|
||||||
- export PATH="$PWD/bin:$PATH"
|
- export PATH="$PWD/bin:$PATH"
|
||||||
- phpunit --version
|
- phpunit --version
|
||||||
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
- 🚀 Get your project organized
|
- 🚀 Get your project organized
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
<version>0.6.4</version>
|
<version>0.7.0</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author>Julius Härtl</author>
|
<author>Julius Härtl</author>
|
||||||
<namespace>Deck</namespace>
|
<namespace>Deck</namespace>
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
<database min-version="9.4">pgsql</database>
|
<database min-version="9.4">pgsql</database>
|
||||||
<database>sqlite</database>
|
<database>sqlite</database>
|
||||||
<database min-version="5.5">mysql</database>
|
<database min-version="5.5">mysql</database>
|
||||||
<nextcloud min-version="15" max-version="17" />
|
<nextcloud min-version="17" max-version="17" />
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<background-jobs>
|
<background-jobs>
|
||||||
<job>OCA\Deck\Cron\DeleteCron</job>
|
<job>OCA\Deck\Cron\DeleteCron</job>
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"roave/security-advisories": "dev-master",
|
"roave/security-advisories": "dev-master",
|
||||||
"christophwurst/nextcloud": "^15.0",
|
"christophwurst/nextcloud": "^16.0",
|
||||||
"jakub-onderka/php-parallel-lint": "^1.0.0"
|
"jakub-onderka/php-parallel-lint": "^1.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
2776
js/package-lock.json
generated
2776
js/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -14,11 +14,11 @@
|
|||||||
"angular-markdown-it": "^0.6.1",
|
"angular-markdown-it": "^0.6.1",
|
||||||
"angular-sanitize": "^1.7.8",
|
"angular-sanitize": "^1.7.8",
|
||||||
"babel-polyfill": "^6.26.0",
|
"babel-polyfill": "^6.26.0",
|
||||||
"markdown-it": "^9.0.1",
|
"markdown-it": "^9.1.0",
|
||||||
"markdown-it-link-target": "^1.0.2",
|
"markdown-it-link-target": "^1.0.2",
|
||||||
"nextcloud-axios": "^0.2.0",
|
"nextcloud-axios": "^0.2.0",
|
||||||
"nextcloud-vue": "^0.11.4",
|
"nextcloud-vue": "^0.12.1",
|
||||||
"nextcloud-vue-collections": "^0.5.4",
|
"nextcloud-vue-collections": "^0.5.6",
|
||||||
"ng-infinite-scroll": "^1.3.0",
|
"ng-infinite-scroll": "^1.3.0",
|
||||||
"ng-sortable": "^1.3.8",
|
"ng-sortable": "^1.3.8",
|
||||||
"ui-select": "^0.19.8",
|
"ui-select": "^0.19.8",
|
||||||
@@ -26,21 +26,21 @@
|
|||||||
"vuex": "^3.1.1"
|
"vuex": "^3.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.4.5",
|
"@babel/core": "^7.5.5",
|
||||||
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
||||||
"@babel/polyfill": "^7.4.4",
|
"@babel/polyfill": "^7.4.4",
|
||||||
"@babel/preset-env": "^7.4.5",
|
"@babel/preset-env": "^7.5.5",
|
||||||
"babel-loader": "^8.0.6",
|
"babel-loader": "^8.0.6",
|
||||||
"css-loader": "^3.1.0",
|
"css-loader": "^3.2.0",
|
||||||
"karma": "^4.2.0",
|
"karma": "^4.2.0",
|
||||||
"mini-css-extract-plugin": "^0.8.0",
|
"mini-css-extract-plugin": "^0.8.0",
|
||||||
"style-loader": "^0.23.1",
|
"style-loader": "^1.0.0",
|
||||||
"uglifyjs-webpack-plugin": "^2.1.3",
|
"uglifyjs-webpack-plugin": "^2.2.0",
|
||||||
"url-loader": "^2.1.0",
|
"url-loader": "^2.1.0",
|
||||||
"vue-loader": "^15.7.0",
|
"vue-loader": "^15.7.1",
|
||||||
"vue-style-loader": "^4.1.2",
|
"vue-style-loader": "^4.1.2",
|
||||||
"vue-template-compiler": "^2.6.10",
|
"vue-template-compiler": "^2.6.10",
|
||||||
"webpack": "^4.37.0",
|
"webpack": "^4.39.2",
|
||||||
"webpack-cli": "^3.3.6",
|
"webpack-cli": "^3.3.6",
|
||||||
"webpack-merge": "^4.2.1"
|
"webpack-merge": "^4.2.1"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
OC.L10N.register(
|
OC.L10N.register(
|
||||||
"deck",
|
"deck",
|
||||||
{
|
{
|
||||||
"Please provide a content for your comment." : "Si us plau, proporcioneu un contingut per al vostre comentari.",
|
"Please provide a content for your comment." : "Proporcioneu un contingut per al vostre comentari.",
|
||||||
"Posting the comment failed." : "No s'ha pogut publicar el comentari.",
|
"Posting the comment failed." : "No s'ha pogut publicar el comentari.",
|
||||||
"The comment has been deleted" : "S'ha suprimit el comentari",
|
"The comment has been deleted" : "S'ha suprimit el comentari",
|
||||||
"The associated stack is deleted as well, it will be restored as well." : "La pila associada també se suprimeix, també es restaurarà.",
|
"The associated stack is deleted as well, it will be restored as well." : "La pila associada també se suprimeix, també es restaurarà.",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{ "translations": {
|
{ "translations": {
|
||||||
"Please provide a content for your comment." : "Si us plau, proporcioneu un contingut per al vostre comentari.",
|
"Please provide a content for your comment." : "Proporcioneu un contingut per al vostre comentari.",
|
||||||
"Posting the comment failed." : "No s'ha pogut publicar el comentari.",
|
"Posting the comment failed." : "No s'ha pogut publicar el comentari.",
|
||||||
"The comment has been deleted" : "S'ha suprimit el comentari",
|
"The comment has been deleted" : "S'ha suprimit el comentari",
|
||||||
"The associated stack is deleted as well, it will be restored as well." : "La pila associada també se suprimeix, també es restaurarà.",
|
"The associated stack is deleted as well, it will be restored as well." : "La pila associada també se suprimeix, també es restaurarà.",
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ OC.L10N.register(
|
|||||||
"Deleted items" : "Διαγραμμένα αντικείμενα",
|
"Deleted items" : "Διαγραμμένα αντικείμενα",
|
||||||
"Timeline" : "Χρονοδιάγραμμα",
|
"Timeline" : "Χρονοδιάγραμμα",
|
||||||
"Select users or groups to share with" : "Επιλέξτε χρήστες ή ομάδες με τις οποίες θα μοιραστείτε",
|
"Select users or groups to share with" : "Επιλέξτε χρήστες ή ομάδες με τις οποίες θα μοιραστείτε",
|
||||||
|
"Group" : "Ομάδα",
|
||||||
"No matching user or group found." : "Δεν βρέθηκε χρήστης ή ομάδα να ταιριάζει.",
|
"No matching user or group found." : "Δεν βρέθηκε χρήστης ή ομάδα να ταιριάζει.",
|
||||||
"Loading" : "Γίνεται φόρτωση",
|
"Loading" : "Γίνεται φόρτωση",
|
||||||
"Edit" : "Επεξεργασία",
|
"Edit" : "Επεξεργασία",
|
||||||
|
|||||||
@@ -24,6 +24,7 @@
|
|||||||
"Deleted items" : "Διαγραμμένα αντικείμενα",
|
"Deleted items" : "Διαγραμμένα αντικείμενα",
|
||||||
"Timeline" : "Χρονοδιάγραμμα",
|
"Timeline" : "Χρονοδιάγραμμα",
|
||||||
"Select users or groups to share with" : "Επιλέξτε χρήστες ή ομάδες με τις οποίες θα μοιραστείτε",
|
"Select users or groups to share with" : "Επιλέξτε χρήστες ή ομάδες με τις οποίες θα μοιραστείτε",
|
||||||
|
"Group" : "Ομάδα",
|
||||||
"No matching user or group found." : "Δεν βρέθηκε χρήστης ή ομάδα να ταιριάζει.",
|
"No matching user or group found." : "Δεν βρέθηκε χρήστης ή ομάδα να ταιριάζει.",
|
||||||
"Loading" : "Γίνεται φόρτωση",
|
"Loading" : "Γίνεται φόρτωση",
|
||||||
"Edit" : "Επεξεργασία",
|
"Edit" : "Επεξεργασία",
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ OC.L10N.register(
|
|||||||
"Minutes" : "Minutoj",
|
"Minutes" : "Minutoj",
|
||||||
"Link to a board" : "Ligilo al tabulo",
|
"Link to a board" : "Ligilo al tabulo",
|
||||||
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita",
|
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita",
|
||||||
|
"File already exists" : "La dosiero jam ekzistas",
|
||||||
"You have created a new board {board}" : "Vi kreis novan tabulon {board}",
|
"You have created a new board {board}" : "Vi kreis novan tabulon {board}",
|
||||||
"{user} has created a new board {board}" : "{user} kreis novan tabulon {board}",
|
"{user} has created a new board {board}" : "{user} kreis novan tabulon {board}",
|
||||||
"You have deleted the board {board}" : "Vi forigis tabulon {board}",
|
"You have deleted the board {board}" : "Vi forigis tabulon {board}",
|
||||||
@@ -18,6 +19,7 @@ OC.L10N.register(
|
|||||||
"You have restored the board {board}" : "Vi restaŭris tabulon {board}",
|
"You have restored the board {board}" : "Vi restaŭris tabulon {board}",
|
||||||
"{user} has restored the board {board}" : "{user} restaŭris tabulon {board}",
|
"{user} has restored the board {board}" : "{user} restaŭris tabulon {board}",
|
||||||
"You have shared the board {board} with {acl}" : "Vi kunhavigis tabulon {board} kun {acl}",
|
"You have shared the board {board} with {acl}" : "Vi kunhavigis tabulon {board} kun {acl}",
|
||||||
|
"{user} has shared the board {board} with {acl}" : "{user} kunhavigis tabulon {board} kun {acl}",
|
||||||
"You have removed {acl} from the board {board}" : "Vi forigis {acl} el la tabulo {board}",
|
"You have removed {acl} from the board {board}" : "Vi forigis {acl} el la tabulo {board}",
|
||||||
"{user} has removed {acl} from the board {board}" : "{user} forigis {acl} el la tabulo {board}",
|
"{user} has removed {acl} from the board {board}" : "{user} forigis {acl} el la tabulo {board}",
|
||||||
"You have renamed the board {before} to {board}" : "Vi alinomis la tabulon {before} al {board}",
|
"You have renamed the board {before} to {board}" : "Vi alinomis la tabulon {before} al {board}",
|
||||||
@@ -75,6 +77,7 @@ OC.L10N.register(
|
|||||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Karta priskribo</strong> ene de la aplikaĵo Kartaro ŝanĝiĝis",
|
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Karta priskribo</strong> ene de la aplikaĵo Kartaro ŝanĝiĝis",
|
||||||
"Deck" : "Kartaro",
|
"Deck" : "Kartaro",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Ŝanĝoj en la <strong>aplikaĵo Kartaro</strong>",
|
"Changes in the <strong>Deck app</strong>" : "Ŝanĝoj en la <strong>aplikaĵo Kartaro</strong>",
|
||||||
|
"A <strong>comment</strong> was created on a card" : "<strong>Komento</strong> kreiĝis sur karton",
|
||||||
"Personal" : "Persona",
|
"Personal" : "Persona",
|
||||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La karto „%s“ sur „%s“ estis atribuita al vi de %s.",
|
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La karto „%s“ sur „%s“ estis atribuita al vi de %s.",
|
||||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} atribuis la karton „%s“ sur „%s“ al vi.",
|
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} atribuis la karton „%s“ sur „%s“ al vi.",
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
"Minutes" : "Minutoj",
|
"Minutes" : "Minutoj",
|
||||||
"Link to a board" : "Ligilo al tabulo",
|
"Link to a board" : "Ligilo al tabulo",
|
||||||
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita",
|
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita",
|
||||||
|
"File already exists" : "La dosiero jam ekzistas",
|
||||||
"You have created a new board {board}" : "Vi kreis novan tabulon {board}",
|
"You have created a new board {board}" : "Vi kreis novan tabulon {board}",
|
||||||
"{user} has created a new board {board}" : "{user} kreis novan tabulon {board}",
|
"{user} has created a new board {board}" : "{user} kreis novan tabulon {board}",
|
||||||
"You have deleted the board {board}" : "Vi forigis tabulon {board}",
|
"You have deleted the board {board}" : "Vi forigis tabulon {board}",
|
||||||
@@ -16,6 +17,7 @@
|
|||||||
"You have restored the board {board}" : "Vi restaŭris tabulon {board}",
|
"You have restored the board {board}" : "Vi restaŭris tabulon {board}",
|
||||||
"{user} has restored the board {board}" : "{user} restaŭris tabulon {board}",
|
"{user} has restored the board {board}" : "{user} restaŭris tabulon {board}",
|
||||||
"You have shared the board {board} with {acl}" : "Vi kunhavigis tabulon {board} kun {acl}",
|
"You have shared the board {board} with {acl}" : "Vi kunhavigis tabulon {board} kun {acl}",
|
||||||
|
"{user} has shared the board {board} with {acl}" : "{user} kunhavigis tabulon {board} kun {acl}",
|
||||||
"You have removed {acl} from the board {board}" : "Vi forigis {acl} el la tabulo {board}",
|
"You have removed {acl} from the board {board}" : "Vi forigis {acl} el la tabulo {board}",
|
||||||
"{user} has removed {acl} from the board {board}" : "{user} forigis {acl} el la tabulo {board}",
|
"{user} has removed {acl} from the board {board}" : "{user} forigis {acl} el la tabulo {board}",
|
||||||
"You have renamed the board {before} to {board}" : "Vi alinomis la tabulon {before} al {board}",
|
"You have renamed the board {before} to {board}" : "Vi alinomis la tabulon {before} al {board}",
|
||||||
@@ -73,6 +75,7 @@
|
|||||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Karta priskribo</strong> ene de la aplikaĵo Kartaro ŝanĝiĝis",
|
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Karta priskribo</strong> ene de la aplikaĵo Kartaro ŝanĝiĝis",
|
||||||
"Deck" : "Kartaro",
|
"Deck" : "Kartaro",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Ŝanĝoj en la <strong>aplikaĵo Kartaro</strong>",
|
"Changes in the <strong>Deck app</strong>" : "Ŝanĝoj en la <strong>aplikaĵo Kartaro</strong>",
|
||||||
|
"A <strong>comment</strong> was created on a card" : "<strong>Komento</strong> kreiĝis sur karton",
|
||||||
"Personal" : "Persona",
|
"Personal" : "Persona",
|
||||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La karto „%s“ sur „%s“ estis atribuita al vi de %s.",
|
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La karto „%s“ sur „%s“ estis atribuita al vi de %s.",
|
||||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} atribuis la karton „%s“ sur „%s“ al vi.",
|
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} atribuis la karton „%s“ sur „%s“ al vi.",
|
||||||
|
|||||||
65
l10n/fi.js
65
l10n/fi.js
@@ -1,11 +1,37 @@
|
|||||||
OC.L10N.register(
|
OC.L10N.register(
|
||||||
"deck",
|
"deck",
|
||||||
{
|
{
|
||||||
|
"Please provide a content for your comment." : "Kirjoita sisältö kommenttiisi.",
|
||||||
|
"Posting the comment failed." : "Kommentin lähettäminen epäonnistui.",
|
||||||
|
"The comment has been deleted" : "Kommentti on poistettu",
|
||||||
"Remove user from card" : "Poista käyttäjä kortilta",
|
"Remove user from card" : "Poista käyttäjä kortilta",
|
||||||
"Hours" : "Tunnit",
|
"Hours" : "Tunnit",
|
||||||
"Minutes" : "Minuutit",
|
"Minutes" : "Minuutit",
|
||||||
|
"Link to a board" : "Linkki taululle",
|
||||||
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
|
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
|
||||||
|
"File already exists" : "Tiedosto on jo olemassa",
|
||||||
|
"You have created a new board {board}" : "Loit uuden taulun {board}",
|
||||||
|
"{user} has created a new board {board}" : "{user} loi uuden taulun {board}",
|
||||||
|
"You have deleted the board {board}" : "Poistit taulun {board}",
|
||||||
|
"{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 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 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 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 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",
|
"Deck" : "Kansi",
|
||||||
|
"A <strong>comment</strong> was created on a card" : "<strong>Kommentti</strong> luotiin kortille",
|
||||||
|
"Personal" : "Henkilökohtainen",
|
||||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
||||||
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
|
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
|
||||||
"{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.",
|
"{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.",
|
||||||
@@ -13,32 +39,61 @@ OC.L10N.register(
|
|||||||
"To review" : "Arvostella",
|
"To review" : "Arvostella",
|
||||||
"Action needed" : "Toimia vaaditaan",
|
"Action needed" : "Toimia vaaditaan",
|
||||||
"Later" : "Myöhemmin",
|
"Later" : "Myöhemmin",
|
||||||
|
"To do" : "Odottaa",
|
||||||
|
"Doing" : "Tekeillä",
|
||||||
|
"Done" : "Valmis",
|
||||||
|
"Example Task 3" : "Esimerkkitehtävä 3",
|
||||||
|
"Example Task 2" : "Esimerkkitehtävä 2",
|
||||||
|
"Example Task 1" : "Esimerkkitehtävä 1",
|
||||||
"The file was uploaded" : "Tiedosto lähetettiin",
|
"The file was uploaded" : "Tiedosto lähetettiin",
|
||||||
"The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain",
|
"The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain",
|
||||||
"No file was uploaded" : "Tiedostoa ei lähetetty",
|
"No file was uploaded" : "Tiedostoa ei lähetetty",
|
||||||
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
|
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
|
||||||
"A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille",
|
"A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille",
|
||||||
|
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
|
||||||
|
"Select board" : "Valitse taulu",
|
||||||
"Add a new stack" : "Lisää uusi pino",
|
"Add a new stack" : "Lisää uusi pino",
|
||||||
|
"Submit" : "Lähetä",
|
||||||
"Show archived cards" : "Näytä arkistoidut kortit",
|
"Show archived cards" : "Näytä arkistoidut kortit",
|
||||||
"Hide archived cards" : "Piilota arkistoidut kortit",
|
"Hide archived cards" : "Piilota arkistoidut kortit",
|
||||||
|
"Show board details" : "Näytä taulun tiedot",
|
||||||
"All Boards" : "Kaikki taulut",
|
"All Boards" : "Kaikki taulut",
|
||||||
"Archived boards" : "Arkistoidut taulut",
|
"Archived boards" : "Arkistoidut taulut",
|
||||||
|
"Share board" : "Jaa taulu",
|
||||||
|
"Archived cards" : "Arkistoidut kortit",
|
||||||
|
"Actions" : "Toiminnot",
|
||||||
"Drop your files here to upload it to the card" : "Pudota tiedostot tähän lähettääksesi ne kortille",
|
"Drop your files here to upload it to the card" : "Pudota tiedostot tähän lähettääksesi ne kortille",
|
||||||
|
"Assign card to me" : "Määritä kortti minulle",
|
||||||
|
"Unassign card from me" : "Poista kortin määritys minulta",
|
||||||
|
"Archive card" : "Arkistoi kortti",
|
||||||
|
"Unarchive card" : "Poista kortti arkistosta",
|
||||||
|
"Delete card" : "Poista kortti",
|
||||||
"Enter a card title" : "Anna otsikko",
|
"Enter a card title" : "Anna otsikko",
|
||||||
"Add card" : "Lisää kortti",
|
"Add card" : "Lisää kortti",
|
||||||
"Close" : "Sulje",
|
"Close" : "Sulje",
|
||||||
"Sharing" : "Jakaminen",
|
"Sharing" : "Jakaminen",
|
||||||
"Tags" : "Tunnisteet",
|
"Tags" : "Tunnisteet",
|
||||||
|
"Deleted items" : "Poistetut tietueet",
|
||||||
|
"Timeline" : "Aikajana",
|
||||||
"Select users or groups to share with" : "Valitse käyttäjiä tai ryhmiä joille haluat jakaa",
|
"Select users or groups to share with" : "Valitse käyttäjiä tai ryhmiä joille haluat jakaa",
|
||||||
|
"Group" : "Ryhmä",
|
||||||
|
"Circle" : "Piiri",
|
||||||
"No matching user or group found." : "Käyttäjää tai ryhmää ei löytynyt.",
|
"No matching user or group found." : "Käyttäjää tai ryhmää ei löytynyt.",
|
||||||
"Loading" : "Ladataan",
|
"Loading" : "Ladataan",
|
||||||
"Edit" : "Muokkaa",
|
"Edit" : "Muokkaa",
|
||||||
"Share" : "Jaa",
|
"Share" : "Jaa",
|
||||||
"Manage" : "Hallitse",
|
"Manage" : "Hallitse",
|
||||||
"Discard share" : "Peru jakaminen",
|
"Discard share" : "Peru jakaminen",
|
||||||
|
"Sharing has been disabled for your account." : "Jakaminen on poistettu käytöstä tililtäsi.",
|
||||||
|
"Update tag" : "Päivitä tunniste",
|
||||||
|
"Edit tag" : "Muokkaa tunnistetta",
|
||||||
|
"Delete tag" : "Poista tunniste",
|
||||||
"Create" : "Luo",
|
"Create" : "Luo",
|
||||||
"Create a new tag" : "Luo uusi tunniste",
|
"Create a new tag" : "Luo uusi tunniste",
|
||||||
|
"Deleted cards" : "Poistetut kortit",
|
||||||
"Status" : "Tila",
|
"Status" : "Tila",
|
||||||
|
"No archived boards to display" : "Ei arkistoituja tauluja näytettäväksi",
|
||||||
|
"No shared boards to display" : "Ei jaettuja tauluja näytettäväksi",
|
||||||
"Title" : "Otsikko",
|
"Title" : "Otsikko",
|
||||||
"Members" : "Jäsenet",
|
"Members" : "Jäsenet",
|
||||||
"More actions" : "Lisää toimintoja",
|
"More actions" : "Lisää toimintoja",
|
||||||
@@ -46,11 +101,17 @@ OC.L10N.register(
|
|||||||
"Archive board" : "Arkistoi taulu",
|
"Archive board" : "Arkistoi taulu",
|
||||||
"Unarchive board" : "Kumoa taulun arkistointi",
|
"Unarchive board" : "Kumoa taulun arkistointi",
|
||||||
"Delete board" : "Poista taulu",
|
"Delete board" : "Poista taulu",
|
||||||
|
"Update board" : "Päivitä taulu",
|
||||||
|
"Reset board" : "Nollaa taulu",
|
||||||
"Create new board" : "Luo uusi taulu",
|
"Create new board" : "Luo uusi taulu",
|
||||||
"New board title" : "Uusi taulun otsikko",
|
"New board title" : "Uusi taulun otsikko",
|
||||||
|
"Create board" : "Luo taulu",
|
||||||
"Select an attachment" : "Valitse liite",
|
"Select an attachment" : "Valitse liite",
|
||||||
|
"Cancel upload" : "Peruuta lähetys",
|
||||||
"by" : " Kirjoittaja:",
|
"by" : " Kirjoittaja:",
|
||||||
"Undo file deletion" : "Kumoa tiedoston luonti",
|
"Undo file deletion" : "Kumoa tiedoston luonti",
|
||||||
|
"Insert the file into the description" : "Lisää tiedosto kuvaukseen",
|
||||||
|
"Delete attachment" : "Poista liite",
|
||||||
"Modified:" : "Muokattu:",
|
"Modified:" : "Muokattu:",
|
||||||
"Created:" : "Luotu:",
|
"Created:" : "Luotu:",
|
||||||
"Choose a tag" : "Valitse tunniste",
|
"Choose a tag" : "Valitse tunniste",
|
||||||
@@ -66,11 +127,13 @@ OC.L10N.register(
|
|||||||
"Attachments" : "Liitteet",
|
"Attachments" : "Liitteet",
|
||||||
"Saved" : "Tallennettu",
|
"Saved" : "Tallennettu",
|
||||||
"Unsaved changes" : "Tallentamattomia muutoksia",
|
"Unsaved changes" : "Tallentamattomia muutoksia",
|
||||||
|
"Insert attachment" : "Lisää liite",
|
||||||
"Formatting help" : "Muotoiluapu",
|
"Formatting help" : "Muotoiluapu",
|
||||||
"Upload attachment" : "Lähetä liite",
|
"Upload attachment" : "Lähetä liite",
|
||||||
"Add a card description…" : "Lisää kortin kuvaus…",
|
"Add a card description…" : "Lisää kortin kuvaus…",
|
||||||
"Shared boards" : "Jaetut taulut",
|
"Shared boards" : "Jaetut taulut",
|
||||||
"Move board to archive" : "Siirrä taulu arkistoon",
|
"Move board to archive" : "Siirrä taulu arkistoon",
|
||||||
"Create a new board" : "Luo uusi taulu"
|
"Create a new board" : "Luo uusi taulu",
|
||||||
|
"Settings" : "Asetukset"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|||||||
65
l10n/fi.json
65
l10n/fi.json
@@ -1,9 +1,35 @@
|
|||||||
{ "translations": {
|
{ "translations": {
|
||||||
|
"Please provide a content for your comment." : "Kirjoita sisältö kommenttiisi.",
|
||||||
|
"Posting the comment failed." : "Kommentin lähettäminen epäonnistui.",
|
||||||
|
"The comment has been deleted" : "Kommentti on poistettu",
|
||||||
"Remove user from card" : "Poista käyttäjä kortilta",
|
"Remove user from card" : "Poista käyttäjä kortilta",
|
||||||
"Hours" : "Tunnit",
|
"Hours" : "Tunnit",
|
||||||
"Minutes" : "Minuutit",
|
"Minutes" : "Minuutit",
|
||||||
|
"Link to a board" : "Linkki taululle",
|
||||||
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
|
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
|
||||||
|
"File already exists" : "Tiedosto on jo olemassa",
|
||||||
|
"You have created a new board {board}" : "Loit uuden taulun {board}",
|
||||||
|
"{user} has created a new board {board}" : "{user} loi uuden taulun {board}",
|
||||||
|
"You have deleted the board {board}" : "Poistit taulun {board}",
|
||||||
|
"{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 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 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 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 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",
|
"Deck" : "Kansi",
|
||||||
|
"A <strong>comment</strong> was created on a card" : "<strong>Kommentti</strong> luotiin kortille",
|
||||||
|
"Personal" : "Henkilökohtainen",
|
||||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
||||||
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
|
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
|
||||||
"{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.",
|
"{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.",
|
||||||
@@ -11,32 +37,61 @@
|
|||||||
"To review" : "Arvostella",
|
"To review" : "Arvostella",
|
||||||
"Action needed" : "Toimia vaaditaan",
|
"Action needed" : "Toimia vaaditaan",
|
||||||
"Later" : "Myöhemmin",
|
"Later" : "Myöhemmin",
|
||||||
|
"To do" : "Odottaa",
|
||||||
|
"Doing" : "Tekeillä",
|
||||||
|
"Done" : "Valmis",
|
||||||
|
"Example Task 3" : "Esimerkkitehtävä 3",
|
||||||
|
"Example Task 2" : "Esimerkkitehtävä 2",
|
||||||
|
"Example Task 1" : "Esimerkkitehtävä 1",
|
||||||
"The file was uploaded" : "Tiedosto lähetettiin",
|
"The file was uploaded" : "Tiedosto lähetettiin",
|
||||||
"The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain",
|
"The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain",
|
||||||
"No file was uploaded" : "Tiedostoa ei lähetetty",
|
"No file was uploaded" : "Tiedostoa ei lähetetty",
|
||||||
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
|
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
|
||||||
"A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille",
|
"A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille",
|
||||||
|
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
|
||||||
|
"Select board" : "Valitse taulu",
|
||||||
"Add a new stack" : "Lisää uusi pino",
|
"Add a new stack" : "Lisää uusi pino",
|
||||||
|
"Submit" : "Lähetä",
|
||||||
"Show archived cards" : "Näytä arkistoidut kortit",
|
"Show archived cards" : "Näytä arkistoidut kortit",
|
||||||
"Hide archived cards" : "Piilota arkistoidut kortit",
|
"Hide archived cards" : "Piilota arkistoidut kortit",
|
||||||
|
"Show board details" : "Näytä taulun tiedot",
|
||||||
"All Boards" : "Kaikki taulut",
|
"All Boards" : "Kaikki taulut",
|
||||||
"Archived boards" : "Arkistoidut taulut",
|
"Archived boards" : "Arkistoidut taulut",
|
||||||
|
"Share board" : "Jaa taulu",
|
||||||
|
"Archived cards" : "Arkistoidut kortit",
|
||||||
|
"Actions" : "Toiminnot",
|
||||||
"Drop your files here to upload it to the card" : "Pudota tiedostot tähän lähettääksesi ne kortille",
|
"Drop your files here to upload it to the card" : "Pudota tiedostot tähän lähettääksesi ne kortille",
|
||||||
|
"Assign card to me" : "Määritä kortti minulle",
|
||||||
|
"Unassign card from me" : "Poista kortin määritys minulta",
|
||||||
|
"Archive card" : "Arkistoi kortti",
|
||||||
|
"Unarchive card" : "Poista kortti arkistosta",
|
||||||
|
"Delete card" : "Poista kortti",
|
||||||
"Enter a card title" : "Anna otsikko",
|
"Enter a card title" : "Anna otsikko",
|
||||||
"Add card" : "Lisää kortti",
|
"Add card" : "Lisää kortti",
|
||||||
"Close" : "Sulje",
|
"Close" : "Sulje",
|
||||||
"Sharing" : "Jakaminen",
|
"Sharing" : "Jakaminen",
|
||||||
"Tags" : "Tunnisteet",
|
"Tags" : "Tunnisteet",
|
||||||
|
"Deleted items" : "Poistetut tietueet",
|
||||||
|
"Timeline" : "Aikajana",
|
||||||
"Select users or groups to share with" : "Valitse käyttäjiä tai ryhmiä joille haluat jakaa",
|
"Select users or groups to share with" : "Valitse käyttäjiä tai ryhmiä joille haluat jakaa",
|
||||||
|
"Group" : "Ryhmä",
|
||||||
|
"Circle" : "Piiri",
|
||||||
"No matching user or group found." : "Käyttäjää tai ryhmää ei löytynyt.",
|
"No matching user or group found." : "Käyttäjää tai ryhmää ei löytynyt.",
|
||||||
"Loading" : "Ladataan",
|
"Loading" : "Ladataan",
|
||||||
"Edit" : "Muokkaa",
|
"Edit" : "Muokkaa",
|
||||||
"Share" : "Jaa",
|
"Share" : "Jaa",
|
||||||
"Manage" : "Hallitse",
|
"Manage" : "Hallitse",
|
||||||
"Discard share" : "Peru jakaminen",
|
"Discard share" : "Peru jakaminen",
|
||||||
|
"Sharing has been disabled for your account." : "Jakaminen on poistettu käytöstä tililtäsi.",
|
||||||
|
"Update tag" : "Päivitä tunniste",
|
||||||
|
"Edit tag" : "Muokkaa tunnistetta",
|
||||||
|
"Delete tag" : "Poista tunniste",
|
||||||
"Create" : "Luo",
|
"Create" : "Luo",
|
||||||
"Create a new tag" : "Luo uusi tunniste",
|
"Create a new tag" : "Luo uusi tunniste",
|
||||||
|
"Deleted cards" : "Poistetut kortit",
|
||||||
"Status" : "Tila",
|
"Status" : "Tila",
|
||||||
|
"No archived boards to display" : "Ei arkistoituja tauluja näytettäväksi",
|
||||||
|
"No shared boards to display" : "Ei jaettuja tauluja näytettäväksi",
|
||||||
"Title" : "Otsikko",
|
"Title" : "Otsikko",
|
||||||
"Members" : "Jäsenet",
|
"Members" : "Jäsenet",
|
||||||
"More actions" : "Lisää toimintoja",
|
"More actions" : "Lisää toimintoja",
|
||||||
@@ -44,11 +99,17 @@
|
|||||||
"Archive board" : "Arkistoi taulu",
|
"Archive board" : "Arkistoi taulu",
|
||||||
"Unarchive board" : "Kumoa taulun arkistointi",
|
"Unarchive board" : "Kumoa taulun arkistointi",
|
||||||
"Delete board" : "Poista taulu",
|
"Delete board" : "Poista taulu",
|
||||||
|
"Update board" : "Päivitä taulu",
|
||||||
|
"Reset board" : "Nollaa taulu",
|
||||||
"Create new board" : "Luo uusi taulu",
|
"Create new board" : "Luo uusi taulu",
|
||||||
"New board title" : "Uusi taulun otsikko",
|
"New board title" : "Uusi taulun otsikko",
|
||||||
|
"Create board" : "Luo taulu",
|
||||||
"Select an attachment" : "Valitse liite",
|
"Select an attachment" : "Valitse liite",
|
||||||
|
"Cancel upload" : "Peruuta lähetys",
|
||||||
"by" : " Kirjoittaja:",
|
"by" : " Kirjoittaja:",
|
||||||
"Undo file deletion" : "Kumoa tiedoston luonti",
|
"Undo file deletion" : "Kumoa tiedoston luonti",
|
||||||
|
"Insert the file into the description" : "Lisää tiedosto kuvaukseen",
|
||||||
|
"Delete attachment" : "Poista liite",
|
||||||
"Modified:" : "Muokattu:",
|
"Modified:" : "Muokattu:",
|
||||||
"Created:" : "Luotu:",
|
"Created:" : "Luotu:",
|
||||||
"Choose a tag" : "Valitse tunniste",
|
"Choose a tag" : "Valitse tunniste",
|
||||||
@@ -64,11 +125,13 @@
|
|||||||
"Attachments" : "Liitteet",
|
"Attachments" : "Liitteet",
|
||||||
"Saved" : "Tallennettu",
|
"Saved" : "Tallennettu",
|
||||||
"Unsaved changes" : "Tallentamattomia muutoksia",
|
"Unsaved changes" : "Tallentamattomia muutoksia",
|
||||||
|
"Insert attachment" : "Lisää liite",
|
||||||
"Formatting help" : "Muotoiluapu",
|
"Formatting help" : "Muotoiluapu",
|
||||||
"Upload attachment" : "Lähetä liite",
|
"Upload attachment" : "Lähetä liite",
|
||||||
"Add a card description…" : "Lisää kortin kuvaus…",
|
"Add a card description…" : "Lisää kortin kuvaus…",
|
||||||
"Shared boards" : "Jaetut taulut",
|
"Shared boards" : "Jaetut taulut",
|
||||||
"Move board to archive" : "Siirrä taulu arkistoon",
|
"Move board to archive" : "Siirrä taulu arkistoon",
|
||||||
"Create a new board" : "Luo uusi taulu"
|
"Create a new board" : "Luo uusi taulu",
|
||||||
|
"Settings" : "Asetukset"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
@@ -189,7 +189,7 @@ OC.L10N.register(
|
|||||||
"Attachments" : "Viðhengi",
|
"Attachments" : "Viðhengi",
|
||||||
"Saved" : "Vistað",
|
"Saved" : "Vistað",
|
||||||
"Unsaved changes" : "Óvistaðar breytingar",
|
"Unsaved changes" : "Óvistaðar breytingar",
|
||||||
"Insert attachment" : "Setja inn Viðhengi",
|
"Insert attachment" : "Setja inn viðhengi",
|
||||||
"Formatting help" : "Hjálp við að sníða",
|
"Formatting help" : "Hjálp við að sníða",
|
||||||
"Upload attachment" : "Senda inn viðhengi",
|
"Upload attachment" : "Senda inn viðhengi",
|
||||||
"Add a card description…" : "Settu inn lýsingu á spjaldi ...",
|
"Add a card description…" : "Settu inn lýsingu á spjaldi ...",
|
||||||
|
|||||||
@@ -187,7 +187,7 @@
|
|||||||
"Attachments" : "Viðhengi",
|
"Attachments" : "Viðhengi",
|
||||||
"Saved" : "Vistað",
|
"Saved" : "Vistað",
|
||||||
"Unsaved changes" : "Óvistaðar breytingar",
|
"Unsaved changes" : "Óvistaðar breytingar",
|
||||||
"Insert attachment" : "Setja inn Viðhengi",
|
"Insert attachment" : "Setja inn viðhengi",
|
||||||
"Formatting help" : "Hjálp við að sníða",
|
"Formatting help" : "Hjálp við að sníða",
|
||||||
"Upload attachment" : "Senda inn viðhengi",
|
"Upload attachment" : "Senda inn viðhengi",
|
||||||
"Add a card description…" : "Settu inn lýsingu á spjaldi ...",
|
"Add a card description…" : "Settu inn lýsingu á spjaldi ...",
|
||||||
|
|||||||
69
l10n/ja.js
69
l10n/ja.js
@@ -9,7 +9,9 @@ OC.L10N.register(
|
|||||||
"Remove user from card" : "カードからユーザーを削除",
|
"Remove user from card" : "カードからユーザーを削除",
|
||||||
"Hours" : "時間",
|
"Hours" : "時間",
|
||||||
"Minutes" : "分",
|
"Minutes" : "分",
|
||||||
|
"Link to a board" : "ボードへのリンク",
|
||||||
"Maximum file size of {size} exceeded" : "最大ファイルサイズ({size})を超えています",
|
"Maximum file size of {size} exceeded" : "最大ファイルサイズ({size})を超えています",
|
||||||
|
"File already exists" : "ファイルはすでに存在します",
|
||||||
"You have created a new board {board}" : "あなたは新しいボード {board} を作成しました。",
|
"You have created a new board {board}" : "あなたは新しいボード {board} を作成しました。",
|
||||||
"{user} has created a new board {board}" : "{user} が新しいボード {board} を作成しました",
|
"{user} has created a new board {board}" : "{user} が新しいボード {board} を作成しました",
|
||||||
"You have deleted the board {board}" : "あなたはボード {board} を削除しました。",
|
"You have deleted the board {board}" : "あなたはボード {board} を削除しました。",
|
||||||
@@ -17,6 +19,7 @@ OC.L10N.register(
|
|||||||
"You have restored the board {board}" : "あなたはボード {board} を復元しました。",
|
"You have restored the board {board}" : "あなたはボード {board} を復元しました。",
|
||||||
"{user} has restored the board {board}" : "{user} がボード {board} を復元しました",
|
"{user} has restored the board {board}" : "{user} がボード {board} を復元しました",
|
||||||
"You have shared the board {board} with {acl}" : "あなたはボード {board} を {acl} と共有しました。",
|
"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} から削除しました。",
|
"You have removed {acl} from the board {board}" : "{acl} をボード {board} から削除しました。",
|
||||||
"{user} has removed {acl} from the board {board}" : "{user} がボード {board} から {acl} を削除しました",
|
"{user} has removed {acl} from the board {board}" : "{user} がボード {board} から {acl} を削除しました",
|
||||||
"You have renamed the board {before} to {board}" : "あなたは {before} のボードの名前を {board} に変更しました",
|
"You have renamed the board {before} to {board}" : "あなたは {before} のボードの名前を {board} に変更しました",
|
||||||
@@ -34,10 +37,55 @@ OC.L10N.register(
|
|||||||
"You have created card {card} in stack {stack} on board {board}" : "{board} の {stack} に {card} を作成しました。",
|
"You have created card {card} in stack {stack} on board {board}" : "{board} の {stack} に {card} を作成しました。",
|
||||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} が {board} の {stack} に {card} を作成しました",
|
"{user} has created card {card} in stack {stack} on board {board}" : "{user} が {board} の {stack} に {card} を作成しました",
|
||||||
"You have deleted card {card} in stack {stack} on board {board}" : "{board} の {stack} で {card} を削除しました。",
|
"You have deleted card {card} in stack {stack} on board {board}" : "{board} の {stack} で {card} を削除しました。",
|
||||||
"You have renamed the card {before} to {card}" : "あなたはカード {before} の名前を {card} に変更しました",
|
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user}がボード{board}のスタック{stack}のカード{card}を削除しました",
|
||||||
|
"You have renamed the card {before} to {card}" : "カード {before} の名前を {card} に変更しました",
|
||||||
"{user} has renamed the card {before} to {card}" : "{user} が {before} カードの名前を {card} に変更しました",
|
"{user} has renamed the card {before} to {card}" : "{user} が {before} カードの名前を {card} に変更しました",
|
||||||
|
"You have added a description to card {card} in stack {stack} on board {board}" : "ボード{board}のスタック{stack} のカード{card}に説明を追加しました",
|
||||||
|
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user}がボード{board}のスタック{stack}のカード{card}に説明を追加しました",
|
||||||
|
"You have updated the description of card {card} in stack {stack} on board {board}" : "ボード{board}のスタック{stack}のカード{card}の説明を更新しました",
|
||||||
|
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user}はボード{board}のスタック{stack}のカード{card}の説明を更新しました",
|
||||||
|
"You have archived card {card} in stack {stack} on board {board}" : "ボード {board}上のスタック {stack}にあるカード {card} をアーカイブしました",
|
||||||
|
"{user} has archived card {card} in stack {stack} on board {board}" : "{user}がボード{board}のスタック{stack}にカード{card}をアーカイブしました",
|
||||||
|
"You have unarchived card {card} in stack {stack} on board {board}" : "ボード{board}のスタック{stack}に未アーカイブのカード{card}があります",
|
||||||
|
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user}がボード {board}上のスタック {stack}にあるカード {card} をアーカイブ解除しました",
|
||||||
|
"You have removed the due date of card {card}" : "カード{card}の期日を削除しました",
|
||||||
|
"{user} has removed the due date of card {card}" : "{user}がカード{card}の期日を削除しました",
|
||||||
|
"You have set the due date of card {card} to {after}" : "カード{card}の期日を{after}に設定しました",
|
||||||
|
"{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}" : "ボード{board}のスタック{stack}のカード{card}にタグ{label}を追加しました",
|
||||||
|
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user}がボード{board}のスタック{stack}のカード{card}にタグ{label}を追加しました",
|
||||||
|
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "ボード{board}のスタック{stack}のカード{card}からタグ{label}を削除しました",
|
||||||
|
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user}がボード{board}のスタック{stack}のカード{card}からタグ{label}を削除しました",
|
||||||
|
"You have assigned {assigneduser} to card {card} on board {board}" : "ボード{board}のカード{card}に{assigneduser}を割り当てました",
|
||||||
|
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user}がボード{board}のカード{card}に{assigneduser}を割り当てました",
|
||||||
|
"You have unassigned {assigneduser} from card {card} on board {board}" : "ボード{board}のカード{card}から{assigneduser} の割り当てが解除されました",
|
||||||
|
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user}がボード{board}のカード{card}から{assigneduser}の割り当てを解除されました",
|
||||||
|
"You have moved the card {card} from stack {stackBefore} to {stack}" : "カード{card}をスタック{stackBefore}から{stack}に移動しました",
|
||||||
|
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user}がカード{card}をスタック{stackBefore}から{stack}に移動しました",
|
||||||
|
"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}にコメントしました",
|
||||||
|
"{user} has commented on card {card}" : "{user}がカード{card}にコメントしました",
|
||||||
|
"A <strong>card description</strong> inside the Deck app has been changed" : "デッキアプリ内の<strong>カードの説明</strong>が変更されました",
|
||||||
"Deck" : "デッキ",
|
"Deck" : "デッキ",
|
||||||
|
"Changes in the <strong>Deck app</strong>" : "<strong>デッキアプリ</strong>の変更点",
|
||||||
|
"A <strong>comment</strong> was created on a card" : "カードに<strong>コメント</strong>が作成されたとき",
|
||||||
"Personal" : "個人",
|
"Personal" : "個人",
|
||||||
|
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "カード \"%s\"(\"%s\"に所属)が%sによってあなたに割り当てられました。",
|
||||||
|
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user}はあなたに カード \"%s\"(\"%s\"に所属)を割り当てました。",
|
||||||
|
"The card \"%s\" on \"%s\" has reached its due date." : "カード \"%s\"(\"%s\"に所属)は期日に達しました。",
|
||||||
|
"%s has mentioned you in a comment on \"%s\"." : "%sさんは \"%s\"へのコメントであなたについて言及しました。",
|
||||||
|
"{user} has mentioned you in a comment on \"%s\"." : "{user} は \"%s\"へのコメントであなたについて言及しました。",
|
||||||
|
"The board \"%s\" has been shared with you by %s." : "\"%s\" ボードは、%s からあなたに共有されています。",
|
||||||
|
"{user} has shared the board %s with you." : "{user}があなたとボード%sを共有しました。",
|
||||||
"No data was provided to create an attachment." : "添付ファイルを作成するためのデータは提供されていません。",
|
"No data was provided to create an attachment." : "添付ファイルを作成するためのデータは提供されていません。",
|
||||||
"Finished" : "完了",
|
"Finished" : "完了",
|
||||||
"To review" : "レビューする",
|
"To review" : "レビューする",
|
||||||
@@ -58,6 +106,10 @@ OC.L10N.register(
|
|||||||
"Could not write file to disk" : "ディスクにファイルを書き込めませんでした",
|
"Could not write file to disk" : "ディスクにファイルを書き込めませんでした",
|
||||||
"A PHP extension stopped the file upload" : "PHP拡張でファイルのアップロードが停止されています",
|
"A PHP extension stopped the file upload" : "PHP拡張でファイルのアップロードが停止されています",
|
||||||
"No file uploaded or file size exceeds maximum of %s" : "ファイルがアップロードされていないか、ファイルサイズが最大 %s を超えています",
|
"No file uploaded or file size exceeds maximum of %s" : "ファイルがアップロードされていないか、ファイルサイズが最大 %s を超えています",
|
||||||
|
"A kanban style project and personal management tool for Nextcloud" : "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はNextcloudと統合した、チームの個人計画とプロジェクトの組織化を目的としたカンバンスタイルの組織ツールです。\n\n\n- 📥 タスクをカードに追加して整理する\n- 📄 マークダウンで追加のメモを書き留めます\n- 🔖 より良い組織のためにラベルを割り当てる\n- 👥 あなたのチーム、友人、家族と共有する\n- 📎 ファイルを添付してマークダウンの説明に埋め込む\n- 💬 コメントを使ってあなたのチームと話し合う\n- ⚡ アクティビティの流れの変化を追跡する\n- 🚀 プロジェクトを整理する",
|
||||||
|
"Select the board to link to a project" : "プロジェクトにリンクするボードを選択",
|
||||||
|
"Select board" : "ボードを選択",
|
||||||
"Add a new stack" : "新しいスタックを追加する",
|
"Add a new stack" : "新しいスタックを追加する",
|
||||||
"Submit" : "了解",
|
"Submit" : "了解",
|
||||||
"Show archived cards" : "アーカイブされたカードを表示する",
|
"Show archived cards" : "アーカイブされたカードを表示する",
|
||||||
@@ -67,13 +119,14 @@ OC.L10N.register(
|
|||||||
"All Boards" : "すべてのボード",
|
"All Boards" : "すべてのボード",
|
||||||
"Archived boards" : "アーカイブ済みのボード",
|
"Archived boards" : "アーカイブ済みのボード",
|
||||||
"Share board" : "ボードを共有",
|
"Share board" : "ボードを共有",
|
||||||
|
"Archived cards" : "カードをアーカイブ",
|
||||||
"Actions" : "アクション",
|
"Actions" : "アクション",
|
||||||
"Drop your files here to upload it to the card" : "ファイルをここにドロップしてカードをアップロードします",
|
"Drop your files here to upload it to the card" : "ファイルをここにドロップしてカードをアップロードします",
|
||||||
"Assign card to me" : "私にカードを割り当てる",
|
"Assign card to me" : "カードを自分に割り当てる",
|
||||||
"Unassign card from me" : "カードの割り当てを解除する",
|
"Unassign card from me" : "カードの割り当てを解除する",
|
||||||
"Archive card" : "カードをアーカイブ",
|
"Archive card" : "カードをアーカイブ",
|
||||||
"Unarchive card" : "カードのアーカイブを解除する",
|
"Unarchive card" : "カードのアーカイブを解除する",
|
||||||
"Delete card" : "削除済みのカード",
|
"Delete card" : "カードを削除する",
|
||||||
"Enter a card title" : "カードのタイトルを入力してください",
|
"Enter a card title" : "カードのタイトルを入力してください",
|
||||||
"Add card" : "カードを追加",
|
"Add card" : "カードを追加",
|
||||||
"Close" : "閉じる",
|
"Close" : "閉じる",
|
||||||
@@ -82,12 +135,15 @@ OC.L10N.register(
|
|||||||
"Deleted items" : "削除されたアイテム",
|
"Deleted items" : "削除されたアイテム",
|
||||||
"Timeline" : "タイムライン",
|
"Timeline" : "タイムライン",
|
||||||
"Select users or groups to share with" : "共有するユーザーまたはグループを選択する",
|
"Select users or groups to share with" : "共有するユーザーまたはグループを選択する",
|
||||||
|
"Group" : "グループ",
|
||||||
|
"Circle" : "サークル",
|
||||||
"No matching user or group found." : "一致するユーザーまたはグループが見つかりません。",
|
"No matching user or group found." : "一致するユーザーまたはグループが見つかりません。",
|
||||||
"Loading" : "読み込み中",
|
"Loading" : "読み込み中",
|
||||||
"Edit" : "編集",
|
"Edit" : "編集",
|
||||||
"Share" : "共有",
|
"Share" : "共有",
|
||||||
"Manage" : "管理",
|
"Manage" : "管理",
|
||||||
"Discard share" : "共有をやめる",
|
"Discard share" : "共有をやめる",
|
||||||
|
"Sharing has been disabled for your account." : "あなたのアカウントでは共有が無効になっています",
|
||||||
"Update tag" : "タグを更新する",
|
"Update tag" : "タグを更新する",
|
||||||
"Edit tag" : "タグを編集",
|
"Edit tag" : "タグを編集",
|
||||||
"Delete tag" : "タグを削除",
|
"Delete tag" : "タグを削除",
|
||||||
@@ -127,7 +183,7 @@ OC.L10N.register(
|
|||||||
"Choose a user to assign" : "割り当てるユーザーを選択する",
|
"Choose a user to assign" : "割り当てるユーザーを選択する",
|
||||||
"Assign this card to a user" : "このカードをユーザーに割り当てる",
|
"Assign this card to a user" : "このカードをユーザーに割り当てる",
|
||||||
"Due date" : "期限",
|
"Due date" : "期限",
|
||||||
"Click to set" : "クリックして設定する",
|
"Click to set" : "時刻設定",
|
||||||
"Remove due date" : "期限を削除",
|
"Remove due date" : "期限を削除",
|
||||||
"Description" : "説明",
|
"Description" : "説明",
|
||||||
"Attachments" : "添付ファイル",
|
"Attachments" : "添付ファイル",
|
||||||
@@ -139,6 +195,9 @@ OC.L10N.register(
|
|||||||
"Add a card description…" : "カードの説明を追加...",
|
"Add a card description…" : "カードの説明を追加...",
|
||||||
"Shared boards" : "共有ボード",
|
"Shared boards" : "共有ボード",
|
||||||
"Move board to archive" : "ボードをアーカイブに移動する",
|
"Move board to archive" : "ボードをアーカイブに移動する",
|
||||||
"Create a new board" : "新しいボードを作成"
|
"Create a new board" : "新しいボードを作成",
|
||||||
|
"Settings" : "設定",
|
||||||
|
"Limit deck to groups" : "デッキ作成制限",
|
||||||
|
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "デッキ作成制限は、設定したグループに非所属のユーザーがボードを作成できないようにします。非所属ユーザーは共有されているボードでのみ作業できます。"
|
||||||
},
|
},
|
||||||
"nplurals=1; plural=0;");
|
"nplurals=1; plural=0;");
|
||||||
|
|||||||
69
l10n/ja.json
69
l10n/ja.json
@@ -7,7 +7,9 @@
|
|||||||
"Remove user from card" : "カードからユーザーを削除",
|
"Remove user from card" : "カードからユーザーを削除",
|
||||||
"Hours" : "時間",
|
"Hours" : "時間",
|
||||||
"Minutes" : "分",
|
"Minutes" : "分",
|
||||||
|
"Link to a board" : "ボードへのリンク",
|
||||||
"Maximum file size of {size} exceeded" : "最大ファイルサイズ({size})を超えています",
|
"Maximum file size of {size} exceeded" : "最大ファイルサイズ({size})を超えています",
|
||||||
|
"File already exists" : "ファイルはすでに存在します",
|
||||||
"You have created a new board {board}" : "あなたは新しいボード {board} を作成しました。",
|
"You have created a new board {board}" : "あなたは新しいボード {board} を作成しました。",
|
||||||
"{user} has created a new board {board}" : "{user} が新しいボード {board} を作成しました",
|
"{user} has created a new board {board}" : "{user} が新しいボード {board} を作成しました",
|
||||||
"You have deleted the board {board}" : "あなたはボード {board} を削除しました。",
|
"You have deleted the board {board}" : "あなたはボード {board} を削除しました。",
|
||||||
@@ -15,6 +17,7 @@
|
|||||||
"You have restored the board {board}" : "あなたはボード {board} を復元しました。",
|
"You have restored the board {board}" : "あなたはボード {board} を復元しました。",
|
||||||
"{user} has restored the board {board}" : "{user} がボード {board} を復元しました",
|
"{user} has restored the board {board}" : "{user} がボード {board} を復元しました",
|
||||||
"You have shared the board {board} with {acl}" : "あなたはボード {board} を {acl} と共有しました。",
|
"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} から削除しました。",
|
"You have removed {acl} from the board {board}" : "{acl} をボード {board} から削除しました。",
|
||||||
"{user} has removed {acl} from the board {board}" : "{user} がボード {board} から {acl} を削除しました",
|
"{user} has removed {acl} from the board {board}" : "{user} がボード {board} から {acl} を削除しました",
|
||||||
"You have renamed the board {before} to {board}" : "あなたは {before} のボードの名前を {board} に変更しました",
|
"You have renamed the board {before} to {board}" : "あなたは {before} のボードの名前を {board} に変更しました",
|
||||||
@@ -32,10 +35,55 @@
|
|||||||
"You have created card {card} in stack {stack} on board {board}" : "{board} の {stack} に {card} を作成しました。",
|
"You have created card {card} in stack {stack} on board {board}" : "{board} の {stack} に {card} を作成しました。",
|
||||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} が {board} の {stack} に {card} を作成しました",
|
"{user} has created card {card} in stack {stack} on board {board}" : "{user} が {board} の {stack} に {card} を作成しました",
|
||||||
"You have deleted card {card} in stack {stack} on board {board}" : "{board} の {stack} で {card} を削除しました。",
|
"You have deleted card {card} in stack {stack} on board {board}" : "{board} の {stack} で {card} を削除しました。",
|
||||||
"You have renamed the card {before} to {card}" : "あなたはカード {before} の名前を {card} に変更しました",
|
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user}がボード{board}のスタック{stack}のカード{card}を削除しました",
|
||||||
|
"You have renamed the card {before} to {card}" : "カード {before} の名前を {card} に変更しました",
|
||||||
"{user} has renamed the card {before} to {card}" : "{user} が {before} カードの名前を {card} に変更しました",
|
"{user} has renamed the card {before} to {card}" : "{user} が {before} カードの名前を {card} に変更しました",
|
||||||
|
"You have added a description to card {card} in stack {stack} on board {board}" : "ボード{board}のスタック{stack} のカード{card}に説明を追加しました",
|
||||||
|
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user}がボード{board}のスタック{stack}のカード{card}に説明を追加しました",
|
||||||
|
"You have updated the description of card {card} in stack {stack} on board {board}" : "ボード{board}のスタック{stack}のカード{card}の説明を更新しました",
|
||||||
|
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user}はボード{board}のスタック{stack}のカード{card}の説明を更新しました",
|
||||||
|
"You have archived card {card} in stack {stack} on board {board}" : "ボード {board}上のスタック {stack}にあるカード {card} をアーカイブしました",
|
||||||
|
"{user} has archived card {card} in stack {stack} on board {board}" : "{user}がボード{board}のスタック{stack}にカード{card}をアーカイブしました",
|
||||||
|
"You have unarchived card {card} in stack {stack} on board {board}" : "ボード{board}のスタック{stack}に未アーカイブのカード{card}があります",
|
||||||
|
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user}がボード {board}上のスタック {stack}にあるカード {card} をアーカイブ解除しました",
|
||||||
|
"You have removed the due date of card {card}" : "カード{card}の期日を削除しました",
|
||||||
|
"{user} has removed the due date of card {card}" : "{user}がカード{card}の期日を削除しました",
|
||||||
|
"You have set the due date of card {card} to {after}" : "カード{card}の期日を{after}に設定しました",
|
||||||
|
"{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}" : "ボード{board}のスタック{stack}のカード{card}にタグ{label}を追加しました",
|
||||||
|
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user}がボード{board}のスタック{stack}のカード{card}にタグ{label}を追加しました",
|
||||||
|
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "ボード{board}のスタック{stack}のカード{card}からタグ{label}を削除しました",
|
||||||
|
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user}がボード{board}のスタック{stack}のカード{card}からタグ{label}を削除しました",
|
||||||
|
"You have assigned {assigneduser} to card {card} on board {board}" : "ボード{board}のカード{card}に{assigneduser}を割り当てました",
|
||||||
|
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user}がボード{board}のカード{card}に{assigneduser}を割り当てました",
|
||||||
|
"You have unassigned {assigneduser} from card {card} on board {board}" : "ボード{board}のカード{card}から{assigneduser} の割り当てが解除されました",
|
||||||
|
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user}がボード{board}のカード{card}から{assigneduser}の割り当てを解除されました",
|
||||||
|
"You have moved the card {card} from stack {stackBefore} to {stack}" : "カード{card}をスタック{stackBefore}から{stack}に移動しました",
|
||||||
|
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user}がカード{card}をスタック{stackBefore}から{stack}に移動しました",
|
||||||
|
"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}にコメントしました",
|
||||||
|
"{user} has commented on card {card}" : "{user}がカード{card}にコメントしました",
|
||||||
|
"A <strong>card description</strong> inside the Deck app has been changed" : "デッキアプリ内の<strong>カードの説明</strong>が変更されました",
|
||||||
"Deck" : "デッキ",
|
"Deck" : "デッキ",
|
||||||
|
"Changes in the <strong>Deck app</strong>" : "<strong>デッキアプリ</strong>の変更点",
|
||||||
|
"A <strong>comment</strong> was created on a card" : "カードに<strong>コメント</strong>が作成されたとき",
|
||||||
"Personal" : "個人",
|
"Personal" : "個人",
|
||||||
|
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "カード \"%s\"(\"%s\"に所属)が%sによってあなたに割り当てられました。",
|
||||||
|
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user}はあなたに カード \"%s\"(\"%s\"に所属)を割り当てました。",
|
||||||
|
"The card \"%s\" on \"%s\" has reached its due date." : "カード \"%s\"(\"%s\"に所属)は期日に達しました。",
|
||||||
|
"%s has mentioned you in a comment on \"%s\"." : "%sさんは \"%s\"へのコメントであなたについて言及しました。",
|
||||||
|
"{user} has mentioned you in a comment on \"%s\"." : "{user} は \"%s\"へのコメントであなたについて言及しました。",
|
||||||
|
"The board \"%s\" has been shared with you by %s." : "\"%s\" ボードは、%s からあなたに共有されています。",
|
||||||
|
"{user} has shared the board %s with you." : "{user}があなたとボード%sを共有しました。",
|
||||||
"No data was provided to create an attachment." : "添付ファイルを作成するためのデータは提供されていません。",
|
"No data was provided to create an attachment." : "添付ファイルを作成するためのデータは提供されていません。",
|
||||||
"Finished" : "完了",
|
"Finished" : "完了",
|
||||||
"To review" : "レビューする",
|
"To review" : "レビューする",
|
||||||
@@ -56,6 +104,10 @@
|
|||||||
"Could not write file to disk" : "ディスクにファイルを書き込めませんでした",
|
"Could not write file to disk" : "ディスクにファイルを書き込めませんでした",
|
||||||
"A PHP extension stopped the file upload" : "PHP拡張でファイルのアップロードが停止されています",
|
"A PHP extension stopped the file upload" : "PHP拡張でファイルのアップロードが停止されています",
|
||||||
"No file uploaded or file size exceeds maximum of %s" : "ファイルがアップロードされていないか、ファイルサイズが最大 %s を超えています",
|
"No file uploaded or file size exceeds maximum of %s" : "ファイルがアップロードされていないか、ファイルサイズが最大 %s を超えています",
|
||||||
|
"A kanban style project and personal management tool for Nextcloud" : "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はNextcloudと統合した、チームの個人計画とプロジェクトの組織化を目的としたカンバンスタイルの組織ツールです。\n\n\n- 📥 タスクをカードに追加して整理する\n- 📄 マークダウンで追加のメモを書き留めます\n- 🔖 より良い組織のためにラベルを割り当てる\n- 👥 あなたのチーム、友人、家族と共有する\n- 📎 ファイルを添付してマークダウンの説明に埋め込む\n- 💬 コメントを使ってあなたのチームと話し合う\n- ⚡ アクティビティの流れの変化を追跡する\n- 🚀 プロジェクトを整理する",
|
||||||
|
"Select the board to link to a project" : "プロジェクトにリンクするボードを選択",
|
||||||
|
"Select board" : "ボードを選択",
|
||||||
"Add a new stack" : "新しいスタックを追加する",
|
"Add a new stack" : "新しいスタックを追加する",
|
||||||
"Submit" : "了解",
|
"Submit" : "了解",
|
||||||
"Show archived cards" : "アーカイブされたカードを表示する",
|
"Show archived cards" : "アーカイブされたカードを表示する",
|
||||||
@@ -65,13 +117,14 @@
|
|||||||
"All Boards" : "すべてのボード",
|
"All Boards" : "すべてのボード",
|
||||||
"Archived boards" : "アーカイブ済みのボード",
|
"Archived boards" : "アーカイブ済みのボード",
|
||||||
"Share board" : "ボードを共有",
|
"Share board" : "ボードを共有",
|
||||||
|
"Archived cards" : "カードをアーカイブ",
|
||||||
"Actions" : "アクション",
|
"Actions" : "アクション",
|
||||||
"Drop your files here to upload it to the card" : "ファイルをここにドロップしてカードをアップロードします",
|
"Drop your files here to upload it to the card" : "ファイルをここにドロップしてカードをアップロードします",
|
||||||
"Assign card to me" : "私にカードを割り当てる",
|
"Assign card to me" : "カードを自分に割り当てる",
|
||||||
"Unassign card from me" : "カードの割り当てを解除する",
|
"Unassign card from me" : "カードの割り当てを解除する",
|
||||||
"Archive card" : "カードをアーカイブ",
|
"Archive card" : "カードをアーカイブ",
|
||||||
"Unarchive card" : "カードのアーカイブを解除する",
|
"Unarchive card" : "カードのアーカイブを解除する",
|
||||||
"Delete card" : "削除済みのカード",
|
"Delete card" : "カードを削除する",
|
||||||
"Enter a card title" : "カードのタイトルを入力してください",
|
"Enter a card title" : "カードのタイトルを入力してください",
|
||||||
"Add card" : "カードを追加",
|
"Add card" : "カードを追加",
|
||||||
"Close" : "閉じる",
|
"Close" : "閉じる",
|
||||||
@@ -80,12 +133,15 @@
|
|||||||
"Deleted items" : "削除されたアイテム",
|
"Deleted items" : "削除されたアイテム",
|
||||||
"Timeline" : "タイムライン",
|
"Timeline" : "タイムライン",
|
||||||
"Select users or groups to share with" : "共有するユーザーまたはグループを選択する",
|
"Select users or groups to share with" : "共有するユーザーまたはグループを選択する",
|
||||||
|
"Group" : "グループ",
|
||||||
|
"Circle" : "サークル",
|
||||||
"No matching user or group found." : "一致するユーザーまたはグループが見つかりません。",
|
"No matching user or group found." : "一致するユーザーまたはグループが見つかりません。",
|
||||||
"Loading" : "読み込み中",
|
"Loading" : "読み込み中",
|
||||||
"Edit" : "編集",
|
"Edit" : "編集",
|
||||||
"Share" : "共有",
|
"Share" : "共有",
|
||||||
"Manage" : "管理",
|
"Manage" : "管理",
|
||||||
"Discard share" : "共有をやめる",
|
"Discard share" : "共有をやめる",
|
||||||
|
"Sharing has been disabled for your account." : "あなたのアカウントでは共有が無効になっています",
|
||||||
"Update tag" : "タグを更新する",
|
"Update tag" : "タグを更新する",
|
||||||
"Edit tag" : "タグを編集",
|
"Edit tag" : "タグを編集",
|
||||||
"Delete tag" : "タグを削除",
|
"Delete tag" : "タグを削除",
|
||||||
@@ -125,7 +181,7 @@
|
|||||||
"Choose a user to assign" : "割り当てるユーザーを選択する",
|
"Choose a user to assign" : "割り当てるユーザーを選択する",
|
||||||
"Assign this card to a user" : "このカードをユーザーに割り当てる",
|
"Assign this card to a user" : "このカードをユーザーに割り当てる",
|
||||||
"Due date" : "期限",
|
"Due date" : "期限",
|
||||||
"Click to set" : "クリックして設定する",
|
"Click to set" : "時刻設定",
|
||||||
"Remove due date" : "期限を削除",
|
"Remove due date" : "期限を削除",
|
||||||
"Description" : "説明",
|
"Description" : "説明",
|
||||||
"Attachments" : "添付ファイル",
|
"Attachments" : "添付ファイル",
|
||||||
@@ -137,6 +193,9 @@
|
|||||||
"Add a card description…" : "カードの説明を追加...",
|
"Add a card description…" : "カードの説明を追加...",
|
||||||
"Shared boards" : "共有ボード",
|
"Shared boards" : "共有ボード",
|
||||||
"Move board to archive" : "ボードをアーカイブに移動する",
|
"Move board to archive" : "ボードをアーカイブに移動する",
|
||||||
"Create a new board" : "新しいボードを作成"
|
"Create a new board" : "新しいボードを作成",
|
||||||
|
"Settings" : "設定",
|
||||||
|
"Limit deck to groups" : "デッキ作成制限",
|
||||||
|
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "デッキ作成制限は、設定したグループに非所属のユーザーがボードを作成できないようにします。非所属ユーザーは共有されているボードでのみ作業できます。"
|
||||||
},"pluralForm" :"nplurals=1; plural=0;"
|
},"pluralForm" :"nplurals=1; plural=0;"
|
||||||
}
|
}
|
||||||
@@ -19,6 +19,7 @@ OC.L10N.register(
|
|||||||
"You have restored the board {board}" : "Повратили сте таблу {board}",
|
"You have restored the board {board}" : "Повратили сте таблу {board}",
|
||||||
"{user} has restored the board {board}" : "{user} је повратио таблу {board}",
|
"{user} has restored the board {board}" : "{user} је повратио таблу {board}",
|
||||||
"You have shared the board {board} with {acl}" : "Поделили сте таблу {board} са {acl}",
|
"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}",
|
"You have removed {acl} from the board {board}" : "Уклонили сте {acl} са табле {board}",
|
||||||
"{user} has removed {acl} from the board {board}" : "{user} је уклонио {acl} са табле {board}",
|
"{user} has removed {acl} from the board {board}" : "{user} је уклонио {acl} са табле {board}",
|
||||||
"You have renamed the board {before} to {board}" : "Преименовали сте таблу {before} у {board}",
|
"You have renamed the board {before} to {board}" : "Преименовали сте таблу {before} у {board}",
|
||||||
@@ -76,6 +77,7 @@ OC.L10N.register(
|
|||||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>опис картице</strong> унутар Deck апликације је промењен",
|
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>опис картице</strong> унутар Deck апликације је промењен",
|
||||||
"Deck" : "Deck",
|
"Deck" : "Deck",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Измене у <strong>Deck апликацији</strong>",
|
"Changes in the <strong>Deck app</strong>" : "Измене у <strong>Deck апликацији</strong>",
|
||||||
|
"A <strong>comment</strong> was created on a card" : "Направљен је <strong>коментар</strong> на картици",
|
||||||
"Personal" : "Лично",
|
"Personal" : "Лично",
|
||||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Корисник %s Вам је доделио картицу „%s“ са табле „%s“.",
|
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Корисник %s Вам је доделио картицу „%s“ са табле „%s“.",
|
||||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Корисник {user} Вам је доделио картицу „%s“ са табле „%s“.",
|
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Корисник {user} Вам је доделио картицу „%s“ са табле „%s“.",
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
"You have restored the board {board}" : "Повратили сте таблу {board}",
|
"You have restored the board {board}" : "Повратили сте таблу {board}",
|
||||||
"{user} has restored the board {board}" : "{user} је повратио таблу {board}",
|
"{user} has restored the board {board}" : "{user} је повратио таблу {board}",
|
||||||
"You have shared the board {board} with {acl}" : "Поделили сте таблу {board} са {acl}",
|
"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}",
|
"You have removed {acl} from the board {board}" : "Уклонили сте {acl} са табле {board}",
|
||||||
"{user} has removed {acl} from the board {board}" : "{user} је уклонио {acl} са табле {board}",
|
"{user} has removed {acl} from the board {board}" : "{user} је уклонио {acl} са табле {board}",
|
||||||
"You have renamed the board {before} to {board}" : "Преименовали сте таблу {before} у {board}",
|
"You have renamed the board {before} to {board}" : "Преименовали сте таблу {before} у {board}",
|
||||||
@@ -74,6 +75,7 @@
|
|||||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>опис картице</strong> унутар Deck апликације је промењен",
|
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>опис картице</strong> унутар Deck апликације је промењен",
|
||||||
"Deck" : "Deck",
|
"Deck" : "Deck",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Измене у <strong>Deck апликацији</strong>",
|
"Changes in the <strong>Deck app</strong>" : "Измене у <strong>Deck апликацији</strong>",
|
||||||
|
"A <strong>comment</strong> was created on a card" : "Направљен је <strong>коментар</strong> на картици",
|
||||||
"Personal" : "Лично",
|
"Personal" : "Лично",
|
||||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Корисник %s Вам је доделио картицу „%s“ са табле „%s“.",
|
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Корисник %s Вам је доделио картицу „%s“ са табле „%s“.",
|
||||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Корисник {user} Вам је доделио картицу „%s“ са табле „%s“.",
|
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Корисник {user} Вам је доделио картицу „%s“ са табле „%s“.",
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ OC.L10N.register(
|
|||||||
"The board \"%s\" has been shared with you by %s." : "Tavlan \"%s\" har delats med dig av %s.",
|
"The board \"%s\" has been shared with you by %s." : "Tavlan \"%s\" har delats med dig av %s.",
|
||||||
"{user} has shared the board %s with you." : "{user} har delat tavlan %s med dig.",
|
"{user} has shared the board %s with you." : "{user} har delat tavlan %s med dig.",
|
||||||
"No data was provided to create an attachment." : "Inga data lämnades för att skapa en bilaga.",
|
"No data was provided to create an attachment." : "Inga data lämnades för att skapa en bilaga.",
|
||||||
"Finished" : "Färdig",
|
"Finished" : "Slutförd",
|
||||||
"To review" : "Att granska",
|
"To review" : "Att granska",
|
||||||
"Action needed" : "Åtgärd behövs",
|
"Action needed" : "Åtgärd behövs",
|
||||||
"Later" : "Senare",
|
"Later" : "Senare",
|
||||||
@@ -158,7 +158,7 @@ OC.L10N.register(
|
|||||||
"Members" : "Medlemmar",
|
"Members" : "Medlemmar",
|
||||||
"More actions" : "Fler händelser",
|
"More actions" : "Fler händelser",
|
||||||
"Edit board" : "Ändra tavla",
|
"Edit board" : "Ändra tavla",
|
||||||
"Archive board" : "Arkivera tavlan",
|
"Archive board" : "Arkivera tavla",
|
||||||
"Unarchive board" : "Ta bort tavlan ur arkivet",
|
"Unarchive board" : "Ta bort tavlan ur arkivet",
|
||||||
"Delete board" : "Ta bort tavla",
|
"Delete board" : "Ta bort tavla",
|
||||||
"Update board" : "Uppdatera tavla",
|
"Update board" : "Uppdatera tavla",
|
||||||
@@ -183,7 +183,7 @@ OC.L10N.register(
|
|||||||
"Choose a user to assign" : "Välj en användare att tilldela",
|
"Choose a user to assign" : "Välj en användare att tilldela",
|
||||||
"Assign this card to a user" : "Tilldela detta kort till en användare",
|
"Assign this card to a user" : "Tilldela detta kort till en användare",
|
||||||
"Due date" : "Slutdatum",
|
"Due date" : "Slutdatum",
|
||||||
"Click to set" : "Sätt datum",
|
"Click to set" : "Ange datum",
|
||||||
"Remove due date" : "Ta bort slutdatum",
|
"Remove due date" : "Ta bort slutdatum",
|
||||||
"Description" : "Beskrivning",
|
"Description" : "Beskrivning",
|
||||||
"Attachments" : "Bilagor",
|
"Attachments" : "Bilagor",
|
||||||
|
|||||||
@@ -85,7 +85,7 @@
|
|||||||
"The board \"%s\" has been shared with you by %s." : "Tavlan \"%s\" har delats med dig av %s.",
|
"The board \"%s\" has been shared with you by %s." : "Tavlan \"%s\" har delats med dig av %s.",
|
||||||
"{user} has shared the board %s with you." : "{user} har delat tavlan %s med dig.",
|
"{user} has shared the board %s with you." : "{user} har delat tavlan %s med dig.",
|
||||||
"No data was provided to create an attachment." : "Inga data lämnades för att skapa en bilaga.",
|
"No data was provided to create an attachment." : "Inga data lämnades för att skapa en bilaga.",
|
||||||
"Finished" : "Färdig",
|
"Finished" : "Slutförd",
|
||||||
"To review" : "Att granska",
|
"To review" : "Att granska",
|
||||||
"Action needed" : "Åtgärd behövs",
|
"Action needed" : "Åtgärd behövs",
|
||||||
"Later" : "Senare",
|
"Later" : "Senare",
|
||||||
@@ -156,7 +156,7 @@
|
|||||||
"Members" : "Medlemmar",
|
"Members" : "Medlemmar",
|
||||||
"More actions" : "Fler händelser",
|
"More actions" : "Fler händelser",
|
||||||
"Edit board" : "Ändra tavla",
|
"Edit board" : "Ändra tavla",
|
||||||
"Archive board" : "Arkivera tavlan",
|
"Archive board" : "Arkivera tavla",
|
||||||
"Unarchive board" : "Ta bort tavlan ur arkivet",
|
"Unarchive board" : "Ta bort tavlan ur arkivet",
|
||||||
"Delete board" : "Ta bort tavla",
|
"Delete board" : "Ta bort tavla",
|
||||||
"Update board" : "Uppdatera tavla",
|
"Update board" : "Uppdatera tavla",
|
||||||
@@ -181,7 +181,7 @@
|
|||||||
"Choose a user to assign" : "Välj en användare att tilldela",
|
"Choose a user to assign" : "Välj en användare att tilldela",
|
||||||
"Assign this card to a user" : "Tilldela detta kort till en användare",
|
"Assign this card to a user" : "Tilldela detta kort till en användare",
|
||||||
"Due date" : "Slutdatum",
|
"Due date" : "Slutdatum",
|
||||||
"Click to set" : "Sätt datum",
|
"Click to set" : "Ange datum",
|
||||||
"Remove due date" : "Ta bort slutdatum",
|
"Remove due date" : "Ta bort slutdatum",
|
||||||
"Description" : "Beskrivning",
|
"Description" : "Beskrivning",
|
||||||
"Attachments" : "Bilagor",
|
"Attachments" : "Bilagor",
|
||||||
|
|||||||
@@ -141,12 +141,7 @@ class Application extends App {
|
|||||||
|
|
||||||
public function registerNotifications() {
|
public function registerNotifications() {
|
||||||
$notificationManager = \OC::$server->getNotificationManager();
|
$notificationManager = \OC::$server->getNotificationManager();
|
||||||
$self = &$this;
|
$notificationManager->registerNotifierService(Notifier::class);
|
||||||
$notificationManager->registerNotifier(function() use (&$self) {
|
|
||||||
return $self->getContainer()->query(Notifier::class);
|
|
||||||
}, function() {
|
|
||||||
return ['id' => 'deck', 'name' => 'Deck'];
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
/**
|
/**
|
||||||
* @copyright Copyright (c) 2018 Ryan Fletcher <ryan.fletcher@codepassion.ca>
|
* @copyright Copyright (c) 2018 Ryan Fletcher <ryan.fletcher@codepassion.ca>
|
||||||
*
|
*
|
||||||
|
* @copyright Copyright (c) 2019, Alexandru Puiu (alexpuiu20@yahoo.com)
|
||||||
|
*
|
||||||
* @author Ryan Fletcher <ryan.fletcher@codepassion.ca>
|
* @author Ryan Fletcher <ryan.fletcher@codepassion.ca>
|
||||||
*
|
*
|
||||||
* @license GNU AGPL version 3 or any later version
|
* @license GNU AGPL version 3 or any later version
|
||||||
@@ -70,11 +72,12 @@ class CardApiController extends ApiController {
|
|||||||
* @params $title
|
* @params $title
|
||||||
* @params $type
|
* @params $type
|
||||||
* @params $order
|
* @params $order
|
||||||
|
* @params $description
|
||||||
*
|
*
|
||||||
* Get a specific card.
|
* Get a specific card.
|
||||||
*/
|
*/
|
||||||
public function create($title, $type = 'plain', $order = 999) {
|
public function create($title, $type = 'plain', $order = 999, $description = '') {
|
||||||
$card = $this->cardService->create($title, $this->request->getParam('stackId'), $type, $order, $this->userId);
|
$card = $this->cardService->create($title, $this->request->getParam('stackId'), $type, $order, $this->userId, $description);
|
||||||
return new DataResponse($card, HTTP::STATUS_OK);
|
return new DataResponse($card, HTTP::STATUS_OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -57,6 +57,26 @@ class Notifier implements INotifier {
|
|||||||
$this->boardMapper = $boardMapper;
|
$this->boardMapper = $boardMapper;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Identifier of the notifier, only use [a-z0-9_]
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
* @since 17.0.0
|
||||||
|
*/
|
||||||
|
public function getID(): string {
|
||||||
|
return 'deck';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Human readable name describing the notifier
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
* @since 17.0.0
|
||||||
|
*/
|
||||||
|
public function getName(): string {
|
||||||
|
return $this->l10nFactory->get('deck')->t('Deck');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param INotification $notification
|
* @param INotification $notification
|
||||||
* @param string $languageCode The code of the language that should be used to prepare the notification
|
* @param string $languageCode The code of the language that should be used to prepare the notification
|
||||||
@@ -64,7 +84,7 @@ class Notifier implements INotifier {
|
|||||||
* @throws \InvalidArgumentException When the notification was not prepared by a notifier
|
* @throws \InvalidArgumentException When the notification was not prepared by a notifier
|
||||||
* @since 9.0.0
|
* @since 9.0.0
|
||||||
*/
|
*/
|
||||||
public function prepare(INotification $notification, $languageCode) {
|
public function prepare(INotification $notification, string $languageCode): INotification {
|
||||||
$l = $this->l10nFactory->get('deck', $languageCode);
|
$l = $this->l10nFactory->get('deck', $languageCode);
|
||||||
if ($notification->getApp() !== 'deck') {
|
if ($notification->getApp() !== 'deck') {
|
||||||
throw new \InvalidArgumentException();
|
throw new \InvalidArgumentException();
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
/**
|
/**
|
||||||
* @copyright Copyright (c) 2016 Julius Härtl <jus@bitgrid.net>
|
* @copyright Copyright (c) 2016 Julius Härtl <jus@bitgrid.net>
|
||||||
*
|
*
|
||||||
|
* @copyright Copyright (c) 2019, Alexandru Puiu (alexpuiu20@yahoo.com)
|
||||||
|
*
|
||||||
* @author Julius Härtl <jus@bitgrid.net>
|
* @author Julius Härtl <jus@bitgrid.net>
|
||||||
* @author Maxence Lange <maxence@artificial-owl.com>
|
* @author Maxence Lange <maxence@artificial-owl.com>
|
||||||
*
|
*
|
||||||
@@ -147,6 +149,7 @@ class CardService {
|
|||||||
* @param $stackId
|
* @param $stackId
|
||||||
* @param $type
|
* @param $type
|
||||||
* @param integer $order
|
* @param integer $order
|
||||||
|
* @param $description
|
||||||
* @param $owner
|
* @param $owner
|
||||||
* @return \OCP\AppFramework\Db\Entity
|
* @return \OCP\AppFramework\Db\Entity
|
||||||
* @throws StatusException
|
* @throws StatusException
|
||||||
@@ -155,8 +158,7 @@ class CardService {
|
|||||||
* @throws \OCP\AppFramework\Db\MultipleObjectsReturnedException
|
* @throws \OCP\AppFramework\Db\MultipleObjectsReturnedException
|
||||||
* @throws BadrequestException
|
* @throws BadrequestException
|
||||||
*/
|
*/
|
||||||
public function create($title, $stackId, $type, $order, $owner) {
|
public function create($title, $stackId, $type, $order, $owner, $description = '') {
|
||||||
|
|
||||||
if ($title === 'false' || $title === null) {
|
if ($title === 'false' || $title === null) {
|
||||||
throw new BadRequestException('title must be provided');
|
throw new BadRequestException('title must be provided');
|
||||||
}
|
}
|
||||||
@@ -187,6 +189,7 @@ class CardService {
|
|||||||
$card->setType($type);
|
$card->setType($type);
|
||||||
$card->setOrder($order);
|
$card->setOrder($order);
|
||||||
$card->setOwner($owner);
|
$card->setOwner($owner);
|
||||||
|
$card->setDescription($description);
|
||||||
$card = $this->cardMapper->insert($card);
|
$card = $this->cardMapper->insert($card);
|
||||||
$this->activityManager->triggerEvent(ActivityManager::DECK_OBJECT_CARD, $card, ActivityManager::SUBJECT_CARD_CREATE);
|
$this->activityManager->triggerEvent(ActivityManager::DECK_OBJECT_CARD, $card, ActivityManager::SUBJECT_CARD_CREATE);
|
||||||
$this->changeHelper->cardChanged($card->getId(), false);
|
$this->changeHelper->cardChanged($card->getId(), false);
|
||||||
|
|||||||
Reference in New Issue
Block a user