Compare commits
38 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4cbaff461e | ||
|
|
7461b186a5 | ||
|
|
34a253cff2 | ||
|
|
1cb37ac8fa | ||
|
|
5648557be0 | ||
|
|
6eb10bd667 | ||
|
|
1105363d9a | ||
|
|
2b1bac9a2f | ||
|
|
227f510d73 | ||
|
|
2fa56cdd77 | ||
|
|
1346d085fe | ||
|
|
8e3db9147b | ||
|
|
587f2ef3e3 | ||
|
|
7839f3ea10 | ||
|
|
1029a21f87 | ||
|
|
e908593ce0 | ||
|
|
be555529f0 | ||
|
|
53e4eb345a | ||
|
|
6a2dbf61d9 | ||
|
|
27d99f4a50 | ||
|
|
6f479727d5 | ||
|
|
64c3606e09 | ||
|
|
acaff1e99e | ||
|
|
d584b45114 | ||
|
|
bf52f85c08 | ||
|
|
237df08414 | ||
|
|
e9ef790295 | ||
|
|
1388da0fa0 | ||
|
|
aa69584afd | ||
|
|
a03986b1bb | ||
|
|
e970fca3f3 | ||
|
|
b15555e5e2 | ||
|
|
017b4b5b29 | ||
|
|
905aeed75a | ||
|
|
86fe38832c | ||
|
|
935026fb0f | ||
|
|
da35eb45da | ||
|
|
0b2884cdfb |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,5 +2,6 @@ js/node_modules/*
|
||||
js/vendor/
|
||||
build/
|
||||
js/public/
|
||||
css/style.css
|
||||
tests/integration/vendor/
|
||||
tests/integration/composer.lock
|
||||
|
||||
15
CHANGELOG.md
15
CHANGELOG.md
@@ -1,6 +1,21 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## 0.2.1 - 2017-07-04
|
||||
|
||||
### Added
|
||||
- Editing board details in board list
|
||||
- Due date on mouse over
|
||||
|
||||
### Changed
|
||||
- Polished label editor
|
||||
- Polished sidebar
|
||||
- UI improvements in board view
|
||||
- Moved to SCSS
|
||||
|
||||
### Fixed
|
||||
- Fix opacity of last entry in board list
|
||||
|
||||
## 0.2.0 - 2017-06-20
|
||||
|
||||
### Added
|
||||
|
||||
5
Makefile
5
Makefile
@@ -25,11 +25,14 @@ install-deps:
|
||||
cd js && npm install --deps
|
||||
cd js && ./node_modules/.bin/bower install
|
||||
|
||||
build: build-js
|
||||
build: build-js build-css
|
||||
|
||||
build-js: install-deps
|
||||
cd js && ./node_modules/.bin/grunt build
|
||||
|
||||
build-css: install-deps
|
||||
./js/node_modules/node-sass/bin/node-sass --output-style compressed css/legacy.scss css/style.css
|
||||
|
||||
watch:
|
||||
cd js && ./node_modules/.bin/grunt watch
|
||||
|
||||
|
||||
1
_config.yml
Normal file
1
_config.yml
Normal file
@@ -0,0 +1 @@
|
||||
theme: jekyll-theme-cayman
|
||||
@@ -356,6 +356,7 @@
|
||||
<default>false</default>
|
||||
</field>
|
||||
<index>
|
||||
<name>deck_board_acl_uq_i</name>
|
||||
<unique>true</unique>
|
||||
<field>
|
||||
<name>board_id</name>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
💥 This is still alpha software: it may not be stable enough for production!
|
||||
|
||||
</description>
|
||||
<version>0.2.0</version>
|
||||
<version>0.2.1</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Julius Härtl</author>
|
||||
<namespace>Deck</namespace>
|
||||
@@ -25,7 +25,7 @@
|
||||
<bugs>https://github.com/nextcloud/deck/issues</bugs>
|
||||
<repository type="git">https://github.com/nextcloud/deck.git</repository>
|
||||
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/Deck_Board.png</screenshot>
|
||||
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/Deck_Board.png</screenshot>
|
||||
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/Deck_Details.png</screenshot>
|
||||
<dependencies>
|
||||
<nextcloud min-version="11" max-version="13" />
|
||||
</dependencies>
|
||||
|
||||
24
css/legacy.scss
Normal file
24
css/legacy.scss
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* @copyright Copyright (c) 2016 Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
@import '../../../core/css/variables.scss';
|
||||
@import 'style.scss';
|
||||
1094
css/style.css
1094
css/style.css
File diff suppressed because it is too large
Load Diff
1144
css/style.scss
Normal file
1144
css/style.scss
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" id="svg2"><style id="style4">.st0{display:none}.st1{display:inline}.st2{fill:#0071bc}.st3{display:inline}.st3,.st4{fill:#fff}</style><g id="Ebene_3"><path class="st4" d="M432.3 448.1h-348c-13.2 0-24-10.8-24-24V264.6c0-13.2 10.8-24 24-24h348c13.2 0 24 10.8 24 24v159.5c0 13.2-10.8 24-24 24zM380.4 89.8H127.8c-7.7 0-14-6.3-14-14v-6.3c0-7.7 6.3-14 14-14h252.6c7.7 0 14 6.3 14 14v6.3c0 7.7-6.3 14-14 14zm19.4 61.8H110.6c-7.7 0-14-6.3-14-14v-6.3c0-7.7 6.3-14 14-14h289.2c7.7 0 14 6.3 14 14v6.3c0 7.7-6.3 14-14 14zm21.6 61.4H94.6c-7.7 0-14-6.3-14-14v-6.3c0-7.7 6.3-14 14-14h326.8c7.7 0 14 6.3 14 14v6.3c0 7.7-6.3 14-14 14z" id="path12" fill="#fff"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 715 B |
6
img/deck-dark.svg
Normal file
6
img/deck-dark.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<rect ry="1" height="8" width="14" y="7" x="1"/>
|
||||
<rect ry=".5" height="1" width="12" y="5" x="2"/>
|
||||
<rect ry=".5" height="1" width="10" y="3" x="3"/>
|
||||
<rect ry=".5" height="1" width="8" y="1" x="4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 311 B |
10
img/deck.svg
10
img/deck.svg
@@ -1,6 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1">
|
||||
<rect ry="1" height="8" width="14" y="7" x="1"/>
|
||||
<rect ry=".5" height="1" width="12" y="5" x="2"/>
|
||||
<rect ry=".5" height="1" width="10" y="3" x="3"/>
|
||||
<rect ry=".5" height="1" width="8" y="1" x="4"/>
|
||||
<g fill="#fff">
|
||||
<rect ry="1" height="8" width="14" y="7" x="1"/>
|
||||
<rect ry=".5" height="1" width="12" y="5" x="2"/>
|
||||
<rect ry=".5" height="1" width="10" y="3" x="3"/>
|
||||
<rect ry=".5" height="1" width="8" y="1" x="4"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 291 B After Width: | Height: | Size: 344 B |
@@ -33,6 +33,7 @@ app.controller('ListController', function ($scope, $location, $filter, BoardServ
|
||||
$scope.colors = ['0082c9', '00c9c6','00c906', 'c92b00', 'F1DB50', '7C31CC', '3A3B3D', 'CACBCD'];
|
||||
$scope.boardservice = BoardService;
|
||||
$scope.newBoard.color = $scope.colors[0];
|
||||
$scope.updatingBoard = null;
|
||||
|
||||
// FIXME: not nice, but we want to load this only once
|
||||
if($element.attr('id') === 'app-navigation') {
|
||||
@@ -100,7 +101,18 @@ app.controller('ListController', function ($scope, $location, $filter, BoardServ
|
||||
$scope.boardUpdate = function(board) {
|
||||
BoardService.update(board).then(function(data) {
|
||||
$scope.filterData();
|
||||
board.status.edit = false;
|
||||
});
|
||||
};
|
||||
|
||||
$scope.boardUpdateBegin = function(board) {
|
||||
$scope.updatingBoard = board;
|
||||
};
|
||||
|
||||
$scope.boardUpdateReset = function(board) {
|
||||
board.title = $scope.updatingBoard.title;
|
||||
board.color = $scope.updatingBoard.color;
|
||||
$scope.filterData();
|
||||
board.status.edit = false;
|
||||
};
|
||||
|
||||
|
||||
@@ -16,7 +16,8 @@
|
||||
"grunt-phpunit": "^0.3.6",
|
||||
"grunt-wrap": "^0.3.0",
|
||||
"jshint-stylish": "^2.2.1",
|
||||
"karma": "^1.4.1"
|
||||
"karma": "^1.4.1",
|
||||
"node-sass": "^4.5.3"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Warning: no test specified\" && exit 0"
|
||||
|
||||
@@ -124,9 +124,8 @@ app.factory('ApiService', function($http, $q){
|
||||
} else {
|
||||
Object.keys(entity).forEach(function (key) {
|
||||
element[key] = entity[key];
|
||||
if(element[key]!==null)
|
||||
element[key].status = {};
|
||||
});
|
||||
element.status = {};
|
||||
}
|
||||
};
|
||||
ApiService.prototype.remove = function(id) {
|
||||
|
||||
@@ -13,9 +13,6 @@ OC.L10N.register(
|
||||
"Discard share" : "Escartar compartición",
|
||||
"Members" : "Miembros",
|
||||
"by" : "por",
|
||||
"Saved" : "Guardóse",
|
||||
"Attachments" : "Axuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"History" : "Historial"
|
||||
"Saved" : "Guardóse"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -11,9 +11,6 @@
|
||||
"Discard share" : "Escartar compartición",
|
||||
"Members" : "Miembros",
|
||||
"by" : "por",
|
||||
"Saved" : "Guardóse",
|
||||
"Attachments" : "Axuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"History" : "Historial"
|
||||
"Saved" : "Guardóse"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -20,9 +20,6 @@ OC.L10N.register(
|
||||
"Created:" : "Създаден на:",
|
||||
"by" : "от",
|
||||
"Saved" : "Запазено",
|
||||
"Attachments" : "Прикачени файлове",
|
||||
"Comments" : "Коментари",
|
||||
"History" : "История",
|
||||
"Shared with you" : "Споделено с Вас"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -18,9 +18,6 @@
|
||||
"Created:" : "Създаден на:",
|
||||
"by" : "от",
|
||||
"Saved" : "Запазено",
|
||||
"Attachments" : "Прикачени файлове",
|
||||
"Comments" : "Коментари",
|
||||
"History" : "История",
|
||||
"Shared with you" : "Споделено с Вас"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -15,8 +15,6 @@ OC.L10N.register(
|
||||
"Created:" : "Creat:",
|
||||
"by" : "per",
|
||||
"Saved" : "Desat",
|
||||
"Comments" : "Comentaris",
|
||||
"History" : "Història",
|
||||
"Shared with you" : "Us han compartit"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -13,8 +13,6 @@
|
||||
"Created:" : "Creat:",
|
||||
"by" : "per",
|
||||
"Saved" : "Desat",
|
||||
"Comments" : "Comentaris",
|
||||
"History" : "Història",
|
||||
"Shared with you" : "Us han compartit"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Hodiny",
|
||||
"Minutes" : "Minuty",
|
||||
"Finished" : "Dokončeno",
|
||||
"To review" : "K revizi",
|
||||
"Action needed" : "Nutná akce",
|
||||
@@ -26,6 +28,8 @@ OC.L10N.register(
|
||||
"Create a new tag" : "Vytvořit novou značku",
|
||||
"Title" : "Název",
|
||||
"Members" : "Členové",
|
||||
"More actions" : "Více akcí",
|
||||
"Archive board" : "Archivovaná deska",
|
||||
"Create new board" : "VYtvořit ovou desku",
|
||||
"New board title" : "Nadpis nové desky",
|
||||
"Modified:" : "Upraveno:",
|
||||
@@ -35,9 +39,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Nápověda k formátování",
|
||||
"Saved" : "Uloženo",
|
||||
"Add a card description…" : "Přidat popis karty...",
|
||||
"Attachments" : "Přílohy",
|
||||
"Comments" : "Komentáře",
|
||||
"History" : "Historie",
|
||||
"Shared with you" : "Sdíleno s vámi",
|
||||
"Create a new board" : "Vytvořit novou desku"
|
||||
},
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Hodiny",
|
||||
"Minutes" : "Minuty",
|
||||
"Finished" : "Dokončeno",
|
||||
"To review" : "K revizi",
|
||||
"Action needed" : "Nutná akce",
|
||||
@@ -24,6 +26,8 @@
|
||||
"Create a new tag" : "Vytvořit novou značku",
|
||||
"Title" : "Název",
|
||||
"Members" : "Členové",
|
||||
"More actions" : "Více akcí",
|
||||
"Archive board" : "Archivovaná deska",
|
||||
"Create new board" : "VYtvořit ovou desku",
|
||||
"New board title" : "Nadpis nové desky",
|
||||
"Modified:" : "Upraveno:",
|
||||
@@ -33,9 +37,6 @@
|
||||
"Formatting help" : "Nápověda k formátování",
|
||||
"Saved" : "Uloženo",
|
||||
"Add a card description…" : "Přidat popis karty...",
|
||||
"Attachments" : "Přílohy",
|
||||
"Comments" : "Komentáře",
|
||||
"History" : "Historie",
|
||||
"Shared with you" : "Sdíleno s vámi",
|
||||
"Create a new board" : "Vytvořit novou desku"
|
||||
},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"
|
||||
|
||||
16
l10n/da.js
16
l10n/da.js
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Timer",
|
||||
"Minutes" : "Minutter",
|
||||
"Finished" : "Færdiggjort",
|
||||
"To review" : "Efterse",
|
||||
"Action needed" : "Handling påkrævet",
|
||||
@@ -21,17 +23,25 @@ OC.L10N.register(
|
||||
"Edit" : "Redigér",
|
||||
"Manage" : "Administrer ",
|
||||
"Discard share" : "Kasser deling",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Medlemmer",
|
||||
"More actions" : "Flere handlinger",
|
||||
"Edit board" : "Rediger liste",
|
||||
"Archive board" : "Arkivér liste",
|
||||
"Delete board" : "Slet liste",
|
||||
"Create new board" : "Opret ny liste",
|
||||
"New board title" : "Ny titel på liste",
|
||||
"Modified:" : "Ændret:",
|
||||
"Created:" : "Oprettet:",
|
||||
"by" : "af",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Saved" : "Gemt",
|
||||
"Attachments" : "Vedhæftede filer",
|
||||
"Comments" : "Kommentarer",
|
||||
"History" : "Hostorik",
|
||||
"Add a card description…" : "Tilføj en beskrivelse...",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Shared boards" : "Delte lister",
|
||||
"Shared with you" : "Delt med dig",
|
||||
"Move board to archive" : "Flyt liste til arkiv",
|
||||
"Create a new board" : "Opret ny liste"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
16
l10n/da.json
16
l10n/da.json
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Timer",
|
||||
"Minutes" : "Minutter",
|
||||
"Finished" : "Færdiggjort",
|
||||
"To review" : "Efterse",
|
||||
"Action needed" : "Handling påkrævet",
|
||||
@@ -19,17 +21,25 @@
|
||||
"Edit" : "Redigér",
|
||||
"Manage" : "Administrer ",
|
||||
"Discard share" : "Kasser deling",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Medlemmer",
|
||||
"More actions" : "Flere handlinger",
|
||||
"Edit board" : "Rediger liste",
|
||||
"Archive board" : "Arkivér liste",
|
||||
"Delete board" : "Slet liste",
|
||||
"Create new board" : "Opret ny liste",
|
||||
"New board title" : "Ny titel på liste",
|
||||
"Modified:" : "Ændret:",
|
||||
"Created:" : "Oprettet:",
|
||||
"by" : "af",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Saved" : "Gemt",
|
||||
"Attachments" : "Vedhæftede filer",
|
||||
"Comments" : "Kommentarer",
|
||||
"History" : "Hostorik",
|
||||
"Add a card description…" : "Tilføj en beskrivelse...",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Shared boards" : "Delte lister",
|
||||
"Shared with you" : "Delt med dig",
|
||||
"Move board to archive" : "Flyt liste til arkiv",
|
||||
"Create a new board" : "Opret ny liste"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
13
l10n/de.js
13
l10n/de.js
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Stunden",
|
||||
"Minutes" : "Minuten",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
@@ -27,6 +29,7 @@ OC.L10N.register(
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"More actions" : "Weitere Aktionen",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Archive board" : "Board archivieren",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Delete board" : "Board löschen",
|
||||
@@ -35,17 +38,19 @@ OC.L10N.register(
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"by" : "von",
|
||||
"Choose a label" : "Etikett wählen",
|
||||
"Add a label" : "Etikett hinzufügen",
|
||||
"Select labels…" : "Etiketten auswählen...",
|
||||
"Due date" : "Fälligkeitsdatum",
|
||||
"Click to set" : "Klicken zum Übernehmen",
|
||||
"Remove due date" : "Ablaufdatum löschen",
|
||||
"Description" : "Beschreibung",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Saved" : "Gespeichert",
|
||||
"Add a card description…" : "Eine Kartenbeschreibung hinzufügen…",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"History" : "Verlauf",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared boards" : "Geteilte Boards",
|
||||
"Shared with you" : "Mit Dir geteilt",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Move board to archive" : "Board ins Archiv verschieben",
|
||||
"Create a new board" : "Neues Board erstellen"
|
||||
},
|
||||
|
||||
13
l10n/de.json
13
l10n/de.json
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Stunden",
|
||||
"Minutes" : "Minuten",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
@@ -25,6 +27,7 @@
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"More actions" : "Weitere Aktionen",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Archive board" : "Board archivieren",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Delete board" : "Board löschen",
|
||||
@@ -33,17 +36,19 @@
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"by" : "von",
|
||||
"Choose a label" : "Etikett wählen",
|
||||
"Add a label" : "Etikett hinzufügen",
|
||||
"Select labels…" : "Etiketten auswählen...",
|
||||
"Due date" : "Fälligkeitsdatum",
|
||||
"Click to set" : "Klicken zum Übernehmen",
|
||||
"Remove due date" : "Ablaufdatum löschen",
|
||||
"Description" : "Beschreibung",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Saved" : "Gespeichert",
|
||||
"Add a card description…" : "Eine Kartenbeschreibung hinzufügen…",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"History" : "Verlauf",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared boards" : "Geteilte Boards",
|
||||
"Shared with you" : "Mit Dir geteilt",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Move board to archive" : "Board ins Archiv verschieben",
|
||||
"Create a new board" : "Neues Board erstellen"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Stunden",
|
||||
"Minutes" : "Minuten",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
@@ -23,10 +25,11 @@ OC.L10N.register(
|
||||
"Edit" : "Bearbeiten",
|
||||
"Manage" : "Verwalten",
|
||||
"Discard share" : "Teilen beenden",
|
||||
"Create a new tag" : "Neuen Tag erstellen",
|
||||
"Create a new tag" : "Tag erstellen",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"More actions" : "Weitere Aktionen",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Archive board" : "Board archivieren",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Delete board" : "Board löschen",
|
||||
@@ -35,17 +38,19 @@ OC.L10N.register(
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"by" : "von",
|
||||
"Choose a label" : "Tag auswählen",
|
||||
"Add a label" : "Tag hinzufügen",
|
||||
"Select labels…" : "Tags auswählen…",
|
||||
"Due date" : "Zieltermin",
|
||||
"Click to set" : "Setzen",
|
||||
"Remove due date" : "Zieltermin entfernen",
|
||||
"Description" : "Beschreibung",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Saved" : "Gespeichert",
|
||||
"Add a card description…" : "Beschreibung hinzufügen …",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"History" : "Verlauf",
|
||||
"Add a card description…" : "Beschreibung hinzufügen…",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared boards" : "Geteilte Boards",
|
||||
"Shared with you" : "Mit Ihnen geteilt",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Move board to archive" : "Board ins Archiv verschieben",
|
||||
"Create a new board" : "Neues Board erstellen"
|
||||
},
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Stunden",
|
||||
"Minutes" : "Minuten",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
@@ -21,10 +23,11 @@
|
||||
"Edit" : "Bearbeiten",
|
||||
"Manage" : "Verwalten",
|
||||
"Discard share" : "Teilen beenden",
|
||||
"Create a new tag" : "Neuen Tag erstellen",
|
||||
"Create a new tag" : "Tag erstellen",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"More actions" : "Weitere Aktionen",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Archive board" : "Board archivieren",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Delete board" : "Board löschen",
|
||||
@@ -33,17 +36,19 @@
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"by" : "von",
|
||||
"Choose a label" : "Tag auswählen",
|
||||
"Add a label" : "Tag hinzufügen",
|
||||
"Select labels…" : "Tags auswählen…",
|
||||
"Due date" : "Zieltermin",
|
||||
"Click to set" : "Setzen",
|
||||
"Remove due date" : "Zieltermin entfernen",
|
||||
"Description" : "Beschreibung",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Saved" : "Gespeichert",
|
||||
"Add a card description…" : "Beschreibung hinzufügen …",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"History" : "Verlauf",
|
||||
"Add a card description…" : "Beschreibung hinzufügen…",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared boards" : "Geteilte Boards",
|
||||
"Shared with you" : "Mit Ihnen geteilt",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Move board to archive" : "Board ins Archiv verschieben",
|
||||
"Create a new board" : "Neues Board erstellen"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Ώρες",
|
||||
"Minutes" : "Λεπτά",
|
||||
"Finished" : "Ολοκληρώθηκε",
|
||||
"To review" : "Προς επισκόπηση",
|
||||
"Action needed" : "Απαιτείται ενέργεια",
|
||||
@@ -31,9 +33,6 @@ OC.L10N.register(
|
||||
"Description" : "Περιγραφή",
|
||||
"Saved" : "Αποθηκεύτηκε",
|
||||
"Add a card description…" : "Προσθήκη περιγραφής κάρτας...",
|
||||
"Attachments" : "Συνημμένα",
|
||||
"Comments" : "Σχόλια",
|
||||
"History" : "Ιστορικό",
|
||||
"Shared with you" : "Διαμοιρασμένα με εσάς",
|
||||
"Create a new board" : "Δημιουργία νέου πίνακα"
|
||||
},
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Ώρες",
|
||||
"Minutes" : "Λεπτά",
|
||||
"Finished" : "Ολοκληρώθηκε",
|
||||
"To review" : "Προς επισκόπηση",
|
||||
"Action needed" : "Απαιτείται ενέργεια",
|
||||
@@ -29,9 +31,6 @@
|
||||
"Description" : "Περιγραφή",
|
||||
"Saved" : "Αποθηκεύτηκε",
|
||||
"Add a card description…" : "Προσθήκη περιγραφής κάρτας...",
|
||||
"Attachments" : "Συνημμένα",
|
||||
"Comments" : "Σχόλια",
|
||||
"History" : "Ιστορικό",
|
||||
"Shared with you" : "Διαμοιρασμένα με εσάς",
|
||||
"Create a new board" : "Δημιουργία νέου πίνακα"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Hours",
|
||||
"Minutes" : "Minutes",
|
||||
"Finished" : "Finished",
|
||||
"To review" : "To review",
|
||||
"Action needed" : "Action needed",
|
||||
@@ -27,6 +29,7 @@ OC.L10N.register(
|
||||
"Title" : "Title",
|
||||
"Members" : "Members",
|
||||
"More actions" : "More actions",
|
||||
"Edit board" : "Edit board",
|
||||
"Archive board" : "Archive board",
|
||||
"Unarchive board" : "Unarchive board",
|
||||
"Delete board" : "Delete board",
|
||||
@@ -35,17 +38,19 @@ OC.L10N.register(
|
||||
"Modified:" : "Modified:",
|
||||
"Created:" : "Created:",
|
||||
"by" : "by",
|
||||
"Choose a label" : "Choose a label",
|
||||
"Add a label" : "Add a label",
|
||||
"Select labels…" : "Select labels…",
|
||||
"Due date" : "Due date",
|
||||
"Click to set" : "Click to set",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Formatting help",
|
||||
"Saved" : "Saved",
|
||||
"Add a card description…" : "Add a card description…",
|
||||
"Attachments" : "Attachments",
|
||||
"Comments" : "Comments",
|
||||
"History" : "History",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Shared boards" : "Shared boards",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Edit board" : "Edit board",
|
||||
"Move board to archive" : "Move board to archive",
|
||||
"Create a new board" : "Create a new board"
|
||||
},
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Hours",
|
||||
"Minutes" : "Minutes",
|
||||
"Finished" : "Finished",
|
||||
"To review" : "To review",
|
||||
"Action needed" : "Action needed",
|
||||
@@ -25,6 +27,7 @@
|
||||
"Title" : "Title",
|
||||
"Members" : "Members",
|
||||
"More actions" : "More actions",
|
||||
"Edit board" : "Edit board",
|
||||
"Archive board" : "Archive board",
|
||||
"Unarchive board" : "Unarchive board",
|
||||
"Delete board" : "Delete board",
|
||||
@@ -33,17 +36,19 @@
|
||||
"Modified:" : "Modified:",
|
||||
"Created:" : "Created:",
|
||||
"by" : "by",
|
||||
"Choose a label" : "Choose a label",
|
||||
"Add a label" : "Add a label",
|
||||
"Select labels…" : "Select labels…",
|
||||
"Due date" : "Due date",
|
||||
"Click to set" : "Click to set",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Formatting help",
|
||||
"Saved" : "Saved",
|
||||
"Add a card description…" : "Add a card description…",
|
||||
"Attachments" : "Attachments",
|
||||
"Comments" : "Comments",
|
||||
"History" : "History",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Shared boards" : "Shared boards",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Edit board" : "Edit board",
|
||||
"Move board to archive" : "Move board to archive",
|
||||
"Create a new board" : "Create a new board"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
21
l10n/es.js
21
l10n/es.js
@@ -1,12 +1,14 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Finished" : "Finalizado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Se necesita una acción",
|
||||
"Action needed" : "Acción necesaria",
|
||||
"Later" : "Después",
|
||||
"Deck" : "Deck",
|
||||
"Add a new stack" : "Añadir una n",
|
||||
"Add a new stack" : "Añadir nuevo montón",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
@@ -14,7 +16,7 @@ OC.L10N.register(
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Eliminar",
|
||||
"Enter a card title" : "Introducir un título de tarjeta",
|
||||
"Enter a card title" : "Introducir título de tarjeta",
|
||||
"Sharing" : "Compartir",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Seleccionar usuarios o grupos con los que compartir",
|
||||
@@ -27,6 +29,7 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"More actions" : "Más acciones",
|
||||
"Edit board" : "Editar tablero",
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Eliminar tablero",
|
||||
@@ -35,17 +38,19 @@ OC.L10N.register(
|
||||
"Modified:" : "Modificado: ",
|
||||
"Created:" : "Creado: ",
|
||||
"by" : "por",
|
||||
"Choose a label" : "Escoger etiqueta",
|
||||
"Add a label" : "Añadir etiqueta",
|
||||
"Select labels…" : "Seleccionar etiquetas...",
|
||||
"Due date" : "Fecha límite",
|
||||
"Click to set" : "Pinchar para establecer",
|
||||
"Remove due date" : "Eliminar fecha límite",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Add a card description…" : "Añadir una descripción de la tarjeta...",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentario",
|
||||
"History" : "Historia",
|
||||
"Add a card description…" : "Añadir una descripción de tarjeta...",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Shared with you" : "Compartido contigo",
|
||||
"Edit board" : "Editar tablero",
|
||||
"Move board to archive" : "Mover tablero al archivo",
|
||||
"Create a new board" : "Crear un tablero nuevo"
|
||||
},
|
||||
|
||||
21
l10n/es.json
21
l10n/es.json
@@ -1,10 +1,12 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Finished" : "Finalizado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Se necesita una acción",
|
||||
"Action needed" : "Acción necesaria",
|
||||
"Later" : "Después",
|
||||
"Deck" : "Deck",
|
||||
"Add a new stack" : "Añadir una n",
|
||||
"Add a new stack" : "Añadir nuevo montón",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
@@ -12,7 +14,7 @@
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Eliminar",
|
||||
"Enter a card title" : "Introducir un título de tarjeta",
|
||||
"Enter a card title" : "Introducir título de tarjeta",
|
||||
"Sharing" : "Compartir",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Seleccionar usuarios o grupos con los que compartir",
|
||||
@@ -25,6 +27,7 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"More actions" : "Más acciones",
|
||||
"Edit board" : "Editar tablero",
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Eliminar tablero",
|
||||
@@ -33,17 +36,19 @@
|
||||
"Modified:" : "Modificado: ",
|
||||
"Created:" : "Creado: ",
|
||||
"by" : "por",
|
||||
"Choose a label" : "Escoger etiqueta",
|
||||
"Add a label" : "Añadir etiqueta",
|
||||
"Select labels…" : "Seleccionar etiquetas...",
|
||||
"Due date" : "Fecha límite",
|
||||
"Click to set" : "Pinchar para establecer",
|
||||
"Remove due date" : "Eliminar fecha límite",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Add a card description…" : "Añadir una descripción de la tarjeta...",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentario",
|
||||
"History" : "Historia",
|
||||
"Add a card description…" : "Añadir una descripción de tarjeta...",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Shared with you" : "Compartido contigo",
|
||||
"Edit board" : "Editar tablero",
|
||||
"Move board to archive" : "Mover tablero al archivo",
|
||||
"Create a new board" : "Crear un tablero nuevo"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -31,9 +31,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"History" : "Histórico",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Create a new board" : "Crear nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -29,9 +29,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"History" : "Histórico",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Create a new board" : "Crear nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -27,6 +29,7 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"More actions" : "Más acciones",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
@@ -35,17 +38,19 @@ OC.L10N.register(
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a label" : "Elegir una etiqueta",
|
||||
"Add a label" : "Agregar una etiqueta",
|
||||
"Select labels…" : "Seleccionar etiquetas...",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"History" : "Histórico",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -25,6 +27,7 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"More actions" : "Más acciones",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
@@ -33,17 +36,19 @@
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a label" : "Elegir una etiqueta",
|
||||
"Add a label" : "Agregar una etiqueta",
|
||||
"Select labels…" : "Seleccionar etiquetas...",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"History" : "Histórico",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
11
l10n/fi.js
11
l10n/fi.js
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Tunnit",
|
||||
"Minutes" : "Minuutit",
|
||||
"Finished" : "Valmistunut",
|
||||
"To review" : "Arvostella",
|
||||
"Action needed" : "Toimia vaaditaan",
|
||||
@@ -15,22 +17,25 @@ OC.L10N.register(
|
||||
"Delete" : "Poista",
|
||||
"Enter a card title" : "Anna otsikko",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Tags" : "Tunnisteet",
|
||||
"Select users or groups to share with" : "Valitse käyttäjiä tai ryhmiä joille haluat jakaa",
|
||||
"No matching user or group found." : "Käyttäjää tai ryhmää ei löytynyt.",
|
||||
"Share" : "Jaa",
|
||||
"Edit" : "Muokkaa",
|
||||
"Manage" : "Hallitse",
|
||||
"Discard share" : "Peru jakaminen",
|
||||
"Title" : "Otsikko",
|
||||
"Members" : "Jäsenet",
|
||||
"More actions" : "Lisää toimintoja",
|
||||
"Delete board" : "Poista taulu",
|
||||
"Create new board" : "Luo uusi taulu",
|
||||
"New board title" : "Uusi taulun otsikko",
|
||||
"Modified:" : "Muokattu:",
|
||||
"Created:" : "Luotu:",
|
||||
"by" : " Kirjoittaja:",
|
||||
"Due date" : "Eräpäivä",
|
||||
"Description" : "Kuvaus",
|
||||
"Saved" : "Tallennettu",
|
||||
"Attachments" : "Liitteet",
|
||||
"Comments" : "Kommentit",
|
||||
"History" : "Historia",
|
||||
"Shared with you" : "Jaetu kanssasi",
|
||||
"Create a new board" : "Luo uusi taulu"
|
||||
},
|
||||
|
||||
11
l10n/fi.json
11
l10n/fi.json
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Tunnit",
|
||||
"Minutes" : "Minuutit",
|
||||
"Finished" : "Valmistunut",
|
||||
"To review" : "Arvostella",
|
||||
"Action needed" : "Toimia vaaditaan",
|
||||
@@ -13,22 +15,25 @@
|
||||
"Delete" : "Poista",
|
||||
"Enter a card title" : "Anna otsikko",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Tags" : "Tunnisteet",
|
||||
"Select users or groups to share with" : "Valitse käyttäjiä tai ryhmiä joille haluat jakaa",
|
||||
"No matching user or group found." : "Käyttäjää tai ryhmää ei löytynyt.",
|
||||
"Share" : "Jaa",
|
||||
"Edit" : "Muokkaa",
|
||||
"Manage" : "Hallitse",
|
||||
"Discard share" : "Peru jakaminen",
|
||||
"Title" : "Otsikko",
|
||||
"Members" : "Jäsenet",
|
||||
"More actions" : "Lisää toimintoja",
|
||||
"Delete board" : "Poista taulu",
|
||||
"Create new board" : "Luo uusi taulu",
|
||||
"New board title" : "Uusi taulun otsikko",
|
||||
"Modified:" : "Muokattu:",
|
||||
"Created:" : "Luotu:",
|
||||
"by" : " Kirjoittaja:",
|
||||
"Due date" : "Eräpäivä",
|
||||
"Description" : "Kuvaus",
|
||||
"Saved" : "Tallennettu",
|
||||
"Attachments" : "Liitteet",
|
||||
"Comments" : "Kommentit",
|
||||
"History" : "Historia",
|
||||
"Shared with you" : "Jaetu kanssasi",
|
||||
"Create a new board" : "Luo uusi taulu"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
13
l10n/fr.js
13
l10n/fr.js
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Heures",
|
||||
"Minutes" : "Minutes",
|
||||
"Finished" : "Terminé",
|
||||
"To review" : "A réviser",
|
||||
"Action needed" : "Action requise",
|
||||
@@ -27,6 +29,7 @@ OC.L10N.register(
|
||||
"Title" : "Titre",
|
||||
"Members" : "Membres",
|
||||
"More actions" : "Plus d'actions",
|
||||
"Edit board" : "Modifier le tableau",
|
||||
"Archive board" : "Archiver le tableau",
|
||||
"Unarchive board" : "Ne plus archiver le tableau",
|
||||
"Delete board" : "Supprimer le tableau",
|
||||
@@ -35,17 +38,19 @@ OC.L10N.register(
|
||||
"Modified:" : "Modifié le :",
|
||||
"Created:" : "Créé le :",
|
||||
"by" : "par",
|
||||
"Choose a label" : "Choisir une étiquette",
|
||||
"Add a label" : "Ajouter une étiquette",
|
||||
"Select labels…" : "Sélectionner des étiquettes...",
|
||||
"Due date" : "Date d'échéance",
|
||||
"Click to set" : "Cliquez pour définir",
|
||||
"Remove due date" : "Supprimer la date d'échéance",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Aide sur la mise en forme",
|
||||
"Saved" : "Enregistré",
|
||||
"Add a card description…" : "Ajouter une description pour la carte",
|
||||
"Attachments" : "Pièces jointes",
|
||||
"Comments" : "Commentaires",
|
||||
"History" : "Journal",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
"Shared boards" : "Tableaux archivés",
|
||||
"Shared with you" : "Partagé avec vous",
|
||||
"Edit board" : "Modifier le tableau",
|
||||
"Move board to archive" : "Déplacer le tableau vers l'archive",
|
||||
"Create a new board" : "Créer un nouveau tableau"
|
||||
},
|
||||
|
||||
13
l10n/fr.json
13
l10n/fr.json
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Heures",
|
||||
"Minutes" : "Minutes",
|
||||
"Finished" : "Terminé",
|
||||
"To review" : "A réviser",
|
||||
"Action needed" : "Action requise",
|
||||
@@ -25,6 +27,7 @@
|
||||
"Title" : "Titre",
|
||||
"Members" : "Membres",
|
||||
"More actions" : "Plus d'actions",
|
||||
"Edit board" : "Modifier le tableau",
|
||||
"Archive board" : "Archiver le tableau",
|
||||
"Unarchive board" : "Ne plus archiver le tableau",
|
||||
"Delete board" : "Supprimer le tableau",
|
||||
@@ -33,17 +36,19 @@
|
||||
"Modified:" : "Modifié le :",
|
||||
"Created:" : "Créé le :",
|
||||
"by" : "par",
|
||||
"Choose a label" : "Choisir une étiquette",
|
||||
"Add a label" : "Ajouter une étiquette",
|
||||
"Select labels…" : "Sélectionner des étiquettes...",
|
||||
"Due date" : "Date d'échéance",
|
||||
"Click to set" : "Cliquez pour définir",
|
||||
"Remove due date" : "Supprimer la date d'échéance",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Aide sur la mise en forme",
|
||||
"Saved" : "Enregistré",
|
||||
"Add a card description…" : "Ajouter une description pour la carte",
|
||||
"Attachments" : "Pièces jointes",
|
||||
"Comments" : "Commentaires",
|
||||
"History" : "Journal",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
"Shared boards" : "Tableaux archivés",
|
||||
"Shared with you" : "Partagé avec vous",
|
||||
"Edit board" : "Modifier le tableau",
|
||||
"Move board to archive" : "Déplacer le tableau vers l'archive",
|
||||
"Create a new board" : "Créer un nouveau tableau"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
|
||||
@@ -30,9 +30,6 @@ OC.L10N.register(
|
||||
"Description" : "Opis",
|
||||
"Saved" : "Spremljeno",
|
||||
"Add a card description…" : "Dodaj opis...",
|
||||
"Attachments" : "Prilozi",
|
||||
"Comments" : "Komentari",
|
||||
"History" : "Povijest",
|
||||
"Shared with you" : "Primljena ploča",
|
||||
"Create a new board" : "Izradi novu ploču"
|
||||
},
|
||||
|
||||
@@ -28,9 +28,6 @@
|
||||
"Description" : "Opis",
|
||||
"Saved" : "Spremljeno",
|
||||
"Add a card description…" : "Dodaj opis...",
|
||||
"Attachments" : "Prilozi",
|
||||
"Comments" : "Komentari",
|
||||
"History" : "Povijest",
|
||||
"Shared with you" : "Primljena ploča",
|
||||
"Create a new board" : "Izradi novu ploču"
|
||||
},"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"
|
||||
|
||||
@@ -13,8 +13,6 @@ OC.L10N.register(
|
||||
"Modified:" : "Módosítva:",
|
||||
"Created:" : "Létrehozva:",
|
||||
"Saved" : "Elmentve",
|
||||
"Comments" : "Hozzászólások",
|
||||
"History" : "Előzmények",
|
||||
"Shared with you" : "Megosztva veled"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -11,8 +11,6 @@
|
||||
"Modified:" : "Módosítva:",
|
||||
"Created:" : "Létrehozva:",
|
||||
"Saved" : "Elmentve",
|
||||
"Comments" : "Hozzászólások",
|
||||
"History" : "Előzmények",
|
||||
"Shared with you" : "Megosztva veled"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -16,9 +16,6 @@ OC.L10N.register(
|
||||
"Created:" : "Create:",
|
||||
"by" : "per",
|
||||
"Saved" : "Salveguardate",
|
||||
"Attachments" : "Attachamentos",
|
||||
"Comments" : "Commentarios",
|
||||
"History" : "Historia",
|
||||
"Shared with you" : "Compartite con te"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -14,9 +14,6 @@
|
||||
"Created:" : "Create:",
|
||||
"by" : "per",
|
||||
"Saved" : "Salveguardate",
|
||||
"Attachments" : "Attachamentos",
|
||||
"Comments" : "Commentarios",
|
||||
"History" : "Historia",
|
||||
"Shared with you" : "Compartite con te"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -32,9 +32,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Hjálp við að sníða",
|
||||
"Saved" : "Vistað",
|
||||
"Add a card description…" : "Settu inn lýsingu á spjaldi ...",
|
||||
"Attachments" : "Viðhengi",
|
||||
"Comments" : "Athugasemdir",
|
||||
"History" : "Ferill",
|
||||
"Shared with you" : "Deilt með þér",
|
||||
"Create a new board" : "Búa til nýtt borð"
|
||||
},
|
||||
|
||||
@@ -30,9 +30,6 @@
|
||||
"Formatting help" : "Hjálp við að sníða",
|
||||
"Saved" : "Vistað",
|
||||
"Add a card description…" : "Settu inn lýsingu á spjaldi ...",
|
||||
"Attachments" : "Viðhengi",
|
||||
"Comments" : "Athugasemdir",
|
||||
"History" : "Ferill",
|
||||
"Shared with you" : "Deilt með þér",
|
||||
"Create a new board" : "Búa til nýtt borð"
|
||||
},"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"
|
||||
|
||||
12
l10n/it.js
12
l10n/it.js
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Ore",
|
||||
"Minutes" : "Minuti",
|
||||
"Finished" : "Finito",
|
||||
"To review" : "Da revisionare",
|
||||
"Action needed" : "Azione necessaria",
|
||||
@@ -26,18 +28,22 @@ OC.L10N.register(
|
||||
"Create a new tag" : "Crea una nuova etichetta",
|
||||
"Title" : "Titolo",
|
||||
"Members" : "Membri",
|
||||
"More actions" : "Altre azioni",
|
||||
"Create new board" : "Crea una nuova lavagna",
|
||||
"New board title" : "Titolo nuova lavagna",
|
||||
"Modified:" : "Modificato:",
|
||||
"Created:" : "Creato:",
|
||||
"by" : "da",
|
||||
"Choose a label" : "Scegli un'etichetta",
|
||||
"Add a label" : "Aggiungi un'etichetta",
|
||||
"Select labels…" : "Seleziona etichette...",
|
||||
"Due date" : "Data di scadenza",
|
||||
"Click to set" : "Clic per impostare",
|
||||
"Remove due date" : "Rimuovi data di scadenza",
|
||||
"Description" : "Descrizione",
|
||||
"Formatting help" : "Guida di formattazione",
|
||||
"Saved" : "Salvato",
|
||||
"Add a card description…" : "Aggiungi descrizione della scheda...",
|
||||
"Attachments" : "Allegati",
|
||||
"Comments" : "Commenti",
|
||||
"History" : "Cronologia",
|
||||
"Shared with you" : "Condiviso con te",
|
||||
"Create a new board" : "Crea una nuova lavagna"
|
||||
},
|
||||
|
||||
12
l10n/it.json
12
l10n/it.json
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Ore",
|
||||
"Minutes" : "Minuti",
|
||||
"Finished" : "Finito",
|
||||
"To review" : "Da revisionare",
|
||||
"Action needed" : "Azione necessaria",
|
||||
@@ -24,18 +26,22 @@
|
||||
"Create a new tag" : "Crea una nuova etichetta",
|
||||
"Title" : "Titolo",
|
||||
"Members" : "Membri",
|
||||
"More actions" : "Altre azioni",
|
||||
"Create new board" : "Crea una nuova lavagna",
|
||||
"New board title" : "Titolo nuova lavagna",
|
||||
"Modified:" : "Modificato:",
|
||||
"Created:" : "Creato:",
|
||||
"by" : "da",
|
||||
"Choose a label" : "Scegli un'etichetta",
|
||||
"Add a label" : "Aggiungi un'etichetta",
|
||||
"Select labels…" : "Seleziona etichette...",
|
||||
"Due date" : "Data di scadenza",
|
||||
"Click to set" : "Clic per impostare",
|
||||
"Remove due date" : "Rimuovi data di scadenza",
|
||||
"Description" : "Descrizione",
|
||||
"Formatting help" : "Guida di formattazione",
|
||||
"Saved" : "Salvato",
|
||||
"Add a card description…" : "Aggiungi descrizione della scheda...",
|
||||
"Attachments" : "Allegati",
|
||||
"Comments" : "Commenti",
|
||||
"History" : "Cronologia",
|
||||
"Shared with you" : "Condiviso con te",
|
||||
"Create a new board" : "Crea una nuova lavagna"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -28,9 +28,6 @@ OC.L10N.register(
|
||||
"Created:" : "만든 날짜:",
|
||||
"by" : "by",
|
||||
"Saved" : "저장됨",
|
||||
"Attachments" : "첨부",
|
||||
"Comments" : "댓글",
|
||||
"History" : "과거 기록",
|
||||
"Shared with you" : "내게 공유됨",
|
||||
"Create a new board" : "새 게시판 만들기"
|
||||
},
|
||||
|
||||
@@ -26,9 +26,6 @@
|
||||
"Created:" : "만든 날짜:",
|
||||
"by" : "by",
|
||||
"Saved" : "저장됨",
|
||||
"Attachments" : "첨부",
|
||||
"Comments" : "댓글",
|
||||
"History" : "과거 기록",
|
||||
"Shared with you" : "내게 공유됨",
|
||||
"Create a new board" : "새 게시판 만들기"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
|
||||
@@ -17,9 +17,6 @@ OC.L10N.register(
|
||||
"Modified:" : "Modificēta:",
|
||||
"Created:" : "Izveidota:",
|
||||
"Saved" : "Saglabāts",
|
||||
"Attachments" : "Pielikumi",
|
||||
"Comments" : "Komentāri",
|
||||
"History" : "Vēsture",
|
||||
"Shared with you" : "Koplietots ar tevi"
|
||||
},
|
||||
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);");
|
||||
|
||||
@@ -15,9 +15,6 @@
|
||||
"Modified:" : "Modificēta:",
|
||||
"Created:" : "Izveidota:",
|
||||
"Saved" : "Saglabāts",
|
||||
"Attachments" : "Pielikumi",
|
||||
"Comments" : "Komentāri",
|
||||
"History" : "Vēsture",
|
||||
"Shared with you" : "Koplietots ar tevi"
|
||||
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"
|
||||
}
|
||||
@@ -25,9 +25,6 @@ OC.L10N.register(
|
||||
"Description" : "Тайлбар",
|
||||
"Saved" : "Хадгалсан",
|
||||
"Add a card description…" : "Картын тайлбар...",
|
||||
"Attachments" : "Хавсралт",
|
||||
"Comments" : "Сэтгэгдлүүд",
|
||||
"History" : "Түүх",
|
||||
"Shared with you" : "Танд түгээсэн"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -23,9 +23,6 @@
|
||||
"Description" : "Тайлбар",
|
||||
"Saved" : "Хадгалсан",
|
||||
"Add a card description…" : "Картын тайлбар...",
|
||||
"Attachments" : "Хавсралт",
|
||||
"Comments" : "Сэтгэгдлүүд",
|
||||
"History" : "Түүх",
|
||||
"Shared with you" : "Танд түгээсэн"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
13
l10n/nb.js
13
l10n/nb.js
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Timer",
|
||||
"Minutes" : "Minutter",
|
||||
"Finished" : "Fullført",
|
||||
"To review" : "Til gjennomlesning",
|
||||
"Action needed" : "Handling påkrevd",
|
||||
@@ -27,6 +29,7 @@ OC.L10N.register(
|
||||
"Title" : "Tittel",
|
||||
"Members" : "Medlemmer",
|
||||
"More actions" : "Flere handlinger",
|
||||
"Edit board" : "Rediger bord",
|
||||
"Archive board" : "Arkiver bord",
|
||||
"Unarchive board" : "Avarkiver bord",
|
||||
"Delete board" : "Slett bord",
|
||||
@@ -35,17 +38,19 @@ OC.L10N.register(
|
||||
"Modified:" : "Endret:",
|
||||
"Created:" : "Opprettet:",
|
||||
"by" : "av",
|
||||
"Choose a label" : "Velg en etikett",
|
||||
"Add a label" : "Legg til en etikett",
|
||||
"Select labels…" : "Velg etiketter…",
|
||||
"Due date" : "Forfallsdato",
|
||||
"Click to set" : "Klikk for å sette",
|
||||
"Remove due date" : "Fjern forfallsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Formateringshjelp",
|
||||
"Saved" : "Lagret",
|
||||
"Add a card description…" : "Legg til en kortbeskrivelse…",
|
||||
"Attachments" : "Vedlegg",
|
||||
"Comments" : "Kommentarer",
|
||||
"History" : "Historikk",
|
||||
"Archived boards" : "Akriverte bord",
|
||||
"Shared boards" : "Delte bord",
|
||||
"Shared with you" : "Delt med deg",
|
||||
"Edit board" : "Rediger bord",
|
||||
"Move board to archive" : "Flytt bord til arkiv",
|
||||
"Create a new board" : "Opprett et nytt bord"
|
||||
},
|
||||
|
||||
13
l10n/nb.json
13
l10n/nb.json
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Timer",
|
||||
"Minutes" : "Minutter",
|
||||
"Finished" : "Fullført",
|
||||
"To review" : "Til gjennomlesning",
|
||||
"Action needed" : "Handling påkrevd",
|
||||
@@ -25,6 +27,7 @@
|
||||
"Title" : "Tittel",
|
||||
"Members" : "Medlemmer",
|
||||
"More actions" : "Flere handlinger",
|
||||
"Edit board" : "Rediger bord",
|
||||
"Archive board" : "Arkiver bord",
|
||||
"Unarchive board" : "Avarkiver bord",
|
||||
"Delete board" : "Slett bord",
|
||||
@@ -33,17 +36,19 @@
|
||||
"Modified:" : "Endret:",
|
||||
"Created:" : "Opprettet:",
|
||||
"by" : "av",
|
||||
"Choose a label" : "Velg en etikett",
|
||||
"Add a label" : "Legg til en etikett",
|
||||
"Select labels…" : "Velg etiketter…",
|
||||
"Due date" : "Forfallsdato",
|
||||
"Click to set" : "Klikk for å sette",
|
||||
"Remove due date" : "Fjern forfallsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Formateringshjelp",
|
||||
"Saved" : "Lagret",
|
||||
"Add a card description…" : "Legg til en kortbeskrivelse…",
|
||||
"Attachments" : "Vedlegg",
|
||||
"Comments" : "Kommentarer",
|
||||
"History" : "Historikk",
|
||||
"Archived boards" : "Akriverte bord",
|
||||
"Shared boards" : "Delte bord",
|
||||
"Shared with you" : "Delt med deg",
|
||||
"Edit board" : "Rediger bord",
|
||||
"Move board to archive" : "Flytt bord til arkiv",
|
||||
"Create a new board" : "Opprett et nytt bord"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
19
l10n/nl.js
19
l10n/nl.js
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Uur",
|
||||
"Minutes" : "Minutes",
|
||||
"Finished" : "Afgerond",
|
||||
"To review" : "Beoordelen",
|
||||
"Action needed" : "Actie benodigd",
|
||||
@@ -26,19 +28,30 @@ OC.L10N.register(
|
||||
"Create a new tag" : "Nieuwe label maken",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Leden",
|
||||
"More actions" : "Meer acties",
|
||||
"Edit board" : "Bewerk plank",
|
||||
"Archive board" : "Archiveer plank",
|
||||
"Unarchive board" : "De-archiveer plank",
|
||||
"Delete board" : "Verwijder plank",
|
||||
"Create new board" : "Nieuw bord maken",
|
||||
"New board title" : "Nieuwe bord titel",
|
||||
"Modified:" : "Bewerkt:",
|
||||
"Created:" : "Gemaakt:",
|
||||
"by" : "door",
|
||||
"Choose a label" : "Label kiezen",
|
||||
"Add a label" : "Label toevoegen",
|
||||
"Select labels…" : "Labels selecteren...",
|
||||
"Due date" : "Vervaldatum",
|
||||
"Click to set" : "Klik om in te stellen",
|
||||
"Remove due date" : "Verwijder vervaldatum",
|
||||
"Description" : "Beschrijving",
|
||||
"Formatting help" : "formatteringshulp",
|
||||
"Saved" : "Opgeslagen",
|
||||
"Add a card description…" : "Voeg een kaartbeschrijving toe...",
|
||||
"Attachments" : "Bijlage",
|
||||
"Comments" : "Opmerkingen",
|
||||
"History" : "Geschiedenis",
|
||||
"Archived boards" : "Gearchiveerde planken",
|
||||
"Shared boards" : "Gedeelde borden",
|
||||
"Shared with you" : "Deel met jou",
|
||||
"Move board to archive" : "Verplaats plank naar archief",
|
||||
"Create a new board" : "Een nieuw bord maken"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
19
l10n/nl.json
19
l10n/nl.json
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Uur",
|
||||
"Minutes" : "Minutes",
|
||||
"Finished" : "Afgerond",
|
||||
"To review" : "Beoordelen",
|
||||
"Action needed" : "Actie benodigd",
|
||||
@@ -24,19 +26,30 @@
|
||||
"Create a new tag" : "Nieuwe label maken",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Leden",
|
||||
"More actions" : "Meer acties",
|
||||
"Edit board" : "Bewerk plank",
|
||||
"Archive board" : "Archiveer plank",
|
||||
"Unarchive board" : "De-archiveer plank",
|
||||
"Delete board" : "Verwijder plank",
|
||||
"Create new board" : "Nieuw bord maken",
|
||||
"New board title" : "Nieuwe bord titel",
|
||||
"Modified:" : "Bewerkt:",
|
||||
"Created:" : "Gemaakt:",
|
||||
"by" : "door",
|
||||
"Choose a label" : "Label kiezen",
|
||||
"Add a label" : "Label toevoegen",
|
||||
"Select labels…" : "Labels selecteren...",
|
||||
"Due date" : "Vervaldatum",
|
||||
"Click to set" : "Klik om in te stellen",
|
||||
"Remove due date" : "Verwijder vervaldatum",
|
||||
"Description" : "Beschrijving",
|
||||
"Formatting help" : "formatteringshulp",
|
||||
"Saved" : "Opgeslagen",
|
||||
"Add a card description…" : "Voeg een kaartbeschrijving toe...",
|
||||
"Attachments" : "Bijlage",
|
||||
"Comments" : "Opmerkingen",
|
||||
"History" : "Geschiedenis",
|
||||
"Archived boards" : "Gearchiveerde planken",
|
||||
"Shared boards" : "Gedeelde borden",
|
||||
"Shared with you" : "Deel met jou",
|
||||
"Move board to archive" : "Verplaats plank naar archief",
|
||||
"Create a new board" : "Een nieuw bord maken"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
13
l10n/pl.js
13
l10n/pl.js
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Godzin",
|
||||
"Minutes" : "Minut",
|
||||
"Finished" : "Ukończone",
|
||||
"To review" : "Do sprawdzenia",
|
||||
"Action needed" : "Wymagające akcji",
|
||||
@@ -27,6 +29,7 @@ OC.L10N.register(
|
||||
"Title" : "Tytuł",
|
||||
"Members" : "Członkowie",
|
||||
"More actions" : "Więcej akcji",
|
||||
"Edit board" : "Edytuj tablicę",
|
||||
"Archive board" : "Zarchiwizuj tablicę",
|
||||
"Unarchive board" : "Przywróć tablicę",
|
||||
"Delete board" : "Usuń tablicę",
|
||||
@@ -35,17 +38,19 @@ OC.L10N.register(
|
||||
"Modified:" : "Zmodyfikowano:",
|
||||
"Created:" : "Utworzono:",
|
||||
"by" : "przez",
|
||||
"Choose a label" : "Wybierz tag",
|
||||
"Add a label" : "Dodaj tag",
|
||||
"Select labels…" : "Wybierz tagi...",
|
||||
"Due date" : "Data realizacji",
|
||||
"Click to set" : "Kliknij by ustawić",
|
||||
"Remove due date" : "Usuń datę realizacji",
|
||||
"Description" : "Opis",
|
||||
"Formatting help" : "Pomoc przy formatowaniu",
|
||||
"Saved" : "Zapisano",
|
||||
"Add a card description…" : "Dodaj opis karty",
|
||||
"Attachments" : "Załączniki",
|
||||
"Comments" : "Komentarze",
|
||||
"History" : "Historia",
|
||||
"Archived boards" : "Zarchiwizowane tablice",
|
||||
"Shared boards" : "Tablice współdzielone",
|
||||
"Shared with you" : "Współdzielone z tobą",
|
||||
"Edit board" : "Edytuj tablicę",
|
||||
"Move board to archive" : "Przesuń tablicę do archiwum",
|
||||
"Create a new board" : "Utwórz nową tablicę"
|
||||
},
|
||||
|
||||
13
l10n/pl.json
13
l10n/pl.json
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Godzin",
|
||||
"Minutes" : "Minut",
|
||||
"Finished" : "Ukończone",
|
||||
"To review" : "Do sprawdzenia",
|
||||
"Action needed" : "Wymagające akcji",
|
||||
@@ -25,6 +27,7 @@
|
||||
"Title" : "Tytuł",
|
||||
"Members" : "Członkowie",
|
||||
"More actions" : "Więcej akcji",
|
||||
"Edit board" : "Edytuj tablicę",
|
||||
"Archive board" : "Zarchiwizuj tablicę",
|
||||
"Unarchive board" : "Przywróć tablicę",
|
||||
"Delete board" : "Usuń tablicę",
|
||||
@@ -33,17 +36,19 @@
|
||||
"Modified:" : "Zmodyfikowano:",
|
||||
"Created:" : "Utworzono:",
|
||||
"by" : "przez",
|
||||
"Choose a label" : "Wybierz tag",
|
||||
"Add a label" : "Dodaj tag",
|
||||
"Select labels…" : "Wybierz tagi...",
|
||||
"Due date" : "Data realizacji",
|
||||
"Click to set" : "Kliknij by ustawić",
|
||||
"Remove due date" : "Usuń datę realizacji",
|
||||
"Description" : "Opis",
|
||||
"Formatting help" : "Pomoc przy formatowaniu",
|
||||
"Saved" : "Zapisano",
|
||||
"Add a card description…" : "Dodaj opis karty",
|
||||
"Attachments" : "Załączniki",
|
||||
"Comments" : "Komentarze",
|
||||
"History" : "Historia",
|
||||
"Archived boards" : "Zarchiwizowane tablice",
|
||||
"Shared boards" : "Tablice współdzielone",
|
||||
"Shared with you" : "Współdzielone z tobą",
|
||||
"Edit board" : "Edytuj tablicę",
|
||||
"Move board to archive" : "Przesuń tablicę do archiwum",
|
||||
"Create a new board" : "Utwórz nową tablicę"
|
||||
},"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisão",
|
||||
"Action needed" : "Ação necessária",
|
||||
@@ -27,6 +29,7 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Membros",
|
||||
"More actions" : "Mais ações",
|
||||
"Edit board" : "Editar painel",
|
||||
"Archive board" : "Arquivar painel",
|
||||
"Unarchive board" : "Desarquivar painel",
|
||||
"Delete board" : "Excluir painel",
|
||||
@@ -35,17 +38,19 @@ OC.L10N.register(
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Criado:",
|
||||
"by" : "por",
|
||||
"Choose a label" : "Escolher um rótulo",
|
||||
"Add a label" : "Adicionar um rótulo",
|
||||
"Select labels…" : "Selecionar rótulos...",
|
||||
"Due date" : "Data devida",
|
||||
"Click to set" : "Clique para setar",
|
||||
"Remove due date" : "Remover devido à data",
|
||||
"Description" : "Descrição",
|
||||
"Formatting help" : "Formatando ajuda",
|
||||
"Saved" : "Salvo",
|
||||
"Add a card description…" : "Adicionar uma descrição para o cartão...",
|
||||
"Attachments" : "Anexos",
|
||||
"Comments" : "Comentários",
|
||||
"History" : "Histórico",
|
||||
"Archived boards" : "Painéis arquivados",
|
||||
"Shared boards" : "Painéis compartilhados",
|
||||
"Shared with you" : "Compartilhado com você",
|
||||
"Edit board" : "Editar painel",
|
||||
"Move board to archive" : "Mover painel para o arquivo",
|
||||
"Create a new board" : "Criar um novo painel"
|
||||
},
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisão",
|
||||
"Action needed" : "Ação necessária",
|
||||
@@ -25,6 +27,7 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Membros",
|
||||
"More actions" : "Mais ações",
|
||||
"Edit board" : "Editar painel",
|
||||
"Archive board" : "Arquivar painel",
|
||||
"Unarchive board" : "Desarquivar painel",
|
||||
"Delete board" : "Excluir painel",
|
||||
@@ -33,17 +36,19 @@
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Criado:",
|
||||
"by" : "por",
|
||||
"Choose a label" : "Escolher um rótulo",
|
||||
"Add a label" : "Adicionar um rótulo",
|
||||
"Select labels…" : "Selecionar rótulos...",
|
||||
"Due date" : "Data devida",
|
||||
"Click to set" : "Clique para setar",
|
||||
"Remove due date" : "Remover devido à data",
|
||||
"Description" : "Descrição",
|
||||
"Formatting help" : "Formatando ajuda",
|
||||
"Saved" : "Salvo",
|
||||
"Add a card description…" : "Adicionar uma descrição para o cartão...",
|
||||
"Attachments" : "Anexos",
|
||||
"Comments" : "Comentários",
|
||||
"History" : "Histórico",
|
||||
"Archived boards" : "Painéis arquivados",
|
||||
"Shared boards" : "Painéis compartilhados",
|
||||
"Shared with you" : "Compartilhado com você",
|
||||
"Edit board" : "Editar painel",
|
||||
"Move board to archive" : "Mover painel para o arquivo",
|
||||
"Create a new board" : "Criar um novo painel"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
|
||||
13
l10n/ru.js
13
l10n/ru.js
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Часы",
|
||||
"Minutes" : "Минуты",
|
||||
"Finished" : "Завершено",
|
||||
"To review" : "Просмотреть",
|
||||
"Action needed" : "Требуется действие",
|
||||
@@ -27,6 +29,7 @@ OC.L10N.register(
|
||||
"Title" : "Заголовок",
|
||||
"Members" : "Участники",
|
||||
"More actions" : "Ещё действия",
|
||||
"Edit board" : "Править доску",
|
||||
"Archive board" : "Архивировать доску",
|
||||
"Unarchive board" : "Разархивировать доску",
|
||||
"Delete board" : "Удалить доску",
|
||||
@@ -35,17 +38,19 @@ OC.L10N.register(
|
||||
"Modified:" : "Изменён:",
|
||||
"Created:" : "Создан:",
|
||||
"by" : "автор",
|
||||
"Choose a label" : "Выберите метку",
|
||||
"Add a label" : "Добавить метку",
|
||||
"Select labels…" : "Выберите метки…",
|
||||
"Due date" : "По дату",
|
||||
"Click to set" : "Нажмите для установки",
|
||||
"Remove due date" : "Удалить срок исполнения",
|
||||
"Description" : "Описание",
|
||||
"Formatting help" : "Справка по форматированию",
|
||||
"Saved" : "Сохранено",
|
||||
"Add a card description…" : "Добавить описание карточки…",
|
||||
"Attachments" : "Вложения",
|
||||
"Comments" : "Комментарии",
|
||||
"History" : "История",
|
||||
"Archived boards" : "Архив досок",
|
||||
"Shared boards" : "Общие доски",
|
||||
"Shared with you" : "Поделились с вами",
|
||||
"Edit board" : "Править доску",
|
||||
"Move board to archive" : "Переместить доску в архив",
|
||||
"Create a new board" : "Создать новую доску"
|
||||
},
|
||||
|
||||
13
l10n/ru.json
13
l10n/ru.json
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Часы",
|
||||
"Minutes" : "Минуты",
|
||||
"Finished" : "Завершено",
|
||||
"To review" : "Просмотреть",
|
||||
"Action needed" : "Требуется действие",
|
||||
@@ -25,6 +27,7 @@
|
||||
"Title" : "Заголовок",
|
||||
"Members" : "Участники",
|
||||
"More actions" : "Ещё действия",
|
||||
"Edit board" : "Править доску",
|
||||
"Archive board" : "Архивировать доску",
|
||||
"Unarchive board" : "Разархивировать доску",
|
||||
"Delete board" : "Удалить доску",
|
||||
@@ -33,17 +36,19 @@
|
||||
"Modified:" : "Изменён:",
|
||||
"Created:" : "Создан:",
|
||||
"by" : "автор",
|
||||
"Choose a label" : "Выберите метку",
|
||||
"Add a label" : "Добавить метку",
|
||||
"Select labels…" : "Выберите метки…",
|
||||
"Due date" : "По дату",
|
||||
"Click to set" : "Нажмите для установки",
|
||||
"Remove due date" : "Удалить срок исполнения",
|
||||
"Description" : "Описание",
|
||||
"Formatting help" : "Справка по форматированию",
|
||||
"Saved" : "Сохранено",
|
||||
"Add a card description…" : "Добавить описание карточки…",
|
||||
"Attachments" : "Вложения",
|
||||
"Comments" : "Комментарии",
|
||||
"History" : "История",
|
||||
"Archived boards" : "Архив досок",
|
||||
"Shared boards" : "Общие доски",
|
||||
"Shared with you" : "Поделились с вами",
|
||||
"Edit board" : "Править доску",
|
||||
"Move board to archive" : "Переместить доску в архив",
|
||||
"Create a new board" : "Создать новую доску"
|
||||
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
|
||||
|
||||
@@ -28,9 +28,6 @@ OC.L10N.register(
|
||||
"Created:" : "Vytvorené:",
|
||||
"by" : "-",
|
||||
"Saved" : "Uložené",
|
||||
"Attachments" : "Prílohy",
|
||||
"Comments" : "Komentáre",
|
||||
"History" : "História",
|
||||
"Shared with you" : "Sprístupnené vám",
|
||||
"Create a new board" : "Vytvoriť novú tabuľu"
|
||||
},
|
||||
|
||||
@@ -26,9 +26,6 @@
|
||||
"Created:" : "Vytvorené:",
|
||||
"by" : "-",
|
||||
"Saved" : "Uložené",
|
||||
"Attachments" : "Prílohy",
|
||||
"Comments" : "Komentáre",
|
||||
"History" : "História",
|
||||
"Shared with you" : "Sprístupnené vám",
|
||||
"Create a new board" : "Vytvoriť novú tabuľu"
|
||||
},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"
|
||||
|
||||
10
l10n/sq.js
10
l10n/sq.js
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Orët",
|
||||
"Minutes" : "Minutat",
|
||||
"Finished" : "I përfunduar",
|
||||
"To review" : "Për rishikim",
|
||||
"Action needed" : "Nevoitet veprim",
|
||||
@@ -18,6 +20,12 @@ OC.L10N.register(
|
||||
"Tags" : "Etiketë ",
|
||||
"Select users or groups to share with" : "Shpërndajeni duke zgjedhur përdorues ose grupe ",
|
||||
"Share" : "Ndaj ",
|
||||
"Manage" : "Menaxho"
|
||||
"Manage" : "Menaxho",
|
||||
"Create a new tag" : "Krijo një etiketë të re",
|
||||
"Title" : "Titull",
|
||||
"Members" : "Anëtar",
|
||||
"Select labels…" : "Selekto etiketat...",
|
||||
"Due date" : "Data e vendosur",
|
||||
"Click to set" : "Kliko për të vendosur"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
10
l10n/sq.json
10
l10n/sq.json
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Orët",
|
||||
"Minutes" : "Minutat",
|
||||
"Finished" : "I përfunduar",
|
||||
"To review" : "Për rishikim",
|
||||
"Action needed" : "Nevoitet veprim",
|
||||
@@ -16,6 +18,12 @@
|
||||
"Tags" : "Etiketë ",
|
||||
"Select users or groups to share with" : "Shpërndajeni duke zgjedhur përdorues ose grupe ",
|
||||
"Share" : "Ndaj ",
|
||||
"Manage" : "Menaxho"
|
||||
"Manage" : "Menaxho",
|
||||
"Create a new tag" : "Krijo një etiketë të re",
|
||||
"Title" : "Titull",
|
||||
"Members" : "Anëtar",
|
||||
"Select labels…" : "Selekto etiketat...",
|
||||
"Due date" : "Data e vendosur",
|
||||
"Click to set" : "Kliko për të vendosur"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -18,9 +18,6 @@ OC.L10N.register(
|
||||
"Created:" : "Skapad:",
|
||||
"by" : "av",
|
||||
"Saved" : "Sparad",
|
||||
"Attachments" : "Bifogade filer",
|
||||
"Comments" : "Kommentarer",
|
||||
"History" : "Historik",
|
||||
"Shared with you" : "Delade med dig"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -16,9 +16,6 @@
|
||||
"Created:" : "Skapad:",
|
||||
"by" : "av",
|
||||
"Saved" : "Sparad",
|
||||
"Attachments" : "Bifogade filer",
|
||||
"Comments" : "Kommentarer",
|
||||
"History" : "Historik",
|
||||
"Shared with you" : "Delade med dig"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
13
l10n/tr.js
13
l10n/tr.js
@@ -1,6 +1,8 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Saat",
|
||||
"Minutes" : "Dakika",
|
||||
"Finished" : "Tamamlandı",
|
||||
"To review" : "İncelenecek",
|
||||
"Action needed" : "İşlem yapılması gerekiyor",
|
||||
@@ -27,6 +29,7 @@ OC.L10N.register(
|
||||
"Title" : "Başlık",
|
||||
"Members" : "Üyeler",
|
||||
"More actions" : "Diğer işlemler",
|
||||
"Edit board" : "Panoyu sil",
|
||||
"Archive board" : "Panoyu arşivle",
|
||||
"Unarchive board" : "Panoyu arşivden çıkar",
|
||||
"Delete board" : "Panoyu sil",
|
||||
@@ -35,17 +38,19 @@ OC.L10N.register(
|
||||
"Modified:" : "Değiştirilme:",
|
||||
"Created:" : "Oluşturulma:",
|
||||
"by" : "Kişi:",
|
||||
"Choose a label" : "Bir etiket seçin",
|
||||
"Add a label" : "Etiket ekle",
|
||||
"Select labels…" : "Etiketleri seçin...",
|
||||
"Due date" : "Bitiş tarihi",
|
||||
"Click to set" : "Ayarlamak için tıklayın",
|
||||
"Remove due date" : "Bitiş tarihini kaldır",
|
||||
"Description" : "Açıklama",
|
||||
"Formatting help" : "Biçimlendirme yardımı",
|
||||
"Saved" : "Kaydedildi",
|
||||
"Add a card description…" : "Bir kart açıklaması ekle...",
|
||||
"Attachments" : "Ek dosyalar",
|
||||
"Comments" : "Yorumlar",
|
||||
"History" : "Geçmiş",
|
||||
"Archived boards" : "Arşivlenmiş panolar",
|
||||
"Shared boards" : "Paylaşılmış panolar",
|
||||
"Shared with you" : "Sizinle paylaşılan",
|
||||
"Edit board" : "Panoyu sil",
|
||||
"Move board to archive" : "Panoyu arşive taşı",
|
||||
"Create a new board" : "Yeni bir pano ekle"
|
||||
},
|
||||
|
||||
13
l10n/tr.json
13
l10n/tr.json
@@ -1,4 +1,6 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Saat",
|
||||
"Minutes" : "Dakika",
|
||||
"Finished" : "Tamamlandı",
|
||||
"To review" : "İncelenecek",
|
||||
"Action needed" : "İşlem yapılması gerekiyor",
|
||||
@@ -25,6 +27,7 @@
|
||||
"Title" : "Başlık",
|
||||
"Members" : "Üyeler",
|
||||
"More actions" : "Diğer işlemler",
|
||||
"Edit board" : "Panoyu sil",
|
||||
"Archive board" : "Panoyu arşivle",
|
||||
"Unarchive board" : "Panoyu arşivden çıkar",
|
||||
"Delete board" : "Panoyu sil",
|
||||
@@ -33,17 +36,19 @@
|
||||
"Modified:" : "Değiştirilme:",
|
||||
"Created:" : "Oluşturulma:",
|
||||
"by" : "Kişi:",
|
||||
"Choose a label" : "Bir etiket seçin",
|
||||
"Add a label" : "Etiket ekle",
|
||||
"Select labels…" : "Etiketleri seçin...",
|
||||
"Due date" : "Bitiş tarihi",
|
||||
"Click to set" : "Ayarlamak için tıklayın",
|
||||
"Remove due date" : "Bitiş tarihini kaldır",
|
||||
"Description" : "Açıklama",
|
||||
"Formatting help" : "Biçimlendirme yardımı",
|
||||
"Saved" : "Kaydedildi",
|
||||
"Add a card description…" : "Bir kart açıklaması ekle...",
|
||||
"Attachments" : "Ek dosyalar",
|
||||
"Comments" : "Yorumlar",
|
||||
"History" : "Geçmiş",
|
||||
"Archived boards" : "Arşivlenmiş panolar",
|
||||
"Shared boards" : "Paylaşılmış panolar",
|
||||
"Shared with you" : "Sizinle paylaşılan",
|
||||
"Edit board" : "Panoyu sil",
|
||||
"Move board to archive" : "Panoyu arşive taşı",
|
||||
"Create a new board" : "Yeni bir pano ekle"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Minutes" : "分",
|
||||
"Finished" : "完成",
|
||||
"To review" : "回顾",
|
||||
"Action needed" : "需要操作",
|
||||
@@ -32,9 +33,6 @@ OC.L10N.register(
|
||||
"Description" : "描述",
|
||||
"Saved" : "已保存",
|
||||
"Add a card description…" : " 添加卡片描述…",
|
||||
"Attachments" : "附件",
|
||||
"Comments" : "评论",
|
||||
"History" : "历史",
|
||||
"Shared with you" : "共享给您的",
|
||||
"Create a new board" : "创建一个新面板"
|
||||
},
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
{ "translations": {
|
||||
"Minutes" : "分",
|
||||
"Finished" : "完成",
|
||||
"To review" : "回顾",
|
||||
"Action needed" : "需要操作",
|
||||
@@ -30,9 +31,6 @@
|
||||
"Description" : "描述",
|
||||
"Saved" : "已保存",
|
||||
"Add a card description…" : " 添加卡片描述…",
|
||||
"Attachments" : "附件",
|
||||
"Comments" : "评论",
|
||||
"History" : "历史",
|
||||
"Shared with you" : "共享给您的",
|
||||
"Create a new board" : "创建一个新面板"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
|
||||
@@ -88,7 +88,7 @@ class Application extends App {
|
||||
'id' => 'deck',
|
||||
'order' => 10,
|
||||
'href' => $urlGenerator->linkToRoute('deck.page.index'),
|
||||
'icon' => $urlGenerator->imagePath('deck', 'app.svg'),
|
||||
'icon' => $urlGenerator->imagePath('deck', 'deck.svg'),
|
||||
'name' => 'Deck',
|
||||
];
|
||||
});
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
<div id="controls">
|
||||
<div class="crumb svg last">
|
||||
<a href="#" id="button-home" title="<?php p($l->t('All Boards')); ?>">
|
||||
<a href="#" class="icon-home" title="<?php p($l->t('All Boards')); ?>">
|
||||
</a>
|
||||
</div>
|
||||
<h1 class="title" style="border-bottom: 2px solid #{{boardservice.getCurrent().color }};">
|
||||
@@ -45,8 +45,7 @@
|
||||
ng-if="!s.status.editStack"
|
||||
ng-click="stackservice.delete(s.id)"></button>
|
||||
</h2>
|
||||
<ul data-as-sortable="sortOptions" is-disabled="!boardservice.canEdit() || filter==='archive'" data-ng-model="s.cards"
|
||||
style="min-height: 40px;">
|
||||
<ul data-as-sortable="sortOptions" is-disabled="!boardservice.canEdit() || filter==='archive'" data-ng-model="s.cards" class="card-list">
|
||||
<li class="card as-sortable-item"
|
||||
ng-repeat="c in s.cards"
|
||||
data-as-sortable-item
|
||||
@@ -64,11 +63,11 @@
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="card-controls">
|
||||
<i class="icon icon-filetype-text" ng-if="c.description" title="{{ c.description }}"></i>
|
||||
<span class="due" ng-if="c.duedate" ng-class="{'overdue': c.overdue == 3, 'now': c.overdue == 2, 'next': c.overdue == 1 }">
|
||||
<i class="icon badge-icon"></i>
|
||||
<span class="due" ng-if="c.duedate" ng-class="{'overdue': c.overdue == 3, 'now': c.overdue == 2, 'next': c.overdue == 1 }" title="{{ c.duedate }}">
|
||||
<i class="icon icon-badge"></i>
|
||||
<span data-timestamp="{{ c.duedate | dateToTimestamp }}" class="live-relative-timestamp">{{ c.duedate | relativeDateFilterString }}</span>
|
||||
</span>
|
||||
<div class="app-popover-menu-utils" ng-if="!boardservice.isArchived()">
|
||||
|
||||
@@ -69,37 +69,39 @@
|
||||
|
||||
<ul class="labels">
|
||||
<li ng-repeat="label in boardservice.getCurrent().labels">
|
||||
<span class="label-title" style="background-color:#{{label.color}}; color:{{ label.color|textColorFilter }};" ng-if="!label.edit">
|
||||
<span ng-if="label.title">{{ label.title }}</span><i ng-if="!label.title"><br /></i>
|
||||
</span>
|
||||
<span class="label-title" style="background-color:#{{label.color}}; color:{{ textColor(label.color) }}; width:178px;" ng-if="label.edit">
|
||||
<form ng-submit="labelUpdate(label)">
|
||||
<input type="text" ng-model="label.title" class="input-inline" style="background-color:#{{label.color}}; color:{{ label.color|textColorFilter }};" autofocus-on-insert maxlength="100"/>
|
||||
</form>
|
||||
</span>
|
||||
<div class="colorselect" ng-if="label.edit">
|
||||
<div class="color" ng-repeat="c in defaultColors" style="background-color:#{{ c }};" ng-click="label.color=c" ng-class="{'selected': (c == label.color) }"><br /></div>
|
||||
<span class="label-title" style="background-color:#{{label.color}}; color:{{ label.color|textColorFilter }};" ng-if="!label.edit">
|
||||
<span ng-if="label.title">{{ label.title }}</span><i ng-if="!label.title"><br /></i>
|
||||
</span>
|
||||
<div class="label-edit" ng-if="label.edit">
|
||||
<div style="background-color:#{{label.color}}; color:{{ textColor(label.color) }}; width: 100%">
|
||||
<form ng-submit="labelUpdate(label)">
|
||||
<input type="text" ng-model="label.title" class="input-inline" style="background-color:#{{label.color}}; color:{{ label.color|textColorFilter }};" autofocus-on-insert maxlength="100"/>
|
||||
</form>
|
||||
</div>
|
||||
<div class="colorselect">
|
||||
<div class="color" ng-repeat="c in defaultColors" style="background-color:#{{ c }};" ng-click="label.color=c" ng-class="{'selected': (c == label.color) }"><br /></div>
|
||||
</div>
|
||||
</div>
|
||||
<a ng-if="boardservice.canManage()" ng-click="labelDelete(label)" class="icon"><i class="icon icon-delete" ></i></a>
|
||||
<a ng-if="boardservice.canManage() && label.edit" ng-click="labelUpdate(label)" class="icon"><i class="icon icon-checkmark" ></i></a>
|
||||
<a ng-if="boardservice.canManage() && !label.edit" ng-click="label.edit=true" class="icon"><i class="icon icon-rename" ></i></a>
|
||||
|
||||
<a ng-if="boardservice.canManage()" ng-click="labelDelete(label)" class="icon"><i class="icon icon-delete" ></i></a>
|
||||
</li>
|
||||
<li ng-if="status.createLabel">
|
||||
<form ng-submit="labelCreate(newLabel)">
|
||||
<span class="label-title" style="background-color:#{{newLabel.color}}; color:{{ textColor(newLabel.color) }}; width:178px;">
|
||||
<input type="text" class="input-inline" ng-model="newLabel.title" style="color:{{ newLabel.color|textColorFilter }};" autofocus-on-insert maxlength="100" />
|
||||
</span>
|
||||
<div class="label-edit">
|
||||
<div style="background-color:#{{newLabel.color}}; color:{{ textColor(newLabel.color) }}; width:100%;">
|
||||
<form ng-submit="labelCreate(newLabel)">
|
||||
<input type="text" class="input-inline" ng-model="newLabel.title" style="color:{{ newLabel.color|textColorFilter }};" autofocus-on-insert maxlength="100" />
|
||||
</form>
|
||||
</div>
|
||||
<div class="colorselect">
|
||||
<div class="color" ng-repeat="c in defaultColors" style="background-color:#{{ c }};" ng-click="newLabel.color=c" ng-class="{'selected': (c == newLabel.color), 'dark': (newBoard.color | textColorFilter) === '#ffffff' }"><br /></div>
|
||||
</div>
|
||||
<a ng-click="labelCreate(newLabel)" class="icon"><i class="icon icon-checkmark" ></i></a>
|
||||
<a ng-click="status.createLabel=false" class="icon icon-close"></a>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
<a ng-click="labelCreate(newLabel)" class="icon"><i class="icon icon-checkmark" ></i></a>
|
||||
<a ng-click="status.createLabel=false" class="icon"><i class="icon icon-close" ></i></a>
|
||||
</li>
|
||||
<li ng-if="boardservice.canManage() && !status.createLabel" class="label-create">
|
||||
<a ng-click="status.createLabel=true"><span class="icon icon-add"> </span> <?php p($l->t('Create a new tag')); ?></a>
|
||||
<a ng-click="status.createLabel=true" class="button"><span class="icon icon-add"></span><br /><span><?php p($l->t('Create a new tag')); ?></span></a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<div id="controls">
|
||||
<div class="breadcrumb">
|
||||
<div class="crumb svg last">
|
||||
<a href="#" id="button-home" title="<?php p($l->t('All Boards')); ?>">
|
||||
<a href="#" class="icon-home" title="<?php p($l->t('All Boards')); ?>">
|
||||
</a>
|
||||
<span style="display: none;"></span>
|
||||
</div>
|
||||
@@ -20,10 +20,20 @@
|
||||
<tbody>
|
||||
<tr data-ng-repeat="b in boardservice.sorted" ng-class="{deleted: b.deletedAt > 0}">
|
||||
<td ng-click="gotoBoard(b)">
|
||||
<span class="board-bullet"
|
||||
style="background-color:#{{b.color}};"> </span>
|
||||
<div class="board-bullet"
|
||||
style="background-color:#{{b.color}};"> </div>
|
||||
</td>
|
||||
<td>
|
||||
<div ng-click="gotoBoard(b)" ng-show="!b.status.edit">{{ b.title }}</div>
|
||||
<div class="app-navigation-entry-edit" ng-show="b.status.edit">
|
||||
<form ng-disabled="isAddingList" class="ng-pristine ng-valid" ng-submit="boardUpdate(b)">
|
||||
<input id="newTitle" class="edit ng-valid ng-empty" type="text" autofocus-on-insert ng-model="b.title" maxlength="100">
|
||||
<div class="colorselect">
|
||||
<div class="color" ng-repeat="c in colors" style="background-color:#{{ c }};" ng-click="b.color=c" ng-class="{'selected': (c == b.color) }"><br /></div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</td>
|
||||
<td ng-click="gotoBoard(b)">{{ b.title }}</a></td>
|
||||
<td>
|
||||
<div id="assigned-users">
|
||||
<div class="avatardiv" avatar displayname="{{ b.owner.uid }}" title="{{ b.owner.displayname }}"></div>
|
||||
@@ -32,10 +42,14 @@
|
||||
</td>
|
||||
<td>
|
||||
<div class="hint"></div>
|
||||
<div class="app-popover-menu-utils" ng-if="b.deletedAt == 0">
|
||||
<div class="app-popover-menu-utils" ng-if="b.deletedAt == 0" ng-show="!b.status.edit">
|
||||
<button class="icon icon-more button-inline" title="<?php p($l->t('More actions')); ?>"></button>
|
||||
<div class="popovermenu bubble hidden">
|
||||
<ul>
|
||||
<li ng-click="boardUpdateBegin(b); b.status.edit = true">
|
||||
<a class="menuitem"><span class="icon-rename"></span> <?php p($l->t('Edit board')); ?>
|
||||
</a>
|
||||
</li>
|
||||
<li ng-if="boardservice.canManage(b) && !b.archived" ng-click="boardArchive(b)">
|
||||
<a class="menuitem"><span class="icon-archive"></span> <?php p($l->t('Archive board')); ?>
|
||||
</a>
|
||||
@@ -55,12 +69,16 @@
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="board-edit-controls" ng-show="b.status.edit">
|
||||
<span class="icon icon-checkmark" ng-click="boardUpdate(b)"></span>
|
||||
<span class="icon icon-close" ng-click="boardUpdateReset(b)"></span>
|
||||
</div>
|
||||
<div class="app-popover-menu-utils" ng-if="b.deletedAt > 0">
|
||||
<button class="icon icon-history button-inline" ng-click="boardDeleteUndo(b)" title="Undo board deletion - Otherwise the board will be deleted during the next cronjob run."></button>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr ng-if="status.filter === '' && !status.addBoard" ng-click="status.addBoard=!status.addBoard">
|
||||
<tr ng-if="status.filter === '' && !status.addBoard" ng-click="status.addBoard=!status.addBoard" class="board-create">
|
||||
<td><span class="icon icon-add"></span></td>
|
||||
<td colspan="3">
|
||||
<a ng-click="status.addBoard=!status.addBoard"
|
||||
@@ -84,11 +102,15 @@
|
||||
ng-click="selectColor(c)"
|
||||
ng-class="{'selected': (c == newBoard.color), 'dark': (newBoard.color | textColorFilter) === '#ffffff' }"></div>
|
||||
</div>
|
||||
<input type="submit" value="" class="icon-checkmark svg" />
|
||||
</form>
|
||||
</td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td>
|
||||
<div class="board-edit-controls">
|
||||
<span class="icon icon-checkmark" ng-click="boardCreate()"></span>
|
||||
<span class="icon icon-close" ng-click="status.addBoard=!status.addBoard"></span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<p>{{ statusservice.text }}</p></div>
|
||||
</div>
|
||||
{{card=cardservice.getCurrent();""}}
|
||||
<div id="card-header">
|
||||
<div id="sidebar-header">
|
||||
<a class="icon-close" ui-sref="board" ng-click="sidebar.show=!sidebar.show"> </a>
|
||||
<h2>
|
||||
<!-- TODO: change to textarea elastic //-->
|
||||
@@ -28,54 +28,45 @@
|
||||
<?php p($l->t('by')); ?>
|
||||
<span>{{ cardservice.getCurrent().owner.displayname }}</span>
|
||||
</div>
|
||||
|
||||
<h3 id='card-tag-label'>
|
||||
<?php p($l->t('Tags')); ?>
|
||||
</h3>
|
||||
<div id="labels">
|
||||
<ui-select multiple tagging="" ng-model="card.labels" theme="select2"
|
||||
ng-disabled="boardservice.isArchived() || card.archived"
|
||||
style="width:100%;" title="Choose a label"
|
||||
placeholder="Add a label"
|
||||
style="width:100%;" title="<?php p($l->t('Choose a label')); ?>"
|
||||
placeholder="<?php p($l->t('Add a label')); ?>"
|
||||
on-select="labelAssign($item, $model)"
|
||||
on-remove="labelRemove($item, $model)" ng-disabled="!boardservice.canEdit() || archived">
|
||||
<ui-select-match placeholder="Select labels…">
|
||||
<ui-select-match placeholder="<?php p($l->t('Select labels…')); ?>">
|
||||
<span class="select-label" style="background-color:#{{$item.color}}; color:{{ $item.color|textColorFilter }};">{{$item.title}} </span>
|
||||
</ui-select-match>
|
||||
<ui-select-choices
|
||||
repeat="label in boardservice.getCurrent().labels | filter:$select.search">
|
||||
<span
|
||||
style="background-color:#{{label.color}}; color:{{ label.color|textColorFilter }};">{{label.title}}</span>
|
||||
<span class="choose-label" style="background-color:#{{label.color}}; color:{{ label.color|textColorFilter }};">{{label.title}}</span>
|
||||
</ui-select-choices>
|
||||
</ui-select>
|
||||
|
||||
<div class="duedate">
|
||||
<input class="datepicker-input medium focus" type="text" placeholder="Set a due date" value="{{ cardservice.getCurrent().duedate | parseDate }}" datepicker="due" />
|
||||
<input class="timepicker-input medium focus" type="text" placeholder="00:00:00" ng-if="cardservice.getCurrent().duedate" value="{{ cardservice.getCurrent().duedate | parseTime }}" timepicker="due" />
|
||||
<button class="icon icon-delete button-inline" title="<?php p($l->t('Remove due date')); ?>" ng-if="cardservice.getCurrent().duedate" ng-click="resetDuedate()"></button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<h3>
|
||||
<?php p($l->t('Due date')); ?>
|
||||
</h3>
|
||||
<div class="duedate">
|
||||
<input class="datepicker-input medium focus" type="text" placeholder="<?php p($l->t('Click to set')); ?>" value="{{ cardservice.getCurrent().duedate | parseDate }}" datepicker="due" />
|
||||
<input class="timepicker-input medium focus" type="text" placeholder="00:00:00" ng-if="cardservice.getCurrent().duedate" value="{{ cardservice.getCurrent().duedate | parseTime }}" timepicker="due" />
|
||||
<button class="icon icon-delete button-inline" title="<?php p($l->t('Remove due date')); ?>" ng-if="cardservice.getCurrent().duedate" ng-click="resetDuedate()"></button>
|
||||
</div>
|
||||
|
||||
<!--<div id="assigned-users">
|
||||
<ui-select multiple tagging="" ng-model="card.assignees"
|
||||
theme="bootstrap" style="width:100%;"
|
||||
title="Choose a user to assign"
|
||||
placeholder="Assign users…"
|
||||
on-select="userAssign($item, $model)"
|
||||
on-remove="userRemove($item, $model)" ng-disabled="archived">
|
||||
<ui-select-match placeholder="Select users…">{{$item.title}}
|
||||
</ui-select-match>
|
||||
<ui-select-choices
|
||||
repeat="label in boardservice.getCurrent().labels | filter:$select.search">
|
||||
<span
|
||||
style="background-color:#{{label.color}}">{{label.title}}</span>
|
||||
</ui-select-choices>
|
||||
</ui-select>
|
||||
</div>//-->
|
||||
|
||||
<div id="card-description">
|
||||
<h3>
|
||||
<?php p($l->t('Description')); ?>
|
||||
<a href="https://github.com/nextcloud/deck/wiki/Markdown-Help" target="_blank" class="icon-help" title="<?php p($l->t('Formatting help')); ?>"></a>
|
||||
<span class="save-indicator"><?php p($l->t('Saved')); ?></span>
|
||||
<div>
|
||||
<div>
|
||||
<?php p($l->t('Description')); ?>
|
||||
<a href="https://github.com/nextcloud/deck/wiki/Markdown-Help" target="_blank" class="icon icon-help" title="<?php p($l->t('Formatting help')); ?>"></a>
|
||||
</div>
|
||||
<span class="save-indicator"><?php p($l->t('Saved')); ?></span>
|
||||
</div>
|
||||
|
||||
</h3>
|
||||
<textarea elastic ng-if="status.cardEditDescription"
|
||||
placeholder="Enter your description here…"
|
||||
@@ -89,43 +80,5 @@
|
||||
<div class="placeholder"
|
||||
ng-if="!cardservice.getCurrent().description"><?php p($l->t('Add a card description…')); ?></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<ul class="tabHeaders">
|
||||
<li class="tabHeader" ng-class="{'selected': (status.boardtab==0 || !status.boardtab)}" ng-click="status.boardtab=0"><a><?php p($l->t('Attachments')); ?></a></li>
|
||||
<li class="tabHeader" ng-class="{'selected': (status.boardtab==1)}" ng-click="status.boardtab=1"><a><?php p($l->t('Comments')); ?></a></li>
|
||||
<li class="tabHeader" ng-class="{'selected': (status.boardtab==2)}" ng-click="status.boardtab=2"><a><?php p($l->t('History')); ?></a></li>
|
||||
</ul>
|
||||
<div class="tabsContainer">
|
||||
<div id="commentsTabView" class="tab commentsTabView" ng-if="status.boardtab==0 || !status.boardtab">
|
||||
<div id="card-attachments">
|
||||
<button ng-click="status.addAttachment=true"><i class="fa fa-plus"></i> Add an attachment</button>
|
||||
<div ng-if="status.addAttachment" id="attachment-add">
|
||||
<button><i class="fa fa-file"></i> Attach a File</button>
|
||||
<button><i class="fa fa-link"></i> Attach a URL</button>
|
||||
</div>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="#">
|
||||
<span class="fa fa-file"></span> myfilename.pdf
|
||||
<div class="details">
|
||||
<span class="user">Added by John Doe at</span>
|
||||
<span class="added">1.3.2014 14:13</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="board-detail-labels" class="tab commentsTabView" ng-if="status.boardtab==1">
|
||||
</div>
|
||||
<div id="commentsTabView" class="tab commentsTabView" ng-if="status.boardtab==2">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
//-->
|
||||
|
||||
@@ -23,10 +23,10 @@
|
||||
<form ng-disabled="isAddingList" class="ng-pristine ng-valid" ng-submit="boardUpdate(b)">
|
||||
<input id="newTitle" class="edit ng-valid ng-empty" type="text" autofocus-on-insert ng-model="b.title" maxlength="100">
|
||||
<input type="submit" value="" class="action icon-checkmark svg">
|
||||
<div class="colorselect">
|
||||
<div class="color" ng-repeat="c in colors" style="background-color:#{{ c }};" ng-click="b.color=c" ng-class="{'selected': (c == b.color) }"><br /></div>
|
||||
</div>
|
||||
</form>
|
||||
<div class="colorselect">
|
||||
<div class="color" ng-repeat="c in colors" style="background-color:#{{ c }};" ng-click="b.color=c" ng-class="{'selected': (c == b.color) }"></div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user