Compare commits
1 Commits
enh/cardDe
...
enh/conten
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a2755f0671 |
28
.github/dependabot.yml
vendored
28
.github/dependabot.yml
vendored
@@ -1,28 +0,0 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: npm
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: weekly
|
||||
day: saturday
|
||||
time: "03:00"
|
||||
timezone: Europe/Paris
|
||||
open-pull-requests-limit: 10
|
||||
reviewers:
|
||||
- juliushaertl
|
||||
- jakobroehrl
|
||||
- package-ecosystem: composer
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: weekly
|
||||
day: saturday
|
||||
time: "03:00"
|
||||
timezone: Europe/Paris
|
||||
open-pull-requests-limit: 10
|
||||
reviewers:
|
||||
- juliushaertl
|
||||
ignore:
|
||||
- dependency-name: christophwurst/nextcloud
|
||||
versions:
|
||||
- "< 16"
|
||||
- ">= 15.a"
|
||||
@@ -66,7 +66,6 @@ return [
|
||||
['name' => 'card#assignUser', 'url' => '/cards/{cardId}/assign', 'verb' => 'POST'],
|
||||
['name' => 'card#unassignUser', 'url' => '/cards/{cardId}/unassign', 'verb' => 'PUT'],
|
||||
|
||||
// attachments
|
||||
['name' => 'attachment#getAll', 'url' => '/cards/{cardId}/attachments', 'verb' => 'GET'],
|
||||
['name' => 'attachment#create', 'url' => '/cards/{cardId}/attachment', 'verb' => 'POST'],
|
||||
['name' => 'attachment#display', 'url' => '/cards/{cardId}/attachment/{attachmentId}', 'verb' => 'GET'],
|
||||
@@ -111,8 +110,6 @@ return [
|
||||
['name' => 'card_api#reorder', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/reorder', 'verb' => 'PUT'],
|
||||
['name' => 'card_api#delete', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}', 'verb' => 'DELETE'],
|
||||
|
||||
['name' => 'card_api#findAllWithDue', 'url' => '/api/v1.0/dashboard/due', 'verb' => 'GET'],
|
||||
|
||||
['name' => 'label_api#get', 'url' => '/api/v1.0/boards/{boardId}/labels/{labelId}', 'verb' => 'GET'],
|
||||
['name' => 'label_api#create', 'url' => '/api/v1.0/boards/{boardId}/labels', 'verb' => 'POST'],
|
||||
['name' => 'label_api#update', 'url' => '/api/v1.0/boards/{boardId}/labels/{labelId}', 'verb' => 'PUT'],
|
||||
@@ -134,8 +131,5 @@ return [
|
||||
['name' => 'comments_api#create', 'url' => '/api/v1.0/cards/{cardId}/comments', 'verb' => 'POST'],
|
||||
['name' => 'comments_api#update', 'url' => '/api/v1.0/cards/{cardId}/comments/{commentId}', 'verb' => 'PUT'],
|
||||
['name' => 'comments_api#delete', 'url' => '/api/v1.0/cards/{cardId}/comments/{commentId}', 'verb' => 'DELETE'],
|
||||
|
||||
// dashboard
|
||||
['name' => 'overview_api#upcomingCards', 'url' => '/api/v1.0/overview/upcoming', 'verb' => 'GET'],
|
||||
]
|
||||
];
|
||||
|
||||
@@ -16,8 +16,7 @@
|
||||
"christophwurst/nextcloud": "^17",
|
||||
"jakub-onderka/php-parallel-lint": "^1.0.0",
|
||||
"phpunit/phpunit": "^8",
|
||||
"nextcloud/coding-standard": "^0.3.0",
|
||||
"symfony/event-dispatcher": "^4.0"
|
||||
"nextcloud/coding-standard": "^0.3.0"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
.icon-deck {
|
||||
background-image: url('../img/deck-dark.svg');
|
||||
}
|
||||
|
||||
.resource-type-deck img {
|
||||
opacity: 0.4 !important;
|
||||
}
|
||||
|
||||
@@ -1,27 +1,81 @@
|
||||
/**
|
||||
* Custom icons
|
||||
*/
|
||||
@include icon-black-white('deck', 'deck', 1);
|
||||
@include icon-black-white('archive', 'deck', 1);
|
||||
@include icon-black-white('circles', 'deck', 1);
|
||||
@include icon-black-white('clone', 'deck', 1);
|
||||
@include icon-black-white('filter', 'deck', 1);
|
||||
@include icon-black-white('filter_set', 'deck', 1);
|
||||
@include icon-black-white('attach', 'deck', 1);
|
||||
@include icon-black-white('reply', 'deck', 1);
|
||||
.icon-deck {
|
||||
background-image: url('../img/deck-dark.svg');
|
||||
}
|
||||
|
||||
.icon-help {
|
||||
background-image: url('../../../settings/img/help.svg');
|
||||
}
|
||||
|
||||
.icon-add-white {
|
||||
background-image: url('../img/add-white.svg');
|
||||
}
|
||||
|
||||
.icon-attach {
|
||||
background-image: url('../img/attach.svg');
|
||||
}
|
||||
|
||||
.icon-archive {
|
||||
background-image: url('../img/archive.svg');
|
||||
}
|
||||
|
||||
.icon-archive-white {
|
||||
background-image: url('../img/archive-white.svg');
|
||||
}
|
||||
|
||||
.icon-details {
|
||||
background-image: url('../img/details.svg');
|
||||
}
|
||||
|
||||
.icon-details-white {
|
||||
background-image: url('../img/details-white.svg');
|
||||
}
|
||||
|
||||
.icon-home {
|
||||
background-image: var(--icon-home-000, url('../../../core/img/places/home.svg'));
|
||||
}
|
||||
|
||||
.icon-description {
|
||||
background-image: var(--icon-text-000, url('../img/description.svg'));
|
||||
}
|
||||
|
||||
.icon-badge {
|
||||
background-image: url('../img/calendar-dark.svg');
|
||||
}
|
||||
|
||||
.icon-toggle-compact-collapsed {
|
||||
@include icon-color('toggle-view-expand', 'deck', $color-black);
|
||||
background-image: url('../img/toggle-view-expand.svg');
|
||||
}
|
||||
|
||||
.icon-toggle-compact-expanded {
|
||||
@include icon-color('toggle-view-collapse', 'deck', $color-black);
|
||||
}
|
||||
.icon-activity {
|
||||
@include icon-color('activity-dark', 'activity', $color-black);
|
||||
background-image: url('../img/toggle-view-collapse.svg');
|
||||
}
|
||||
|
||||
|
||||
@if mixin-exists('icon-black-white') {
|
||||
@include icon-black-white('deck', 'deck', 1);
|
||||
@include icon-black-white('archive', 'deck', 1);
|
||||
@include icon-black-white('circles', 'deck', 1);
|
||||
@include icon-black-white('clone', 'deck', 1);
|
||||
@include icon-black-white('filter', 'deck', 1);
|
||||
@include icon-black-white('filter_set', 'deck', 1);
|
||||
@include icon-black-white('attach', 'deck', 1);
|
||||
@include icon-black-white('reply', 'deck', 1);
|
||||
|
||||
.icon-toggle-compact-collapsed {
|
||||
@include icon-color('toggle-view-expand', 'deck', $color-black);
|
||||
}
|
||||
|
||||
.icon-toggle-compact-expanded {
|
||||
@include icon-color('toggle-view-collapse', 'deck', $color-black);
|
||||
}
|
||||
.icon-activity {
|
||||
@include icon-color('activity-dark', 'activity', $color-black);
|
||||
}
|
||||
}
|
||||
|
||||
.avatardiv.circles {
|
||||
background: var(--color-primary);
|
||||
}
|
||||
|
||||
@@ -113,8 +113,7 @@ Returns an array of board items
|
||||
"users": [],
|
||||
"shared": 0,
|
||||
"deletedAt": 0,
|
||||
"id": 10,
|
||||
"lastModified": 1586269585,
|
||||
"id": 10
|
||||
}
|
||||
]
|
||||
```
|
||||
@@ -188,8 +187,7 @@ Returns an array of board items
|
||||
},
|
||||
"users": [],
|
||||
"deletedAt": 0,
|
||||
"id": 10,
|
||||
"lastModified": 1586269585
|
||||
"id": 10
|
||||
}
|
||||
```
|
||||
|
||||
@@ -272,7 +270,7 @@ Returns an array of board items
|
||||
| --------- | ------ | ---------------------------------------------------- |
|
||||
| title | String | The title of the board, maximum length is limited to 100 characters |
|
||||
| color | String | The hexadecimal color of the board (e.g. FF0000) |
|
||||
| archived | Bool | Whether or not this board should be archived. |
|
||||
| archived | Bool | The hexadecimal color of the board (e.g. FF0000) |
|
||||
|
||||
```json
|
||||
{
|
||||
|
||||
@@ -30,8 +30,6 @@ OC.L10N.register(
|
||||
"Update" : "Werk by",
|
||||
"seconds ago" : "sekondes gelede",
|
||||
"Shared with you" : "Met u gedeel",
|
||||
"An error occurred" : "'n Fout het voorgekom",
|
||||
"Today" : "Vandag",
|
||||
"Tomorrow" : "Môre"
|
||||
"An error occurred" : "'n Fout het voorgekom"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -28,8 +28,6 @@
|
||||
"Update" : "Werk by",
|
||||
"seconds ago" : "sekondes gelede",
|
||||
"Shared with you" : "Met u gedeel",
|
||||
"An error occurred" : "'n Fout het voorgekom",
|
||||
"Today" : "Vandag",
|
||||
"Tomorrow" : "Môre"
|
||||
"An error occurred" : "'n Fout het voorgekom"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -95,7 +95,6 @@ OC.L10N.register(
|
||||
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
|
||||
"Title" : "العنوان",
|
||||
"Members" : "الاعضاء",
|
||||
"Upload attachment" : "رفع المرفقات",
|
||||
"Add this attachment" : "إضافة هذا المرفق",
|
||||
"Delete Attachment" : "مسح المرفق",
|
||||
"Restore Attachment" : "استعادة المرفق",
|
||||
@@ -117,6 +116,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "اختيار مرفق",
|
||||
"Modified" : "عُدل",
|
||||
"Created" : "أُنشئ",
|
||||
"Upload attachment" : "رفع المرفقات",
|
||||
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
||||
"Save" : "حفظ",
|
||||
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
||||
@@ -126,12 +126,12 @@ OC.L10N.register(
|
||||
"Update" : "تحديث",
|
||||
"(group)" : "(مجموعة)",
|
||||
"(circle)" : "(دائرة)",
|
||||
"seconds ago" : "ثوانٍ مضت",
|
||||
"Assign to me" : "ينسب لي",
|
||||
"Delete card" : "حذف البطاقة",
|
||||
"Move card" : "حرك البطاقة",
|
||||
"Card details" : "تفاصيل البطاقة",
|
||||
"Move card to another board" : "حرك البطاقة الى لوح اخر",
|
||||
"seconds ago" : "ثوانٍ مضت",
|
||||
"All boards" : "جميع الالواح",
|
||||
"Archived boards" : "الالواح المؤرشفة",
|
||||
"Shared with you" : "شورك معك",
|
||||
@@ -142,9 +142,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "طرأ هناك خطأ",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
|
||||
"Delete the board?" : "مسح اللوح؟",
|
||||
"Today" : "اليوم",
|
||||
"Tomorrow" : "غدا",
|
||||
"This week" : "هذا الأسبوع",
|
||||
"Link to a board" : "ربط بلوح",
|
||||
"Link to a card" : "ربط ببطاقة",
|
||||
"Something went wrong" : "شيئا ما خاطئ"
|
||||
|
||||
@@ -93,7 +93,6 @@
|
||||
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
|
||||
"Title" : "العنوان",
|
||||
"Members" : "الاعضاء",
|
||||
"Upload attachment" : "رفع المرفقات",
|
||||
"Add this attachment" : "إضافة هذا المرفق",
|
||||
"Delete Attachment" : "مسح المرفق",
|
||||
"Restore Attachment" : "استعادة المرفق",
|
||||
@@ -115,6 +114,7 @@
|
||||
"Choose attachment" : "اختيار مرفق",
|
||||
"Modified" : "عُدل",
|
||||
"Created" : "أُنشئ",
|
||||
"Upload attachment" : "رفع المرفقات",
|
||||
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
||||
"Save" : "حفظ",
|
||||
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
||||
@@ -124,12 +124,12 @@
|
||||
"Update" : "تحديث",
|
||||
"(group)" : "(مجموعة)",
|
||||
"(circle)" : "(دائرة)",
|
||||
"seconds ago" : "ثوانٍ مضت",
|
||||
"Assign to me" : "ينسب لي",
|
||||
"Delete card" : "حذف البطاقة",
|
||||
"Move card" : "حرك البطاقة",
|
||||
"Card details" : "تفاصيل البطاقة",
|
||||
"Move card to another board" : "حرك البطاقة الى لوح اخر",
|
||||
"seconds ago" : "ثوانٍ مضت",
|
||||
"All boards" : "جميع الالواح",
|
||||
"Archived boards" : "الالواح المؤرشفة",
|
||||
"Shared with you" : "شورك معك",
|
||||
@@ -140,9 +140,6 @@
|
||||
"An error occurred" : "طرأ هناك خطأ",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
|
||||
"Delete the board?" : "مسح اللوح؟",
|
||||
"Today" : "اليوم",
|
||||
"Tomorrow" : "غدا",
|
||||
"This week" : "هذا الأسبوع",
|
||||
"Link to a board" : "ربط بلوح",
|
||||
"Link to a card" : "ربط ببطاقة",
|
||||
"Something went wrong" : "شيئا ما خاطئ"
|
||||
|
||||
@@ -37,9 +37,6 @@ OC.L10N.register(
|
||||
"Update" : "Anovar",
|
||||
"(group)" : "(grupu)",
|
||||
"seconds ago" : "hai segundos",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Güei",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta selmana"
|
||||
"Shared with you" : "Shared with you"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -35,9 +35,6 @@
|
||||
"Update" : "Anovar",
|
||||
"(group)" : "(grupu)",
|
||||
"seconds ago" : "hai segundos",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Güei",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta selmana"
|
||||
"Shared with you" : "Shared with you"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -22,8 +22,6 @@ OC.L10N.register(
|
||||
"Update" : "Yenilənmə",
|
||||
"(group)" : "(qrup)",
|
||||
"seconds ago" : "saniyələr öncə",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Bu gün",
|
||||
"Tomorrow" : "Sabah"
|
||||
"Shared with you" : "Shared with you"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -20,8 +20,6 @@
|
||||
"Update" : "Yenilənmə",
|
||||
"(group)" : "(qrup)",
|
||||
"seconds ago" : "saniyələr öncə",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Bu gün",
|
||||
"Tomorrow" : "Sabah"
|
||||
"Shared with you" : "Shared with you"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -27,7 +27,6 @@ OC.L10N.register(
|
||||
"Edit" : "Редакция",
|
||||
"Title" : "Име",
|
||||
"Members" : "Членове",
|
||||
"Upload attachment" : "Качване",
|
||||
"Due date" : "Крайна дата",
|
||||
"Remove due date" : "Премахни крайната дата",
|
||||
"Description" : "Описание",
|
||||
@@ -35,15 +34,13 @@ OC.L10N.register(
|
||||
"Comments" : "Коментари",
|
||||
"Modified" : "Промяна",
|
||||
"Created" : "Създаден",
|
||||
"Upload attachment" : "Качване",
|
||||
"Save" : "Запазване",
|
||||
"Reply" : "Отговори",
|
||||
"Update" : "Обновяване",
|
||||
"(group)" : "(група)",
|
||||
"seconds ago" : "преди секунди",
|
||||
"Shared with you" : "Споделени с вас",
|
||||
"An error occurred" : "Възникна грешка",
|
||||
"Today" : "Днес",
|
||||
"Tomorrow" : "Утре",
|
||||
"This week" : "Тази седмица"
|
||||
"An error occurred" : "Възникна грешка"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -25,7 +25,6 @@
|
||||
"Edit" : "Редакция",
|
||||
"Title" : "Име",
|
||||
"Members" : "Членове",
|
||||
"Upload attachment" : "Качване",
|
||||
"Due date" : "Крайна дата",
|
||||
"Remove due date" : "Премахни крайната дата",
|
||||
"Description" : "Описание",
|
||||
@@ -33,15 +32,13 @@
|
||||
"Comments" : "Коментари",
|
||||
"Modified" : "Промяна",
|
||||
"Created" : "Създаден",
|
||||
"Upload attachment" : "Качване",
|
||||
"Save" : "Запазване",
|
||||
"Reply" : "Отговори",
|
||||
"Update" : "Обновяване",
|
||||
"(group)" : "(група)",
|
||||
"seconds ago" : "преди секунди",
|
||||
"Shared with you" : "Споделени с вас",
|
||||
"An error occurred" : "Възникна грешка",
|
||||
"Today" : "Днес",
|
||||
"Tomorrow" : "Утре",
|
||||
"This week" : "Тази седмица"
|
||||
"An error occurred" : "Възникна грешка"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -22,8 +22,6 @@ OC.L10N.register(
|
||||
"Update" : "পরিবর্ধন",
|
||||
"(group)" : "(গোষ্ঠি)",
|
||||
"seconds ago" : "সেকেন্ড পূর্বে",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "আজ",
|
||||
"Tomorrow" : "আগামীকাল"
|
||||
"Shared with you" : "Shared with you"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -20,8 +20,6 @@
|
||||
"Update" : "পরিবর্ধন",
|
||||
"(group)" : "(গোষ্ঠি)",
|
||||
"seconds ago" : "সেকেন্ড পূর্বে",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "আজ",
|
||||
"Tomorrow" : "আগামীকাল"
|
||||
"Shared with you" : "Shared with you"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
12
l10n/br.js
12
l10n/br.js
@@ -6,25 +6,17 @@ OC.L10N.register(
|
||||
"copy" : "eil",
|
||||
"Done" : "Graet",
|
||||
"Cancel" : "Arrest",
|
||||
"Drop your files to upload" : "Laoskit ho restroù evit pellkas",
|
||||
"Details" : "Munudoù",
|
||||
"Sharing" : "Rannan",
|
||||
"Tags" : "Klavioù",
|
||||
"Can edit" : "Posuple eo embann",
|
||||
"Can share" : "Galout a ra rannañ",
|
||||
"Delete" : "Dilemel",
|
||||
"Edit" : "Cheñch",
|
||||
"Description" : "Diskrivadur",
|
||||
"Comments" : "Displegadennoù",
|
||||
"Modified" : "Cheñchet",
|
||||
"Save" : "Enrollañ",
|
||||
"Save" : "Entilañ",
|
||||
"Reply" : "Respont",
|
||||
"Update" : "Adnevesaat",
|
||||
"(group)" : "(strollad)",
|
||||
"seconds ago" : "eilenn zo",
|
||||
"Shared with you" : "Rannet ganeoc'h",
|
||||
"Today" : "Hiziv",
|
||||
"Tomorrow" : "Warc'hoaz",
|
||||
"This week" : "Er sizhun-mañ"
|
||||
"Shared with you" : "Rannet ganeoc'h"
|
||||
},
|
||||
"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);");
|
||||
|
||||
12
l10n/br.json
12
l10n/br.json
@@ -4,25 +4,17 @@
|
||||
"copy" : "eil",
|
||||
"Done" : "Graet",
|
||||
"Cancel" : "Arrest",
|
||||
"Drop your files to upload" : "Laoskit ho restroù evit pellkas",
|
||||
"Details" : "Munudoù",
|
||||
"Sharing" : "Rannan",
|
||||
"Tags" : "Klavioù",
|
||||
"Can edit" : "Posuple eo embann",
|
||||
"Can share" : "Galout a ra rannañ",
|
||||
"Delete" : "Dilemel",
|
||||
"Edit" : "Cheñch",
|
||||
"Description" : "Diskrivadur",
|
||||
"Comments" : "Displegadennoù",
|
||||
"Modified" : "Cheñchet",
|
||||
"Save" : "Enrollañ",
|
||||
"Save" : "Entilañ",
|
||||
"Reply" : "Respont",
|
||||
"Update" : "Adnevesaat",
|
||||
"(group)" : "(strollad)",
|
||||
"seconds ago" : "eilenn zo",
|
||||
"Shared with you" : "Rannet ganeoc'h",
|
||||
"Today" : "Hiziv",
|
||||
"Tomorrow" : "Warc'hoaz",
|
||||
"This week" : "Er sizhun-mañ"
|
||||
"Shared with you" : "Rannet ganeoc'h"
|
||||
},"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"
|
||||
}
|
||||
@@ -20,8 +20,6 @@ OC.L10N.register(
|
||||
"Save" : "Spremi",
|
||||
"Update" : "Ažuriraj",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena"
|
||||
},
|
||||
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
|
||||
|
||||
@@ -18,8 +18,6 @@
|
||||
"Save" : "Spremi",
|
||||
"Update" : "Ažuriraj",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena"
|
||||
},"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);"
|
||||
}
|
||||
55
l10n/ca.js
55
l10n/ca.js
@@ -17,42 +17,18 @@ OC.L10N.register(
|
||||
"{user} has archived the board {before}" : "{user} ha arxivat el tauler {before}",
|
||||
"You have unarchived the board {board}" : "Heu desarxivat el tauler {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} ha desarxivat el tauler {before}",
|
||||
"You have created a new list {stack} on board {board}" : "Heu creat una llista nova {stack} al tauler {board}",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} ha creat una nova llista {stack} al tauler {board}",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "Heu canviat el nom de la llista {before} a {stack} al tauler {board}",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} ha canviat el nom de la llista {before} a {stack} al tauler {board}",
|
||||
"You have deleted list {stack} on board {board}" : "Heu suprimit la llista {stack} al tauler {board}",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} ha suprimit la llista {stack} al tauler {board}",
|
||||
"You have created card {card} in list {stack} on board {board}" : "Heu creat la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} ha creat la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "Heu suprimit la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} ha suprimit la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have renamed the card {before} to {card}" : "Heu reanomenat la targeta {before} a {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} ha reanomenat la targeta {before} a {card}",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "Heu afegit una descripció a la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} ha afegit una descripció a la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "Heu actualitzat la descripció de la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} ha actualitzat la descripció de la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "Teniu la targeta arxivada {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} té la targeta arxivada {card} a la llista {stack} al tauler {board}",
|
||||
"You have unarchived card {card} in list {stack} on board {board}" : "Teniu una targeta no-arxchivada {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} té una targeta no-arxivada {card} a la llista {stack} al tauler {board}",
|
||||
"You have removed the due date of card {card}" : "Heu suprimit la data de venciment de la targeta {targeta}",
|
||||
"{user} has removed the due date of card {card}" : "{user} ha suprimit la data de venciment de la targeta {targeta}",
|
||||
"You have set the due date of card {card} to {after}" : "Heu establert la data de venciment de la targeta {card} a {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} ha establert la data de venciment de la targeta {card} a {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "Heu actualitzat la data de venciment de la targeta {card} a {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} ha actualitzat la data de venciment de la targeta {card} a {after}",
|
||||
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Heu afegit l'etiqueta {label} a la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} ha afegit l'etiqueta {label} a la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Heu eliminat l'etiqueta {label} de la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} ha eliminat l'etiqueta {label} de la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Heu assignat a {assigneduser} a la targeta {card} al tauler {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} ha assignat a {assigneduser} la targeta {card} del tauler {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Heu desassignat {assigneduser} de la targeta {card} al tauler {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} ha desassignat {assigneduser} de la targeta {card} al tauler {board}",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : "Heu mogut la targeta {card} de la llista {stackBefore} a {stack}",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} ha mogut la targeta {card} de la llista {stackBefore} a {stack}",
|
||||
"You have added the attachment {attachment} to card {card}" : "Heu afegit l'adjunt {attachment} a la targeta {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} ha afegit l'adjunt {attachment} a la targeta {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Heu actualitzat l'adjunt {attachment} a la targeta {card}",
|
||||
@@ -101,7 +77,6 @@ OC.L10N.register(
|
||||
"Create new board" : "Crea un nou tauler",
|
||||
"new board" : "nou tauler",
|
||||
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
|
||||
"Search by board title" : "Cerca per títol del tauler",
|
||||
"Select board" : "Selecciona un tauler",
|
||||
"Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte",
|
||||
"Select a board" : "Selecciona un tauler",
|
||||
@@ -121,20 +96,16 @@ OC.L10N.register(
|
||||
"Apply filter" : "Aplica el filtre",
|
||||
"Filter by tag" : "Filtra per etiqueta",
|
||||
"Filter by assigned user" : "Filtra per usuari assignat",
|
||||
"Unassigned" : "Sense assignar",
|
||||
"Filter by due date" : "Filtra per data de venciment",
|
||||
"Overdue" : "Endarrerit",
|
||||
"Next 24 hours" : "Pròximes 24 hores",
|
||||
"Next 7 days" : "Propers 7 dies",
|
||||
"Next 30 days" : "Propers 30 dies",
|
||||
"No due date" : "Sense venciment",
|
||||
"Clear filter" : "Neteja el filtre",
|
||||
"Show archived cards" : "Mostra les targetes arxivades",
|
||||
"Toggle compact mode" : "Commuta el mode compacte",
|
||||
"Details" : "Detalls",
|
||||
"Loading board" : "Carregant tauler",
|
||||
"No lists available" : "Cap llista disponible",
|
||||
"Create a new list to add cards to this board" : "Crea una llista nova per afegir targetes a aquest tauler",
|
||||
"Board not found" : "Tauler no trobat",
|
||||
"Sharing" : "Compartició",
|
||||
"Tags" : "Etiquetes",
|
||||
@@ -143,7 +114,7 @@ OC.L10N.register(
|
||||
"Deleted lists" : "Llistes suprimides",
|
||||
"Undo" : "Desfés",
|
||||
"Deleted cards" : "Targetes suprimides",
|
||||
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
|
||||
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle ...",
|
||||
"Board owner" : "Propietari del tauler",
|
||||
"(Group)" : "(Grup)",
|
||||
"(Circle)" : "(Cercle)",
|
||||
@@ -151,25 +122,21 @@ OC.L10N.register(
|
||||
"Can share" : "Pot compartir",
|
||||
"Can manage" : "Pot gestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Add a new list" : "Afegir una llista nova",
|
||||
"Archive all cards" : "Arxiva totes les targetes",
|
||||
"Delete list" : "Suprimeix la llista",
|
||||
"Add card" : "Afegeix una targeta",
|
||||
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
|
||||
"Add a new card" : "Afegir una nova targeta",
|
||||
"Edit" : "Edita",
|
||||
"Add a new tag" : "Afegir una etiqueta nova",
|
||||
"title and color value must be provided" : "s’ha de proporcionar el valor del títol i del color",
|
||||
"Title" : "Títol",
|
||||
"Members" : "Membres",
|
||||
"Upload attachment" : "Carrega l'adjunt",
|
||||
"Add this attachment" : "Afegeix aquest adjunt",
|
||||
"Delete Attachment" : "Suprimeix l’adjunt",
|
||||
"Restore Attachment" : "Restaura l'adjunt",
|
||||
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
|
||||
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta...",
|
||||
"Assign to users" : "Assigna als usuaris",
|
||||
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
|
||||
"Assign a user to this card…" : "Assigneu un usuari a aquesta targeta…",
|
||||
"Assign a user to this card…" : "Assigneu un usuari a aquesta targeta...",
|
||||
"Due date" : "Per la data",
|
||||
"Set a due date" : "Definir una data de venciment",
|
||||
"Remove due date" : "Elimina la data de venciment",
|
||||
@@ -185,6 +152,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Triar adjunt",
|
||||
"Modified" : "Darrera modificació",
|
||||
"Created" : "Creat",
|
||||
"Upload attachment" : "Carrega l'adjunt",
|
||||
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
|
||||
"Save" : "Desa",
|
||||
"The comment cannot be empty." : "El comentari no pot estar buit.",
|
||||
@@ -194,16 +162,13 @@ OC.L10N.register(
|
||||
"Update" : "Actualitza",
|
||||
"(group)" : "(grup)",
|
||||
"(circle)" : "(cercle)",
|
||||
"seconds ago" : "fa uns segons",
|
||||
"Assign to me" : "Assigna'm a mi",
|
||||
"Unassign myself" : "Desasignar a mi mateix",
|
||||
"Unarchive card" : "Desarxiva targeta",
|
||||
"Archive card" : "Arxiva la targeta",
|
||||
"Delete card" : "Suprimeix targeta",
|
||||
"Move card" : "Mou la targeta",
|
||||
"Card details" : "Dades de la targeta",
|
||||
"Move card to another board" : "Mou la targeta a un altre tauler",
|
||||
"Select a list" : "Seleccioneu una llista",
|
||||
"seconds ago" : "fa uns segons",
|
||||
"All boards" : "Tots els taulers",
|
||||
"Archived boards" : "Taulers arxivats",
|
||||
"Shared with you" : "Us han compartit",
|
||||
@@ -211,20 +176,10 @@ OC.L10N.register(
|
||||
"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." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
|
||||
"New board title" : "Títol del nou tauler",
|
||||
"Edit board" : "Edita el tauler",
|
||||
"Clone board " : "Clonar tauler",
|
||||
"Unarchive board " : "Desarxiva tauler",
|
||||
"Archive board " : "Arxiva tauler",
|
||||
"Delete board " : "Suprimeix tauler",
|
||||
"Board details" : "Detalls de la junta",
|
||||
"Board {0} deleted" : "S’ha suprimit el tauler {0}",
|
||||
"An error occurred" : "S'ha produït un error",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
|
||||
"Delete the board?" : "Suprimir el tauler?",
|
||||
"Loading filtered view" : "S'està carregant la visualització filtrada",
|
||||
"Today" : "Avui",
|
||||
"Tomorrow" : "Demà",
|
||||
"This week" : "Aquesta setmana",
|
||||
"No due" : "Sense venciment",
|
||||
"Link to a board" : "Enllaça a un tauler",
|
||||
"Link to a card" : "Enllaç una targeta",
|
||||
"Something went wrong" : "Alguna cosa ha anat malament",
|
||||
|
||||
55
l10n/ca.json
55
l10n/ca.json
@@ -15,42 +15,18 @@
|
||||
"{user} has archived the board {before}" : "{user} ha arxivat el tauler {before}",
|
||||
"You have unarchived the board {board}" : "Heu desarxivat el tauler {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} ha desarxivat el tauler {before}",
|
||||
"You have created a new list {stack} on board {board}" : "Heu creat una llista nova {stack} al tauler {board}",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} ha creat una nova llista {stack} al tauler {board}",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "Heu canviat el nom de la llista {before} a {stack} al tauler {board}",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} ha canviat el nom de la llista {before} a {stack} al tauler {board}",
|
||||
"You have deleted list {stack} on board {board}" : "Heu suprimit la llista {stack} al tauler {board}",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} ha suprimit la llista {stack} al tauler {board}",
|
||||
"You have created card {card} in list {stack} on board {board}" : "Heu creat la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} ha creat la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "Heu suprimit la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} ha suprimit la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have renamed the card {before} to {card}" : "Heu reanomenat la targeta {before} a {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} ha reanomenat la targeta {before} a {card}",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "Heu afegit una descripció a la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} ha afegit una descripció a la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "Heu actualitzat la descripció de la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} ha actualitzat la descripció de la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "Teniu la targeta arxivada {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} té la targeta arxivada {card} a la llista {stack} al tauler {board}",
|
||||
"You have unarchived card {card} in list {stack} on board {board}" : "Teniu una targeta no-arxchivada {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} té una targeta no-arxivada {card} a la llista {stack} al tauler {board}",
|
||||
"You have removed the due date of card {card}" : "Heu suprimit la data de venciment de la targeta {targeta}",
|
||||
"{user} has removed the due date of card {card}" : "{user} ha suprimit la data de venciment de la targeta {targeta}",
|
||||
"You have set the due date of card {card} to {after}" : "Heu establert la data de venciment de la targeta {card} a {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} ha establert la data de venciment de la targeta {card} a {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "Heu actualitzat la data de venciment de la targeta {card} a {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} ha actualitzat la data de venciment de la targeta {card} a {after}",
|
||||
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Heu afegit l'etiqueta {label} a la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} ha afegit l'etiqueta {label} a la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Heu eliminat l'etiqueta {label} de la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} ha eliminat l'etiqueta {label} de la targeta {card} a la llista {stack} al tauler {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Heu assignat a {assigneduser} a la targeta {card} al tauler {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} ha assignat a {assigneduser} la targeta {card} del tauler {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Heu desassignat {assigneduser} de la targeta {card} al tauler {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} ha desassignat {assigneduser} de la targeta {card} al tauler {board}",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : "Heu mogut la targeta {card} de la llista {stackBefore} a {stack}",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} ha mogut la targeta {card} de la llista {stackBefore} a {stack}",
|
||||
"You have added the attachment {attachment} to card {card}" : "Heu afegit l'adjunt {attachment} a la targeta {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} ha afegit l'adjunt {attachment} a la targeta {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Heu actualitzat l'adjunt {attachment} a la targeta {card}",
|
||||
@@ -99,7 +75,6 @@
|
||||
"Create new board" : "Crea un nou tauler",
|
||||
"new board" : "nou tauler",
|
||||
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
|
||||
"Search by board title" : "Cerca per títol del tauler",
|
||||
"Select board" : "Selecciona un tauler",
|
||||
"Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte",
|
||||
"Select a board" : "Selecciona un tauler",
|
||||
@@ -119,20 +94,16 @@
|
||||
"Apply filter" : "Aplica el filtre",
|
||||
"Filter by tag" : "Filtra per etiqueta",
|
||||
"Filter by assigned user" : "Filtra per usuari assignat",
|
||||
"Unassigned" : "Sense assignar",
|
||||
"Filter by due date" : "Filtra per data de venciment",
|
||||
"Overdue" : "Endarrerit",
|
||||
"Next 24 hours" : "Pròximes 24 hores",
|
||||
"Next 7 days" : "Propers 7 dies",
|
||||
"Next 30 days" : "Propers 30 dies",
|
||||
"No due date" : "Sense venciment",
|
||||
"Clear filter" : "Neteja el filtre",
|
||||
"Show archived cards" : "Mostra les targetes arxivades",
|
||||
"Toggle compact mode" : "Commuta el mode compacte",
|
||||
"Details" : "Detalls",
|
||||
"Loading board" : "Carregant tauler",
|
||||
"No lists available" : "Cap llista disponible",
|
||||
"Create a new list to add cards to this board" : "Crea una llista nova per afegir targetes a aquest tauler",
|
||||
"Board not found" : "Tauler no trobat",
|
||||
"Sharing" : "Compartició",
|
||||
"Tags" : "Etiquetes",
|
||||
@@ -141,7 +112,7 @@
|
||||
"Deleted lists" : "Llistes suprimides",
|
||||
"Undo" : "Desfés",
|
||||
"Deleted cards" : "Targetes suprimides",
|
||||
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
|
||||
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle ...",
|
||||
"Board owner" : "Propietari del tauler",
|
||||
"(Group)" : "(Grup)",
|
||||
"(Circle)" : "(Cercle)",
|
||||
@@ -149,25 +120,21 @@
|
||||
"Can share" : "Pot compartir",
|
||||
"Can manage" : "Pot gestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Add a new list" : "Afegir una llista nova",
|
||||
"Archive all cards" : "Arxiva totes les targetes",
|
||||
"Delete list" : "Suprimeix la llista",
|
||||
"Add card" : "Afegeix una targeta",
|
||||
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
|
||||
"Add a new card" : "Afegir una nova targeta",
|
||||
"Edit" : "Edita",
|
||||
"Add a new tag" : "Afegir una etiqueta nova",
|
||||
"title and color value must be provided" : "s’ha de proporcionar el valor del títol i del color",
|
||||
"Title" : "Títol",
|
||||
"Members" : "Membres",
|
||||
"Upload attachment" : "Carrega l'adjunt",
|
||||
"Add this attachment" : "Afegeix aquest adjunt",
|
||||
"Delete Attachment" : "Suprimeix l’adjunt",
|
||||
"Restore Attachment" : "Restaura l'adjunt",
|
||||
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
|
||||
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta...",
|
||||
"Assign to users" : "Assigna als usuaris",
|
||||
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
|
||||
"Assign a user to this card…" : "Assigneu un usuari a aquesta targeta…",
|
||||
"Assign a user to this card…" : "Assigneu un usuari a aquesta targeta...",
|
||||
"Due date" : "Per la data",
|
||||
"Set a due date" : "Definir una data de venciment",
|
||||
"Remove due date" : "Elimina la data de venciment",
|
||||
@@ -183,6 +150,7 @@
|
||||
"Choose attachment" : "Triar adjunt",
|
||||
"Modified" : "Darrera modificació",
|
||||
"Created" : "Creat",
|
||||
"Upload attachment" : "Carrega l'adjunt",
|
||||
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
|
||||
"Save" : "Desa",
|
||||
"The comment cannot be empty." : "El comentari no pot estar buit.",
|
||||
@@ -192,16 +160,13 @@
|
||||
"Update" : "Actualitza",
|
||||
"(group)" : "(grup)",
|
||||
"(circle)" : "(cercle)",
|
||||
"seconds ago" : "fa uns segons",
|
||||
"Assign to me" : "Assigna'm a mi",
|
||||
"Unassign myself" : "Desasignar a mi mateix",
|
||||
"Unarchive card" : "Desarxiva targeta",
|
||||
"Archive card" : "Arxiva la targeta",
|
||||
"Delete card" : "Suprimeix targeta",
|
||||
"Move card" : "Mou la targeta",
|
||||
"Card details" : "Dades de la targeta",
|
||||
"Move card to another board" : "Mou la targeta a un altre tauler",
|
||||
"Select a list" : "Seleccioneu una llista",
|
||||
"seconds ago" : "fa uns segons",
|
||||
"All boards" : "Tots els taulers",
|
||||
"Archived boards" : "Taulers arxivats",
|
||||
"Shared with you" : "Us han compartit",
|
||||
@@ -209,20 +174,10 @@
|
||||
"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." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
|
||||
"New board title" : "Títol del nou tauler",
|
||||
"Edit board" : "Edita el tauler",
|
||||
"Clone board " : "Clonar tauler",
|
||||
"Unarchive board " : "Desarxiva tauler",
|
||||
"Archive board " : "Arxiva tauler",
|
||||
"Delete board " : "Suprimeix tauler",
|
||||
"Board details" : "Detalls de la junta",
|
||||
"Board {0} deleted" : "S’ha suprimit el tauler {0}",
|
||||
"An error occurred" : "S'ha produït un error",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
|
||||
"Delete the board?" : "Suprimir el tauler?",
|
||||
"Loading filtered view" : "S'està carregant la visualització filtrada",
|
||||
"Today" : "Avui",
|
||||
"Tomorrow" : "Demà",
|
||||
"This week" : "Aquesta setmana",
|
||||
"No due" : "Sense venciment",
|
||||
"Link to a board" : "Enllaça a un tauler",
|
||||
"Link to a card" : "Enllaç una targeta",
|
||||
"Something went wrong" : "Alguna cosa ha anat malament",
|
||||
|
||||
14
l10n/cs.js
14
l10n/cs.js
@@ -121,7 +121,6 @@ OC.L10N.register(
|
||||
"Apply filter" : "Uplatnit filtr",
|
||||
"Filter by tag" : "Filtrovat podle příznaků",
|
||||
"Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen",
|
||||
"Unassigned" : "Nepřiřazeno",
|
||||
"Filter by due date" : "Filtrovat podle termínu",
|
||||
"Overdue" : "Po termínu",
|
||||
"Next 24 hours" : "Následujících 24 hodin",
|
||||
@@ -133,8 +132,6 @@ OC.L10N.register(
|
||||
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
|
||||
"Details" : "Podrobnosti",
|
||||
"Loading board" : "Načítání tabule",
|
||||
"No lists available" : "Nejsou k dispozici žádné seznamy",
|
||||
"Create a new list to add cards to this board" : "Pro přidání karet na tuto tabuli vytvořte nový seznam",
|
||||
"Board not found" : "Tabule nenalezena",
|
||||
"Sharing" : "Sdílení",
|
||||
"Tags" : "Štítky",
|
||||
@@ -152,17 +149,14 @@ OC.L10N.register(
|
||||
"Can manage" : "Může spravovat",
|
||||
"Delete" : "Smazat",
|
||||
"Add a new list" : "Přidat nový sloupec",
|
||||
"Archive all cards" : "Archivovat všechny karty",
|
||||
"Delete list" : "Smazat seznam",
|
||||
"Add card" : "Přidat kartu",
|
||||
"Archive all cards in this list" : "Archivovat všechny karty v tomto seznamu",
|
||||
"Add a new card" : "Přidat novou kartu",
|
||||
"Edit" : "Upravit",
|
||||
"Add a new tag" : "Přidat nový štítek",
|
||||
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
|
||||
"Title" : "Nadpis",
|
||||
"Members" : "Členové",
|
||||
"Upload attachment" : "Nahrát přílohu",
|
||||
"Add this attachment" : "Přidat tuto přílohu",
|
||||
"Delete Attachment" : "Smazat přílohu",
|
||||
"Restore Attachment" : "Obnovit přílohu",
|
||||
@@ -185,6 +179,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Zvolte přílohu",
|
||||
"Modified" : "Změněno",
|
||||
"Created" : "Vytvořeno",
|
||||
"Upload attachment" : "Nahrát přílohu",
|
||||
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
||||
"Save" : "Uložit",
|
||||
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
||||
@@ -194,6 +189,7 @@ OC.L10N.register(
|
||||
"Update" : "Aktualizovat",
|
||||
"(group)" : "(skupina)",
|
||||
"(circle)" : "(okruh)",
|
||||
"seconds ago" : "před několika sekundami",
|
||||
"Assign to me" : "Přiřadit mě",
|
||||
"Unassign myself" : "Zrušit přiřazení sobě",
|
||||
"Unarchive card" : "Zrušit archivaci karty",
|
||||
@@ -203,7 +199,6 @@ OC.L10N.register(
|
||||
"Card details" : "Podrobnosti o kartě",
|
||||
"Move card to another board" : "Přesunout kartu na jinou tabuli",
|
||||
"Select a list" : "Vyberte sloupec",
|
||||
"seconds ago" : "před několika sekundami",
|
||||
"All boards" : "Všechny tabule",
|
||||
"Archived boards" : "Archivované tabule",
|
||||
"Shared with you" : "Sdíleno s vámi",
|
||||
@@ -220,11 +215,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "Došlo k chybě",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
|
||||
"Delete the board?" : "Smazat tabuli?",
|
||||
"Loading filtered view" : "Načítání filtrovaného pohledu",
|
||||
"Today" : "Dnes",
|
||||
"Tomorrow" : "Zítra",
|
||||
"This week" : "Tento týden",
|
||||
"No due" : "Žádný termín",
|
||||
"Link to a board" : "Propojit s tabulí",
|
||||
"Link to a card" : "Propojit s kartou",
|
||||
"Something went wrong" : "Něco se pokazilo",
|
||||
|
||||
14
l10n/cs.json
14
l10n/cs.json
@@ -119,7 +119,6 @@
|
||||
"Apply filter" : "Uplatnit filtr",
|
||||
"Filter by tag" : "Filtrovat podle příznaků",
|
||||
"Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen",
|
||||
"Unassigned" : "Nepřiřazeno",
|
||||
"Filter by due date" : "Filtrovat podle termínu",
|
||||
"Overdue" : "Po termínu",
|
||||
"Next 24 hours" : "Následujících 24 hodin",
|
||||
@@ -131,8 +130,6 @@
|
||||
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
|
||||
"Details" : "Podrobnosti",
|
||||
"Loading board" : "Načítání tabule",
|
||||
"No lists available" : "Nejsou k dispozici žádné seznamy",
|
||||
"Create a new list to add cards to this board" : "Pro přidání karet na tuto tabuli vytvořte nový seznam",
|
||||
"Board not found" : "Tabule nenalezena",
|
||||
"Sharing" : "Sdílení",
|
||||
"Tags" : "Štítky",
|
||||
@@ -150,17 +147,14 @@
|
||||
"Can manage" : "Může spravovat",
|
||||
"Delete" : "Smazat",
|
||||
"Add a new list" : "Přidat nový sloupec",
|
||||
"Archive all cards" : "Archivovat všechny karty",
|
||||
"Delete list" : "Smazat seznam",
|
||||
"Add card" : "Přidat kartu",
|
||||
"Archive all cards in this list" : "Archivovat všechny karty v tomto seznamu",
|
||||
"Add a new card" : "Přidat novou kartu",
|
||||
"Edit" : "Upravit",
|
||||
"Add a new tag" : "Přidat nový štítek",
|
||||
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
|
||||
"Title" : "Nadpis",
|
||||
"Members" : "Členové",
|
||||
"Upload attachment" : "Nahrát přílohu",
|
||||
"Add this attachment" : "Přidat tuto přílohu",
|
||||
"Delete Attachment" : "Smazat přílohu",
|
||||
"Restore Attachment" : "Obnovit přílohu",
|
||||
@@ -183,6 +177,7 @@
|
||||
"Choose attachment" : "Zvolte přílohu",
|
||||
"Modified" : "Změněno",
|
||||
"Created" : "Vytvořeno",
|
||||
"Upload attachment" : "Nahrát přílohu",
|
||||
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
||||
"Save" : "Uložit",
|
||||
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
||||
@@ -192,6 +187,7 @@
|
||||
"Update" : "Aktualizovat",
|
||||
"(group)" : "(skupina)",
|
||||
"(circle)" : "(okruh)",
|
||||
"seconds ago" : "před několika sekundami",
|
||||
"Assign to me" : "Přiřadit mě",
|
||||
"Unassign myself" : "Zrušit přiřazení sobě",
|
||||
"Unarchive card" : "Zrušit archivaci karty",
|
||||
@@ -201,7 +197,6 @@
|
||||
"Card details" : "Podrobnosti o kartě",
|
||||
"Move card to another board" : "Přesunout kartu na jinou tabuli",
|
||||
"Select a list" : "Vyberte sloupec",
|
||||
"seconds ago" : "před několika sekundami",
|
||||
"All boards" : "Všechny tabule",
|
||||
"Archived boards" : "Archivované tabule",
|
||||
"Shared with you" : "Sdíleno s vámi",
|
||||
@@ -218,11 +213,6 @@
|
||||
"An error occurred" : "Došlo k chybě",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
|
||||
"Delete the board?" : "Smazat tabuli?",
|
||||
"Loading filtered view" : "Načítání filtrovaného pohledu",
|
||||
"Today" : "Dnes",
|
||||
"Tomorrow" : "Zítra",
|
||||
"This week" : "Tento týden",
|
||||
"No due" : "Žádný termín",
|
||||
"Link to a board" : "Propojit s tabulí",
|
||||
"Link to a card" : "Propojit s kartou",
|
||||
"Something went wrong" : "Něco se pokazilo",
|
||||
|
||||
@@ -15,15 +15,13 @@ OC.L10N.register(
|
||||
"Delete" : "Dileu",
|
||||
"Edit" : "Golygu",
|
||||
"Title" : "Teitl",
|
||||
"Upload attachment" : "Llwytho atodiad",
|
||||
"Description" : "Disgrifiad",
|
||||
"Modified" : "Addaswyd",
|
||||
"Upload attachment" : "Llwytho atodiad",
|
||||
"Save" : "Cadw",
|
||||
"Update" : "Diweddaru",
|
||||
"seconds ago" : "eiliad yn ôl",
|
||||
"Shared with you" : "Shared with you",
|
||||
"An error occurred" : "Digwyddodd gwall",
|
||||
"Today" : "Heddiw",
|
||||
"This week" : "Wythnos yma"
|
||||
"An error occurred" : "Digwyddodd gwall"
|
||||
},
|
||||
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");
|
||||
|
||||
@@ -13,15 +13,13 @@
|
||||
"Delete" : "Dileu",
|
||||
"Edit" : "Golygu",
|
||||
"Title" : "Teitl",
|
||||
"Upload attachment" : "Llwytho atodiad",
|
||||
"Description" : "Disgrifiad",
|
||||
"Modified" : "Addaswyd",
|
||||
"Upload attachment" : "Llwytho atodiad",
|
||||
"Save" : "Cadw",
|
||||
"Update" : "Diweddaru",
|
||||
"seconds ago" : "eiliad yn ôl",
|
||||
"Shared with you" : "Shared with you",
|
||||
"An error occurred" : "Digwyddodd gwall",
|
||||
"Today" : "Heddiw",
|
||||
"This week" : "Wythnos yma"
|
||||
"An error occurred" : "Digwyddodd gwall"
|
||||
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
|
||||
}
|
||||
@@ -34,7 +34,6 @@ OC.L10N.register(
|
||||
"Edit" : "Redigér",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Medlemmer",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Due date" : "Forfaldsdato",
|
||||
"Remove due date" : "Fjern forfaldsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
@@ -43,22 +42,20 @@ OC.L10N.register(
|
||||
"Comments" : "Kommentarer",
|
||||
"Modified" : "Ændret",
|
||||
"Created" : "Oprettet",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Save" : "Gem",
|
||||
"Reply" : "Besvar",
|
||||
"Update" : "Opdatér",
|
||||
"(group)" : "(gruppe)",
|
||||
"seconds ago" : "sekunder siden",
|
||||
"Archive card" : "Arkivér kort",
|
||||
"Delete card" : "Slet kort",
|
||||
"Move card" : "Flyt kort",
|
||||
"seconds ago" : "sekunder siden",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Shared with you" : "Shared with you",
|
||||
"New board title" : "Ny titel på liste",
|
||||
"Edit board" : "Rediger liste",
|
||||
"Board details" : "Liste detaljer",
|
||||
"An error occurred" : "Der var en fejl",
|
||||
"Today" : "I dag",
|
||||
"Tomorrow" : "I morgen",
|
||||
"This week" : "Denne uge"
|
||||
"An error occurred" : "Der var en fejl"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -32,7 +32,6 @@
|
||||
"Edit" : "Redigér",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Medlemmer",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Due date" : "Forfaldsdato",
|
||||
"Remove due date" : "Fjern forfaldsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
@@ -41,22 +40,20 @@
|
||||
"Comments" : "Kommentarer",
|
||||
"Modified" : "Ændret",
|
||||
"Created" : "Oprettet",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Save" : "Gem",
|
||||
"Reply" : "Besvar",
|
||||
"Update" : "Opdatér",
|
||||
"(group)" : "(gruppe)",
|
||||
"seconds ago" : "sekunder siden",
|
||||
"Archive card" : "Arkivér kort",
|
||||
"Delete card" : "Slet kort",
|
||||
"Move card" : "Flyt kort",
|
||||
"seconds ago" : "sekunder siden",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Shared with you" : "Shared with you",
|
||||
"New board title" : "Ny titel på liste",
|
||||
"Edit board" : "Rediger liste",
|
||||
"Board details" : "Liste detaljer",
|
||||
"An error occurred" : "Der var en fejl",
|
||||
"Today" : "I dag",
|
||||
"Tomorrow" : "I morgen",
|
||||
"This week" : "Denne uge"
|
||||
"An error occurred" : "Der var en fejl"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
14
l10n/de.js
14
l10n/de.js
@@ -121,7 +121,6 @@ OC.L10N.register(
|
||||
"Apply filter" : "Filter anwenden",
|
||||
"Filter by tag" : "Nach Schlagwort filtern",
|
||||
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
|
||||
"Unassigned" : "Nicht zugewiesen",
|
||||
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
|
||||
"Overdue" : "Überfällig",
|
||||
"Next 24 hours" : "Die nächsten 24 Stunden",
|
||||
@@ -133,8 +132,6 @@ OC.L10N.register(
|
||||
"Toggle compact mode" : "Kompaktmodus umschalten",
|
||||
"Details" : "Details",
|
||||
"Loading board" : "Lade Board",
|
||||
"No lists available" : "Keine Listen verfügbar",
|
||||
"Create a new list to add cards to this board" : "Erstelle eine neue Liste, um diesem Board Karten hinzuzufügen",
|
||||
"Board not found" : "Board nicht gefunden",
|
||||
"Sharing" : "Teilen",
|
||||
"Tags" : "Schlagworte",
|
||||
@@ -152,17 +149,14 @@ OC.L10N.register(
|
||||
"Can manage" : "kann verwalten",
|
||||
"Delete" : "Löschen",
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
"Delete Attachment" : "Anhang löschen",
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
@@ -185,6 +179,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
@@ -194,6 +189,7 @@ OC.L10N.register(
|
||||
"Update" : "Aktualisieren",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
@@ -203,7 +199,6 @@ OC.L10N.register(
|
||||
"Card details" : "Kartendetails",
|
||||
"Move card to another board" : "Karte auf ein anderes Board verschieben",
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared with you" : "Mit Dir geteilt",
|
||||
@@ -220,11 +215,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||
"Delete the board?" : "Das Board löschen?",
|
||||
"Loading filtered view" : "Lade gefilterte Ansicht",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
||||
|
||||
14
l10n/de.json
14
l10n/de.json
@@ -119,7 +119,6 @@
|
||||
"Apply filter" : "Filter anwenden",
|
||||
"Filter by tag" : "Nach Schlagwort filtern",
|
||||
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
|
||||
"Unassigned" : "Nicht zugewiesen",
|
||||
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
|
||||
"Overdue" : "Überfällig",
|
||||
"Next 24 hours" : "Die nächsten 24 Stunden",
|
||||
@@ -131,8 +130,6 @@
|
||||
"Toggle compact mode" : "Kompaktmodus umschalten",
|
||||
"Details" : "Details",
|
||||
"Loading board" : "Lade Board",
|
||||
"No lists available" : "Keine Listen verfügbar",
|
||||
"Create a new list to add cards to this board" : "Erstelle eine neue Liste, um diesem Board Karten hinzuzufügen",
|
||||
"Board not found" : "Board nicht gefunden",
|
||||
"Sharing" : "Teilen",
|
||||
"Tags" : "Schlagworte",
|
||||
@@ -150,17 +147,14 @@
|
||||
"Can manage" : "kann verwalten",
|
||||
"Delete" : "Löschen",
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
"Delete Attachment" : "Anhang löschen",
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
@@ -183,6 +177,7 @@
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
@@ -192,6 +187,7 @@
|
||||
"Update" : "Aktualisieren",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
@@ -201,7 +197,6 @@
|
||||
"Card details" : "Kartendetails",
|
||||
"Move card to another board" : "Karte auf ein anderes Board verschieben",
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared with you" : "Mit Dir geteilt",
|
||||
@@ -218,11 +213,6 @@
|
||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||
"Delete the board?" : "Das Board löschen?",
|
||||
"Loading filtered view" : "Lade gefilterte Ansicht",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
||||
|
||||
@@ -121,7 +121,6 @@ OC.L10N.register(
|
||||
"Apply filter" : "Filter anwenden",
|
||||
"Filter by tag" : "Nach Schlagwort filtern",
|
||||
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
|
||||
"Unassigned" : "Nicht zugewiesen",
|
||||
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
|
||||
"Overdue" : "Überfällig",
|
||||
"Next 24 hours" : "Die nächsten 24 Stunden",
|
||||
@@ -133,8 +132,6 @@ OC.L10N.register(
|
||||
"Toggle compact mode" : "Kompaktmodus umschalten",
|
||||
"Details" : "Details",
|
||||
"Loading board" : "Board laden",
|
||||
"No lists available" : "Keine Listen verfügbar",
|
||||
"Create a new list to add cards to this board" : "Erstelle eine neue Liste, um diesem Board Karten hinzuzufügen",
|
||||
"Board not found" : "Board nicht gefunden",
|
||||
"Sharing" : "Teilen",
|
||||
"Tags" : "Schlagworte",
|
||||
@@ -152,17 +149,14 @@ OC.L10N.register(
|
||||
"Can manage" : "kann verwalten",
|
||||
"Delete" : "Löschen",
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
"Delete Attachment" : "Anhang löschen",
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
@@ -185,6 +179,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
@@ -194,6 +189,7 @@ OC.L10N.register(
|
||||
"Update" : "Aktualisieren",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
@@ -203,7 +199,6 @@ OC.L10N.register(
|
||||
"Card details" : "Kartendetails",
|
||||
"Move card to another board" : "Karte auf ein anderes Board verschieben",
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared with you" : "Mit Ihnen geteilt",
|
||||
@@ -220,11 +215,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all dessen Daten löschen?",
|
||||
"Delete the board?" : "Das Board löschen?",
|
||||
"Loading filtered view" : "Lade gefilterte Ansicht",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
||||
|
||||
@@ -119,7 +119,6 @@
|
||||
"Apply filter" : "Filter anwenden",
|
||||
"Filter by tag" : "Nach Schlagwort filtern",
|
||||
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
|
||||
"Unassigned" : "Nicht zugewiesen",
|
||||
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
|
||||
"Overdue" : "Überfällig",
|
||||
"Next 24 hours" : "Die nächsten 24 Stunden",
|
||||
@@ -131,8 +130,6 @@
|
||||
"Toggle compact mode" : "Kompaktmodus umschalten",
|
||||
"Details" : "Details",
|
||||
"Loading board" : "Board laden",
|
||||
"No lists available" : "Keine Listen verfügbar",
|
||||
"Create a new list to add cards to this board" : "Erstelle eine neue Liste, um diesem Board Karten hinzuzufügen",
|
||||
"Board not found" : "Board nicht gefunden",
|
||||
"Sharing" : "Teilen",
|
||||
"Tags" : "Schlagworte",
|
||||
@@ -150,17 +147,14 @@
|
||||
"Can manage" : "kann verwalten",
|
||||
"Delete" : "Löschen",
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
"Delete Attachment" : "Anhang löschen",
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
@@ -183,6 +177,7 @@
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
@@ -192,6 +187,7 @@
|
||||
"Update" : "Aktualisieren",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
@@ -201,7 +197,6 @@
|
||||
"Card details" : "Kartendetails",
|
||||
"Move card to another board" : "Karte auf ein anderes Board verschieben",
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared with you" : "Mit Ihnen geteilt",
|
||||
@@ -218,11 +213,6 @@
|
||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all dessen Daten löschen?",
|
||||
"Delete the board?" : "Das Board löschen?",
|
||||
"Loading filtered view" : "Lade gefilterte Ansicht",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
||||
|
||||
14
l10n/el.js
14
l10n/el.js
@@ -121,7 +121,6 @@ OC.L10N.register(
|
||||
"Apply filter" : "Εφαρμογή φίλτρου",
|
||||
"Filter by tag" : "Φίλτρο ανά ετικέτα",
|
||||
"Filter by assigned user" : "Φίλτρο ανά χρήστη",
|
||||
"Unassigned" : "Χωρίς ανάθεση",
|
||||
"Filter by due date" : "Φίλτρο ανά ημερομηνία λήξης",
|
||||
"Overdue" : "Εκπρόθεσμος",
|
||||
"Next 24 hours" : "Επόμενες 24 ώρες",
|
||||
@@ -133,8 +132,6 @@ OC.L10N.register(
|
||||
"Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους",
|
||||
"Details" : "Λεπτομέρειες",
|
||||
"Loading board" : "Φόρτωση πίνακα",
|
||||
"No lists available" : "Δεν υπάρχουν διαθέσιμες λίστες",
|
||||
"Create a new list to add cards to this board" : "Δημιουργήστε νέα λίστα για να προσθέσετε καρτέλες σε αυτό τον πίνακα.",
|
||||
"Board not found" : "Ο πίνακας δεν βρέθηκε",
|
||||
"Sharing" : "Διαμοιρασμός",
|
||||
"Tags" : "Ετικέτες",
|
||||
@@ -152,17 +149,14 @@ OC.L10N.register(
|
||||
"Can manage" : "Μπορεί να διαχειριστεί",
|
||||
"Delete" : "Διαγραφή",
|
||||
"Add a new list" : "Προσθήκη νέας λίστας",
|
||||
"Archive all cards" : "Αρχειοθέτηση όλων των καρτελών.",
|
||||
"Delete list" : "Διαγραφή λίστας",
|
||||
"Add card" : "Προσθήκη κάρτας",
|
||||
"Archive all cards in this list" : "Αρχειοθέτηση όλων των καρτελών σε αυτή τη λίστα.",
|
||||
"Add a new card" : "Προσθήκη νέας καρτέλας",
|
||||
"Edit" : "Επεξεργασία",
|
||||
"Add a new tag" : "Προσθήκη νέας ετικέτας",
|
||||
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
|
||||
"Title" : "Τίτλος",
|
||||
"Members" : "Μέλη",
|
||||
"Upload attachment" : "Μεταφόρτωση συνημμένων",
|
||||
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
||||
"Delete Attachment" : "Διαγραφή Συνημμένου",
|
||||
"Restore Attachment" : "Επαναφορά Συνημμένου",
|
||||
@@ -185,6 +179,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Επιλογή συνημμένου",
|
||||
"Modified" : "Τροποποιήθηκε",
|
||||
"Created" : "Δημιουργήθηκε",
|
||||
"Upload attachment" : "Μεταφόρτωση συνημμένων",
|
||||
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
|
||||
"Save" : "Αποθήκευση",
|
||||
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
||||
@@ -194,6 +189,7 @@ OC.L10N.register(
|
||||
"Update" : "Ενημέρωση",
|
||||
"(group)" : "(ομάδα)",
|
||||
"(circle)" : "(κύκλος)",
|
||||
"seconds ago" : " δευτερόλεπτα πριν ",
|
||||
"Assign to me" : "Ανάθεση σε εμένα",
|
||||
"Unassign myself" : "Αποδέσμευσή μου",
|
||||
"Unarchive card" : "Αναίρεση αρχειοθέτησης κάρτας",
|
||||
@@ -203,7 +199,6 @@ OC.L10N.register(
|
||||
"Card details" : "Λεπτομέρειες καρτέλας",
|
||||
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
|
||||
"Select a list" : "Επιλέξτε μια λίστα",
|
||||
"seconds ago" : " δευτερόλεπτα πριν ",
|
||||
"All boards" : "Όλοι οι πίνακες",
|
||||
"Archived boards" : "Αρχειοθέτηση πινάκων ",
|
||||
"Shared with you" : "Διαμοιρασμένα μαζί σας",
|
||||
@@ -220,11 +215,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "Παρουσιάστηκε σφάλμα",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
|
||||
"Delete the board?" : "Διαγραφή πίνακα;",
|
||||
"Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο",
|
||||
"Today" : "Σήμερα",
|
||||
"Tomorrow" : "Αύριο",
|
||||
"This week" : "Αυτή την εβδομάδα",
|
||||
"No due" : "Χωρίς λήξη",
|
||||
"Link to a board" : "Σύνδεσμος στον πίνακα",
|
||||
"Link to a card" : "Σύνδεσμος σε καρτέλα",
|
||||
"Something went wrong" : "Κάτι πήγε στραβά",
|
||||
|
||||
14
l10n/el.json
14
l10n/el.json
@@ -119,7 +119,6 @@
|
||||
"Apply filter" : "Εφαρμογή φίλτρου",
|
||||
"Filter by tag" : "Φίλτρο ανά ετικέτα",
|
||||
"Filter by assigned user" : "Φίλτρο ανά χρήστη",
|
||||
"Unassigned" : "Χωρίς ανάθεση",
|
||||
"Filter by due date" : "Φίλτρο ανά ημερομηνία λήξης",
|
||||
"Overdue" : "Εκπρόθεσμος",
|
||||
"Next 24 hours" : "Επόμενες 24 ώρες",
|
||||
@@ -131,8 +130,6 @@
|
||||
"Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους",
|
||||
"Details" : "Λεπτομέρειες",
|
||||
"Loading board" : "Φόρτωση πίνακα",
|
||||
"No lists available" : "Δεν υπάρχουν διαθέσιμες λίστες",
|
||||
"Create a new list to add cards to this board" : "Δημιουργήστε νέα λίστα για να προσθέσετε καρτέλες σε αυτό τον πίνακα.",
|
||||
"Board not found" : "Ο πίνακας δεν βρέθηκε",
|
||||
"Sharing" : "Διαμοιρασμός",
|
||||
"Tags" : "Ετικέτες",
|
||||
@@ -150,17 +147,14 @@
|
||||
"Can manage" : "Μπορεί να διαχειριστεί",
|
||||
"Delete" : "Διαγραφή",
|
||||
"Add a new list" : "Προσθήκη νέας λίστας",
|
||||
"Archive all cards" : "Αρχειοθέτηση όλων των καρτελών.",
|
||||
"Delete list" : "Διαγραφή λίστας",
|
||||
"Add card" : "Προσθήκη κάρτας",
|
||||
"Archive all cards in this list" : "Αρχειοθέτηση όλων των καρτελών σε αυτή τη λίστα.",
|
||||
"Add a new card" : "Προσθήκη νέας καρτέλας",
|
||||
"Edit" : "Επεξεργασία",
|
||||
"Add a new tag" : "Προσθήκη νέας ετικέτας",
|
||||
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
|
||||
"Title" : "Τίτλος",
|
||||
"Members" : "Μέλη",
|
||||
"Upload attachment" : "Μεταφόρτωση συνημμένων",
|
||||
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
||||
"Delete Attachment" : "Διαγραφή Συνημμένου",
|
||||
"Restore Attachment" : "Επαναφορά Συνημμένου",
|
||||
@@ -183,6 +177,7 @@
|
||||
"Choose attachment" : "Επιλογή συνημμένου",
|
||||
"Modified" : "Τροποποιήθηκε",
|
||||
"Created" : "Δημιουργήθηκε",
|
||||
"Upload attachment" : "Μεταφόρτωση συνημμένων",
|
||||
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
|
||||
"Save" : "Αποθήκευση",
|
||||
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
||||
@@ -192,6 +187,7 @@
|
||||
"Update" : "Ενημέρωση",
|
||||
"(group)" : "(ομάδα)",
|
||||
"(circle)" : "(κύκλος)",
|
||||
"seconds ago" : " δευτερόλεπτα πριν ",
|
||||
"Assign to me" : "Ανάθεση σε εμένα",
|
||||
"Unassign myself" : "Αποδέσμευσή μου",
|
||||
"Unarchive card" : "Αναίρεση αρχειοθέτησης κάρτας",
|
||||
@@ -201,7 +197,6 @@
|
||||
"Card details" : "Λεπτομέρειες καρτέλας",
|
||||
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
|
||||
"Select a list" : "Επιλέξτε μια λίστα",
|
||||
"seconds ago" : " δευτερόλεπτα πριν ",
|
||||
"All boards" : "Όλοι οι πίνακες",
|
||||
"Archived boards" : "Αρχειοθέτηση πινάκων ",
|
||||
"Shared with you" : "Διαμοιρασμένα μαζί σας",
|
||||
@@ -218,11 +213,6 @@
|
||||
"An error occurred" : "Παρουσιάστηκε σφάλμα",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
|
||||
"Delete the board?" : "Διαγραφή πίνακα;",
|
||||
"Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο",
|
||||
"Today" : "Σήμερα",
|
||||
"Tomorrow" : "Αύριο",
|
||||
"This week" : "Αυτή την εβδομάδα",
|
||||
"No due" : "Χωρίς λήξη",
|
||||
"Link to a board" : "Σύνδεσμος στον πίνακα",
|
||||
"Link to a card" : "Σύνδεσμος σε καρτέλα",
|
||||
"Something went wrong" : "Κάτι πήγε στραβά",
|
||||
|
||||
@@ -36,7 +36,6 @@ OC.L10N.register(
|
||||
"Edit" : "Edit",
|
||||
"Title" : "Title",
|
||||
"Members" : "Members",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Due date" : "Due date",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
@@ -45,20 +44,18 @@ OC.L10N.register(
|
||||
"Comments" : "Comments",
|
||||
"Modified" : "Modified",
|
||||
"Created" : "Created",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Save" : "Save",
|
||||
"Reply" : "Reply",
|
||||
"Update" : "Update",
|
||||
"(group)" : "(group)",
|
||||
"seconds ago" : "seconds ago",
|
||||
"Archive card" : "Archive card",
|
||||
"Delete card" : "Delete card",
|
||||
"seconds ago" : "seconds ago",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Shared with you" : "Shared with you",
|
||||
"New board title" : "New board title",
|
||||
"Edit board" : "Edit board",
|
||||
"Board details" : "Board details",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "Tomorrow",
|
||||
"This week" : "This week"
|
||||
"Board details" : "Board details"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -34,7 +34,6 @@
|
||||
"Edit" : "Edit",
|
||||
"Title" : "Title",
|
||||
"Members" : "Members",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Due date" : "Due date",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
@@ -43,20 +42,18 @@
|
||||
"Comments" : "Comments",
|
||||
"Modified" : "Modified",
|
||||
"Created" : "Created",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Save" : "Save",
|
||||
"Reply" : "Reply",
|
||||
"Update" : "Update",
|
||||
"(group)" : "(group)",
|
||||
"seconds ago" : "seconds ago",
|
||||
"Archive card" : "Archive card",
|
||||
"Delete card" : "Delete card",
|
||||
"seconds ago" : "seconds ago",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Shared with you" : "Shared with you",
|
||||
"New board title" : "New board title",
|
||||
"Edit board" : "Edit board",
|
||||
"Board details" : "Board details",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "Tomorrow",
|
||||
"This week" : "This week"
|
||||
"Board details" : "Board details"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -96,7 +96,6 @@ OC.L10N.register(
|
||||
"Edit" : "Redakti",
|
||||
"Title" : "Titolo",
|
||||
"Members" : "Membroj",
|
||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||
"Due date" : "Limdato",
|
||||
"Remove due date" : "Viŝi limdaton",
|
||||
"Description" : "Priskribo",
|
||||
@@ -105,22 +104,21 @@ OC.L10N.register(
|
||||
"Comments" : "Komentoj",
|
||||
"Modified" : "Modifita",
|
||||
"Created" : "Kreita",
|
||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||
"Save" : "Konservi",
|
||||
"Reply" : "Respondi",
|
||||
"Update" : "Ĝisdatigi",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "antaŭ kelkaj sekundoj",
|
||||
"Unarchive card" : "Malarĥivigi karton",
|
||||
"Archive card" : "Arĥivigi karton",
|
||||
"Delete card" : "Forigi karton",
|
||||
"seconds ago" : "antaŭ kelkaj sekundoj",
|
||||
"Archived boards" : "Arĥivigitaj tabuloj",
|
||||
"Shared with you" : "Kunhavata kun vi",
|
||||
"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." : "Limigo de Kartaro („Deck“) baros uzantojn, kiuj ne estas en tiuj grupoj, krei iliajn proprajn tabulojn. Uzantoj tamen eblos labori kun tabuloj kunhavigitaj kun ili.",
|
||||
"New board title" : "Nova tabultitolo",
|
||||
"Edit board" : "Modifi tabulon",
|
||||
"An error occurred" : "Eraro okazis",
|
||||
"Today" : "Hodiaŭ",
|
||||
"Tomorrow" : "Morgaŭ",
|
||||
"Link to a board" : "Ligilo al tabulo",
|
||||
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
|
||||
},
|
||||
|
||||
@@ -94,7 +94,6 @@
|
||||
"Edit" : "Redakti",
|
||||
"Title" : "Titolo",
|
||||
"Members" : "Membroj",
|
||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||
"Due date" : "Limdato",
|
||||
"Remove due date" : "Viŝi limdaton",
|
||||
"Description" : "Priskribo",
|
||||
@@ -103,22 +102,21 @@
|
||||
"Comments" : "Komentoj",
|
||||
"Modified" : "Modifita",
|
||||
"Created" : "Kreita",
|
||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||
"Save" : "Konservi",
|
||||
"Reply" : "Respondi",
|
||||
"Update" : "Ĝisdatigi",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "antaŭ kelkaj sekundoj",
|
||||
"Unarchive card" : "Malarĥivigi karton",
|
||||
"Archive card" : "Arĥivigi karton",
|
||||
"Delete card" : "Forigi karton",
|
||||
"seconds ago" : "antaŭ kelkaj sekundoj",
|
||||
"Archived boards" : "Arĥivigitaj tabuloj",
|
||||
"Shared with you" : "Kunhavata kun vi",
|
||||
"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." : "Limigo de Kartaro („Deck“) baros uzantojn, kiuj ne estas en tiuj grupoj, krei iliajn proprajn tabulojn. Uzantoj tamen eblos labori kun tabuloj kunhavigitaj kun ili.",
|
||||
"New board title" : "Nova tabultitolo",
|
||||
"Edit board" : "Modifi tabulon",
|
||||
"An error occurred" : "Eraro okazis",
|
||||
"Today" : "Hodiaŭ",
|
||||
"Tomorrow" : "Morgaŭ",
|
||||
"Link to a board" : "Ligilo al tabulo",
|
||||
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
14
l10n/es.js
14
l10n/es.js
@@ -121,7 +121,6 @@ OC.L10N.register(
|
||||
"Apply filter" : "Aplicar filtro",
|
||||
"Filter by tag" : "Filtrar por etiqueta",
|
||||
"Filter by assigned user" : "Filtrar por usuario asignado",
|
||||
"Unassigned" : "No asignado",
|
||||
"Filter by due date" : "Filtrar por fecha de finalización",
|
||||
"Overdue" : "Demorado",
|
||||
"Next 24 hours" : "Próximas 24 horas",
|
||||
@@ -133,8 +132,6 @@ OC.L10N.register(
|
||||
"Toggle compact mode" : "Mostrar/ocultar modo compacto",
|
||||
"Details" : "Detalles",
|
||||
"Loading board" : "Cargando tablero",
|
||||
"No lists available" : "No hay listas disponibles",
|
||||
"Create a new list to add cards to this board" : "Crea una lista nueva para añadir tarjetas a este tablero",
|
||||
"Board not found" : "Tablero no encontrado",
|
||||
"Sharing" : "Compartir",
|
||||
"Tags" : "Etiquetas",
|
||||
@@ -152,17 +149,14 @@ OC.L10N.register(
|
||||
"Can manage" : "Puede gestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Add a new list" : "Añadir una lista nueva",
|
||||
"Archive all cards" : "Archivar todas las tarjetas",
|
||||
"Delete list" : "Eliminar lista",
|
||||
"Add card" : "Añadir tarjeta",
|
||||
"Archive all cards in this list" : "Archivar todas las tarjetas en esta lista",
|
||||
"Add a new card" : "Añadir una nueva tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Add a new tag" : "Añade una nueva etiqueta",
|
||||
"title and color value must be provided" : "Se debe indicar un valor para título y color ",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Subir adjunto",
|
||||
"Add this attachment" : "Añadir este adjunto",
|
||||
"Delete Attachment" : "Borrar adjunto",
|
||||
"Restore Attachment" : "Restaurar Adjunto",
|
||||
@@ -185,6 +179,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Escoger adjunto",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Subir adjunto",
|
||||
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
||||
"Save" : "Guardar",
|
||||
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
||||
@@ -194,6 +189,7 @@ OC.L10N.register(
|
||||
"Update" : "Actualizar",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(circle)",
|
||||
"seconds ago" : "hace unos segundos",
|
||||
"Assign to me" : "Asignarme a mí",
|
||||
"Unassign myself" : "Desasignarme a mí mismo",
|
||||
"Unarchive card" : "Desarchivar tarjeta",
|
||||
@@ -203,7 +199,6 @@ OC.L10N.register(
|
||||
"Card details" : "Detalles de la tarjeta",
|
||||
"Move card to another board" : "Mover la tarjeta a otro tablero",
|
||||
"Select a list" : "Seleccionar una lista",
|
||||
"seconds ago" : "hace unos segundos",
|
||||
"All boards" : "Todos los tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido contigo",
|
||||
@@ -220,11 +215,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "Ocurrió un error",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
|
||||
"Delete the board?" : "¿Borrar el tablero?",
|
||||
"Loading filtered view" : "Cargando vista filtrada",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana",
|
||||
"No due" : "Sin finalizar",
|
||||
"Link to a board" : "Enlace a un tablero",
|
||||
"Link to a card" : "Enlace a una tarjeta",
|
||||
"Something went wrong" : "Algo ha ido mal",
|
||||
|
||||
14
l10n/es.json
14
l10n/es.json
@@ -119,7 +119,6 @@
|
||||
"Apply filter" : "Aplicar filtro",
|
||||
"Filter by tag" : "Filtrar por etiqueta",
|
||||
"Filter by assigned user" : "Filtrar por usuario asignado",
|
||||
"Unassigned" : "No asignado",
|
||||
"Filter by due date" : "Filtrar por fecha de finalización",
|
||||
"Overdue" : "Demorado",
|
||||
"Next 24 hours" : "Próximas 24 horas",
|
||||
@@ -131,8 +130,6 @@
|
||||
"Toggle compact mode" : "Mostrar/ocultar modo compacto",
|
||||
"Details" : "Detalles",
|
||||
"Loading board" : "Cargando tablero",
|
||||
"No lists available" : "No hay listas disponibles",
|
||||
"Create a new list to add cards to this board" : "Crea una lista nueva para añadir tarjetas a este tablero",
|
||||
"Board not found" : "Tablero no encontrado",
|
||||
"Sharing" : "Compartir",
|
||||
"Tags" : "Etiquetas",
|
||||
@@ -150,17 +147,14 @@
|
||||
"Can manage" : "Puede gestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Add a new list" : "Añadir una lista nueva",
|
||||
"Archive all cards" : "Archivar todas las tarjetas",
|
||||
"Delete list" : "Eliminar lista",
|
||||
"Add card" : "Añadir tarjeta",
|
||||
"Archive all cards in this list" : "Archivar todas las tarjetas en esta lista",
|
||||
"Add a new card" : "Añadir una nueva tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Add a new tag" : "Añade una nueva etiqueta",
|
||||
"title and color value must be provided" : "Se debe indicar un valor para título y color ",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Subir adjunto",
|
||||
"Add this attachment" : "Añadir este adjunto",
|
||||
"Delete Attachment" : "Borrar adjunto",
|
||||
"Restore Attachment" : "Restaurar Adjunto",
|
||||
@@ -183,6 +177,7 @@
|
||||
"Choose attachment" : "Escoger adjunto",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Subir adjunto",
|
||||
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
||||
"Save" : "Guardar",
|
||||
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
||||
@@ -192,6 +187,7 @@
|
||||
"Update" : "Actualizar",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(circle)",
|
||||
"seconds ago" : "hace unos segundos",
|
||||
"Assign to me" : "Asignarme a mí",
|
||||
"Unassign myself" : "Desasignarme a mí mismo",
|
||||
"Unarchive card" : "Desarchivar tarjeta",
|
||||
@@ -201,7 +197,6 @@
|
||||
"Card details" : "Detalles de la tarjeta",
|
||||
"Move card to another board" : "Mover la tarjeta a otro tablero",
|
||||
"Select a list" : "Seleccionar una lista",
|
||||
"seconds ago" : "hace unos segundos",
|
||||
"All boards" : "Todos los tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido contigo",
|
||||
@@ -218,11 +213,6 @@
|
||||
"An error occurred" : "Ocurrió un error",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
|
||||
"Delete the board?" : "¿Borrar el tablero?",
|
||||
"Loading filtered view" : "Cargando vista filtrada",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana",
|
||||
"No due" : "Sin finalizar",
|
||||
"Link to a board" : "Enlace a un tablero",
|
||||
"Link to a card" : "Enlace a una tarjeta",
|
||||
"Something went wrong" : "Algo ha ido mal",
|
||||
|
||||
@@ -32,7 +32,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -40,6 +39,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -49,9 +49,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -30,7 +30,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -38,6 +37,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -47,9 +47,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -40,9 +40,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título de tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"An error occurred" : "Ocurrió un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"An error occurred" : "Ocurrió un error"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -38,9 +38,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título de tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"An error occurred" : "Ocurrió un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"An error occurred" : "Ocurrió un error"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -35,7 +35,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -43,6 +42,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -52,9 +52,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -33,7 +33,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -41,6 +40,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -50,9 +50,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -36,7 +36,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -44,6 +43,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -53,9 +53,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -34,7 +34,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -42,6 +41,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -51,9 +51,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -35,7 +35,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -43,6 +42,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -52,9 +52,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -33,7 +33,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -41,6 +40,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -50,9 +50,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -35,7 +35,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -43,6 +42,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -52,9 +52,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -33,7 +33,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -41,6 +40,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -50,9 +50,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -35,7 +35,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -43,6 +42,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -52,9 +52,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -33,7 +33,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -41,6 +40,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -50,9 +50,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -35,7 +35,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -43,6 +42,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -52,9 +52,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -33,7 +33,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -41,6 +40,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -50,9 +50,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -31,7 +31,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -39,6 +38,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -48,9 +48,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -29,7 +29,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -37,6 +36,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -46,9 +46,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -36,7 +36,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -45,6 +44,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -55,9 +55,6 @@ OC.L10N.register(
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"An error occurred" : "Ha ocurrido un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"An error occurred" : "Ha ocurrido un error"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -34,7 +34,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -43,6 +42,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -53,9 +53,6 @@
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"An error occurred" : "Ha ocurrido un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"An error occurred" : "Ha ocurrido un error"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -31,7 +31,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -39,6 +38,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -48,9 +48,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -29,7 +29,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -37,6 +36,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -46,9 +46,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -31,7 +31,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -39,6 +38,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -48,9 +48,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -29,7 +29,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -37,6 +36,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -46,9 +46,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -31,7 +31,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -39,6 +38,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -48,9 +48,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -29,7 +29,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -37,6 +36,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -46,9 +46,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -31,7 +31,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -39,6 +38,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -48,9 +48,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -29,7 +29,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -37,6 +36,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -46,9 +46,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -31,7 +31,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -39,6 +38,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -48,9 +48,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -29,7 +29,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -37,6 +36,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -46,9 +46,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -35,7 +35,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -43,6 +42,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -52,9 +52,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -33,7 +33,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -41,6 +40,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -50,9 +50,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -31,7 +31,6 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -39,6 +38,7 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -48,9 +48,6 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -29,7 +29,6 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
@@ -37,6 +36,7 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -46,9 +46,6 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
"Board details" : "Detalles del tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -29,8 +29,6 @@ OC.L10N.register(
|
||||
"(group)" : "(grupp)",
|
||||
"seconds ago" : "sekundit tagasi",
|
||||
"Shared with you" : "Sinuga jagatud",
|
||||
"An error occurred" : "Tekkis tõrge",
|
||||
"Today" : "Täna",
|
||||
"Tomorrow" : "Homme"
|
||||
"An error occurred" : "Tekkis tõrge"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -27,8 +27,6 @@
|
||||
"(group)" : "(grupp)",
|
||||
"seconds ago" : "sekundit tagasi",
|
||||
"Shared with you" : "Sinuga jagatud",
|
||||
"An error occurred" : "Tekkis tõrge",
|
||||
"Today" : "Täna",
|
||||
"Tomorrow" : "Homme"
|
||||
"An error occurred" : "Tekkis tõrge"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
130
l10n/eu.js
130
l10n/eu.js
@@ -1,58 +1,34 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"You have created a new board {board}" : "{board} mahai berri bat sortu duzu",
|
||||
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} mahai berri bat sortu du",
|
||||
"You have deleted the board {board}" : "{board} mahaia ezabatu duzu",
|
||||
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} mahaia ezabatu du",
|
||||
"You have restored the board {board}" : "{board} mahaia leheneratu duzu",
|
||||
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} mahaia leheneratu du",
|
||||
"You have shared the board {board} with {acl}" : "{board} mahaia {acl} erabiltzailearekin partekatu duzu",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} mahaia {acl} erabiltzailearekin partekatu du",
|
||||
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} mahaitik",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} mahaitik",
|
||||
"You have renamed the board {before} to {board}" : "{before} mahaia zena {board} bezala berrizendatu duzu",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} mahaia zena {board} bezala berrizendatu du",
|
||||
"You have archived the board {board}" : "{board} mahaia artxibatu duzu",
|
||||
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibatu du",
|
||||
"You have unarchived the board {board}" : "{board} mahaia artxibotik berreskuratu duzu",
|
||||
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibotik berreskuratu du",
|
||||
"You have created a new list {stack} on board {board}" : "{stack} zerrenda berria sortu duzu {board} mahaian",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda berria sortu du {board} mahaian",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "{before} zerrenda zena {stack} bezala berrizendatu duzu {board} mahaian",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} zerrenda zena {stack} bezala berrizendatu du {board} mahaian",
|
||||
"You have deleted list {stack} on board {board}" : "{stack} zerrenda ezabatu duzu {board} mahaian",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda ezabatu du {board} mahaian",
|
||||
"You have created card {card} in list {stack} on board {board}" : "{card} txartela sortu duzu {board} mahaiko {stack} zerrendan",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} mahaiko {stack} zerrendan",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "{card} txartela ezabatu duzu {board} mahaiko {stack} zerrendan",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} mahaiko {stack} zerrendan",
|
||||
"You have created a new board {board}" : "{board} taula berri bat sortu duzu",
|
||||
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berri bat sortu du",
|
||||
"You have deleted the board {board}" : "{board} taula ezabatu duzu",
|
||||
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du",
|
||||
"You have restored the board {board}" : "{board} taula leheneratu duzu",
|
||||
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du",
|
||||
"You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du",
|
||||
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik",
|
||||
"You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du",
|
||||
"You have archived the board {board}" : "{board} taula artxibatu duzu",
|
||||
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du",
|
||||
"You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu",
|
||||
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik berreskuratu du",
|
||||
"You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu diozu",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu dio",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu duzu",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu du",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela artxibatu duzu",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela artxibatu du",
|
||||
"You have unarchived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela berreskuratu duzu artxibotik",
|
||||
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela berreskuratu du artxibotik",
|
||||
"You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu",
|
||||
"{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio",
|
||||
"You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari {after} epemuga ezarri dio",
|
||||
"You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}",
|
||||
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu diozu",
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu dio",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu diozu",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu dio",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu dio",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : "{card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu duzu",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu du",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
|
||||
"You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} erabiltzaileak {attachment} eranskina gehitu dio {card} txartelari",
|
||||
"You have updated the attachment {attachment} on card {card}" : "{card} txartelaren {attachment} eranskina eguneratu duzu",
|
||||
@@ -63,9 +39,9 @@ OC.L10N.register(
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina leheneratu du",
|
||||
"You have commented on card {card}" : "{card} txartela iruzkindu duzu",
|
||||
"{user} has commented on card {card}" : "{user} erabiltzaileak {card} txartela iruzkindu du",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Txartel baten deskribapena</strong> aldatu da Deck aplikazioaren barruan",
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "<strong>Deck</strong> aplikazioan aldaketak",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Txartel baten deskribapena</strong> aldatu da Deck app-aren barruan",
|
||||
"Deck" : "Mahaigaina",
|
||||
"Changes in the <strong>Deck app</strong>" : "<strong>Deck app</strong>-an aldaketak",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Iruzkin bat</strong> sortu da txartel batean",
|
||||
"Personal" : "Pertsonala",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" txartela \"%s\"-n %sk esleitu zaizu.",
|
||||
@@ -73,8 +49,8 @@ OC.L10N.register(
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%sk aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user}k aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"The board \"%s\" has been shared with you by %s." : "\"%s\" mahaia zurekin partekatu du %s-k",
|
||||
"{user} has shared the board %s with you." : "{user} erabiltzaileak %s mahaia zurekin partekatu du.",
|
||||
"The board \"%s\" has been shared with you by %s." : "\"%s\" taula %sk zurekin partekatu du.",
|
||||
"{user} has shared the board %s with you." : "{user}k %s taula zurekin partekatu du.",
|
||||
"No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.",
|
||||
"Finished" : "Bukatuta",
|
||||
"To review" : "Errebisatzeko",
|
||||
@@ -97,14 +73,14 @@ OC.L10N.register(
|
||||
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
|
||||
"Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
|
||||
"Create new board" : "Sortu mahai berri bat",
|
||||
"new board" : "mahai berria",
|
||||
"Select the board to link to a project" : "Hautatu mahaia proiektu bati estekatzeko",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
|
||||
"Create new board" : "Sortu taula berri bat",
|
||||
"new board" : "taula berria",
|
||||
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
|
||||
"Search by board title" : "Bilatu mahai izenez",
|
||||
"Select board" : "Hautatu mahaia",
|
||||
"Select board" : "Hautatu taula",
|
||||
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
|
||||
"Select a board" : "Hautatu mahai bat",
|
||||
"Select a board" : "Hautatu taula bat",
|
||||
"Select a card" : "Hautatu txartel bat",
|
||||
"Link to card" : "Estekatu txartelera",
|
||||
"Cancel" : "Utzi",
|
||||
@@ -113,7 +89,7 @@ OC.L10N.register(
|
||||
"Do you want to overwrite it?" : "Gainidatzi nahi duzu?",
|
||||
"Overwrite file" : "Gainidatzi fitxategia",
|
||||
"Keep existing file" : "Mantendu dagoen fitxategia",
|
||||
"This board is read only" : "Mahai hau irakurtzeko soilik da",
|
||||
"This board is read only" : "Taula hau irakurtzeko soilik da",
|
||||
"Drop your files to upload" : "Jaregin zure fitxategiak kargatzeko",
|
||||
"Archived cards" : "Artxibatutako txartelak",
|
||||
"Add new list" : "Gehitu zerrenda berria",
|
||||
@@ -121,7 +97,6 @@ OC.L10N.register(
|
||||
"Apply filter" : "Ezarri iragazkia",
|
||||
"Filter by tag" : "Iragazi etiketaz",
|
||||
"Filter by assigned user" : "Iragazi esleitutako erabiltzailez",
|
||||
"Unassigned" : "Esleitu gabea",
|
||||
"Filter by due date" : "Iragazi epe-mugaz",
|
||||
"Overdue" : "Atzeratuta",
|
||||
"Next 24 hours" : "Hurrengo 24 orduak",
|
||||
@@ -132,10 +107,8 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Erakutsi artxibatutako txartelak",
|
||||
"Toggle compact mode" : "Txandakatu modu trinkoa",
|
||||
"Details" : "Xehetasunak",
|
||||
"Loading board" : "Mahaia kargatzen",
|
||||
"No lists available" : "Ez dago zerrendarik eskuragarri",
|
||||
"Create a new list to add cards to this board" : "Sortu zerrenda berria, mahai honetan txartelak gehitzeko",
|
||||
"Board not found" : "Ez da mahaia aurkitu",
|
||||
"Loading board" : "Taula kargatzen",
|
||||
"Board not found" : "Ez da taula aurkitu",
|
||||
"Sharing" : "Partekatzea",
|
||||
"Tags" : "Etiketak",
|
||||
"Deleted items" : "Ezabatutako elementuak",
|
||||
@@ -143,26 +116,22 @@ OC.L10N.register(
|
||||
"Deleted lists" : "Ezabatutako zerrendak",
|
||||
"Undo" : "Desegin",
|
||||
"Deleted cards" : "Ezabatutako txartelak",
|
||||
"Share board with a user, group or circle …" : "Partekatu mahaia erabiltzaile, talde edo zirkulu batekin...",
|
||||
"Board owner" : "Mahaiaren jabea",
|
||||
"Share board with a user, group or circle …" : "Partekatu taula erabiltzaile, talde edo zirkulu batekin ...",
|
||||
"Board owner" : "Taularen jabea",
|
||||
"(Group)" : "(Taldea)",
|
||||
"(Circle)" : "(Zirkulua)",
|
||||
"Can edit" : "Editatu dezake",
|
||||
"Can share" : "Partekatu dezake",
|
||||
"Can manage" : "Kudeatu dezake",
|
||||
"Delete" : "Ezabatu",
|
||||
"Add a new list" : "Gehitu zerrenda berria",
|
||||
"Archive all cards" : "Artxibatu txartel guztiak",
|
||||
"Delete list" : "Zerrenda ezabatu",
|
||||
"Add card" : "Gehitu txartela",
|
||||
"Archive all cards in this list" : "Artxibatu zerrenda honetako txartel guztiak",
|
||||
"Add a new card" : "Gehitu txartel berri bat",
|
||||
"Edit" : "Editatu",
|
||||
"Add a new tag" : "Gehitu etiketa berri bat",
|
||||
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
|
||||
"Title" : "Izenburua",
|
||||
"Members" : "Partaideak",
|
||||
"Upload attachment" : "Igo eranskina",
|
||||
"Add this attachment" : "Gehitu eranskin hau",
|
||||
"Delete Attachment" : "Ezabatu eranskina",
|
||||
"Restore Attachment" : "Berezarri eranskina",
|
||||
@@ -185,6 +154,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Aukeratu eranskina",
|
||||
"Modified" : "Aldatua",
|
||||
"Created" : "Sortua",
|
||||
"Upload attachment" : "Igo eranskina",
|
||||
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
||||
"Save" : "Gorde",
|
||||
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
||||
@@ -194,36 +164,28 @@ OC.L10N.register(
|
||||
"Update" : "Eguneratu",
|
||||
"(group)" : "(taldea)",
|
||||
"(circle)" : "(zirkulua)",
|
||||
"seconds ago" : "segundo lehenago",
|
||||
"Assign to me" : "Esleitu niri",
|
||||
"Unassign myself" : "Niri esleitzeari utzi",
|
||||
"Unarchive card" : "Berreskuratu txartela artxibotik",
|
||||
"Archive card" : "Artxibatu txartela",
|
||||
"Delete card" : "Ezabatu txartela",
|
||||
"Move card" : "Mugitu txartela",
|
||||
"Card details" : "Txartelaren xehetasunak",
|
||||
"Move card to another board" : "Mugitu txartela beste mahai batera",
|
||||
"Select a list" : "Hautatu zerrenda bat",
|
||||
"seconds ago" : "segundo lehenago",
|
||||
"All boards" : "Mahai guztiak",
|
||||
"Archived boards" : "Artxibatutako mahaiak",
|
||||
"All boards" : "Taula guztiak",
|
||||
"Archived boards" : "Artxibatutako taulak",
|
||||
"Shared with you" : "Zurekin partekatua",
|
||||
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei beren mahai propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren mahaietan lan egin ahalko dute.",
|
||||
"New board title" : "Mahai berriaren izenburua",
|
||||
"Edit board" : "Editatu mahaia",
|
||||
"Limit deck usage of groups" : "Mugatu taldeen deck erabilera",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute.",
|
||||
"New board title" : "Taula berriaren izenburua",
|
||||
"Edit board" : "Editatu taula",
|
||||
"Clone board " : "Klonatu mahaia",
|
||||
"Unarchive board " : "Berreskuratu mahaia artxibotik",
|
||||
"Archive board " : "Artxibatu mahaia",
|
||||
"Delete board " : "Ezabatu mahaia",
|
||||
"Board details" : "Mahaiaren xehetasunak",
|
||||
"Board {0} deleted" : "{0} mahaia ezabatu da",
|
||||
"Board details" : "Mahaigainaren xehetasunak",
|
||||
"An error occurred" : "Errore bat gertatu da",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ziur zaude «{title}» mahaia ezabatu nahi duzula? Honek mahai honen datu guztiak ezabatuko ditu.",
|
||||
"Delete the board?" : "Mahaia ezabatu?",
|
||||
"Today" : "Gaur",
|
||||
"Tomorrow" : "Bihar",
|
||||
"This week" : "Aste honetan",
|
||||
"Link to a board" : "Estekatu mahai batera",
|
||||
"Link to a board" : "Estekatu taula batera",
|
||||
"Link to a card" : "Estekatu txartel batera",
|
||||
"Something went wrong" : "Zerbait gaizki joan da",
|
||||
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da"
|
||||
|
||||
130
l10n/eu.json
130
l10n/eu.json
@@ -1,56 +1,32 @@
|
||||
{ "translations": {
|
||||
"You have created a new board {board}" : "{board} mahai berri bat sortu duzu",
|
||||
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} mahai berri bat sortu du",
|
||||
"You have deleted the board {board}" : "{board} mahaia ezabatu duzu",
|
||||
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} mahaia ezabatu du",
|
||||
"You have restored the board {board}" : "{board} mahaia leheneratu duzu",
|
||||
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} mahaia leheneratu du",
|
||||
"You have shared the board {board} with {acl}" : "{board} mahaia {acl} erabiltzailearekin partekatu duzu",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} mahaia {acl} erabiltzailearekin partekatu du",
|
||||
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} mahaitik",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} mahaitik",
|
||||
"You have renamed the board {before} to {board}" : "{before} mahaia zena {board} bezala berrizendatu duzu",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} mahaia zena {board} bezala berrizendatu du",
|
||||
"You have archived the board {board}" : "{board} mahaia artxibatu duzu",
|
||||
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibatu du",
|
||||
"You have unarchived the board {board}" : "{board} mahaia artxibotik berreskuratu duzu",
|
||||
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibotik berreskuratu du",
|
||||
"You have created a new list {stack} on board {board}" : "{stack} zerrenda berria sortu duzu {board} mahaian",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda berria sortu du {board} mahaian",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "{before} zerrenda zena {stack} bezala berrizendatu duzu {board} mahaian",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} zerrenda zena {stack} bezala berrizendatu du {board} mahaian",
|
||||
"You have deleted list {stack} on board {board}" : "{stack} zerrenda ezabatu duzu {board} mahaian",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda ezabatu du {board} mahaian",
|
||||
"You have created card {card} in list {stack} on board {board}" : "{card} txartela sortu duzu {board} mahaiko {stack} zerrendan",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} mahaiko {stack} zerrendan",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "{card} txartela ezabatu duzu {board} mahaiko {stack} zerrendan",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} mahaiko {stack} zerrendan",
|
||||
"You have created a new board {board}" : "{board} taula berri bat sortu duzu",
|
||||
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berri bat sortu du",
|
||||
"You have deleted the board {board}" : "{board} taula ezabatu duzu",
|
||||
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du",
|
||||
"You have restored the board {board}" : "{board} taula leheneratu duzu",
|
||||
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du",
|
||||
"You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du",
|
||||
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik",
|
||||
"You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du",
|
||||
"You have archived the board {board}" : "{board} taula artxibatu duzu",
|
||||
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du",
|
||||
"You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu",
|
||||
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik berreskuratu du",
|
||||
"You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu diozu",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu dio",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu duzu",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu du",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela artxibatu duzu",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela artxibatu du",
|
||||
"You have unarchived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela berreskuratu duzu artxibotik",
|
||||
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela berreskuratu du artxibotik",
|
||||
"You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu",
|
||||
"{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio",
|
||||
"You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari {after} epemuga ezarri dio",
|
||||
"You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}",
|
||||
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu diozu",
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu dio",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu diozu",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu dio",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu dio",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : "{card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu duzu",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu du",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
|
||||
"You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} erabiltzaileak {attachment} eranskina gehitu dio {card} txartelari",
|
||||
"You have updated the attachment {attachment} on card {card}" : "{card} txartelaren {attachment} eranskina eguneratu duzu",
|
||||
@@ -61,9 +37,9 @@
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina leheneratu du",
|
||||
"You have commented on card {card}" : "{card} txartela iruzkindu duzu",
|
||||
"{user} has commented on card {card}" : "{user} erabiltzaileak {card} txartela iruzkindu du",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Txartel baten deskribapena</strong> aldatu da Deck aplikazioaren barruan",
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "<strong>Deck</strong> aplikazioan aldaketak",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Txartel baten deskribapena</strong> aldatu da Deck app-aren barruan",
|
||||
"Deck" : "Mahaigaina",
|
||||
"Changes in the <strong>Deck app</strong>" : "<strong>Deck app</strong>-an aldaketak",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Iruzkin bat</strong> sortu da txartel batean",
|
||||
"Personal" : "Pertsonala",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" txartela \"%s\"-n %sk esleitu zaizu.",
|
||||
@@ -71,8 +47,8 @@
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%sk aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user}k aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"The board \"%s\" has been shared with you by %s." : "\"%s\" mahaia zurekin partekatu du %s-k",
|
||||
"{user} has shared the board %s with you." : "{user} erabiltzaileak %s mahaia zurekin partekatu du.",
|
||||
"The board \"%s\" has been shared with you by %s." : "\"%s\" taula %sk zurekin partekatu du.",
|
||||
"{user} has shared the board %s with you." : "{user}k %s taula zurekin partekatu du.",
|
||||
"No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.",
|
||||
"Finished" : "Bukatuta",
|
||||
"To review" : "Errebisatzeko",
|
||||
@@ -95,14 +71,14 @@
|
||||
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
|
||||
"Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
|
||||
"Create new board" : "Sortu mahai berri bat",
|
||||
"new board" : "mahai berria",
|
||||
"Select the board to link to a project" : "Hautatu mahaia proiektu bati estekatzeko",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
|
||||
"Create new board" : "Sortu taula berri bat",
|
||||
"new board" : "taula berria",
|
||||
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
|
||||
"Search by board title" : "Bilatu mahai izenez",
|
||||
"Select board" : "Hautatu mahaia",
|
||||
"Select board" : "Hautatu taula",
|
||||
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
|
||||
"Select a board" : "Hautatu mahai bat",
|
||||
"Select a board" : "Hautatu taula bat",
|
||||
"Select a card" : "Hautatu txartel bat",
|
||||
"Link to card" : "Estekatu txartelera",
|
||||
"Cancel" : "Utzi",
|
||||
@@ -111,7 +87,7 @@
|
||||
"Do you want to overwrite it?" : "Gainidatzi nahi duzu?",
|
||||
"Overwrite file" : "Gainidatzi fitxategia",
|
||||
"Keep existing file" : "Mantendu dagoen fitxategia",
|
||||
"This board is read only" : "Mahai hau irakurtzeko soilik da",
|
||||
"This board is read only" : "Taula hau irakurtzeko soilik da",
|
||||
"Drop your files to upload" : "Jaregin zure fitxategiak kargatzeko",
|
||||
"Archived cards" : "Artxibatutako txartelak",
|
||||
"Add new list" : "Gehitu zerrenda berria",
|
||||
@@ -119,7 +95,6 @@
|
||||
"Apply filter" : "Ezarri iragazkia",
|
||||
"Filter by tag" : "Iragazi etiketaz",
|
||||
"Filter by assigned user" : "Iragazi esleitutako erabiltzailez",
|
||||
"Unassigned" : "Esleitu gabea",
|
||||
"Filter by due date" : "Iragazi epe-mugaz",
|
||||
"Overdue" : "Atzeratuta",
|
||||
"Next 24 hours" : "Hurrengo 24 orduak",
|
||||
@@ -130,10 +105,8 @@
|
||||
"Show archived cards" : "Erakutsi artxibatutako txartelak",
|
||||
"Toggle compact mode" : "Txandakatu modu trinkoa",
|
||||
"Details" : "Xehetasunak",
|
||||
"Loading board" : "Mahaia kargatzen",
|
||||
"No lists available" : "Ez dago zerrendarik eskuragarri",
|
||||
"Create a new list to add cards to this board" : "Sortu zerrenda berria, mahai honetan txartelak gehitzeko",
|
||||
"Board not found" : "Ez da mahaia aurkitu",
|
||||
"Loading board" : "Taula kargatzen",
|
||||
"Board not found" : "Ez da taula aurkitu",
|
||||
"Sharing" : "Partekatzea",
|
||||
"Tags" : "Etiketak",
|
||||
"Deleted items" : "Ezabatutako elementuak",
|
||||
@@ -141,26 +114,22 @@
|
||||
"Deleted lists" : "Ezabatutako zerrendak",
|
||||
"Undo" : "Desegin",
|
||||
"Deleted cards" : "Ezabatutako txartelak",
|
||||
"Share board with a user, group or circle …" : "Partekatu mahaia erabiltzaile, talde edo zirkulu batekin...",
|
||||
"Board owner" : "Mahaiaren jabea",
|
||||
"Share board with a user, group or circle …" : "Partekatu taula erabiltzaile, talde edo zirkulu batekin ...",
|
||||
"Board owner" : "Taularen jabea",
|
||||
"(Group)" : "(Taldea)",
|
||||
"(Circle)" : "(Zirkulua)",
|
||||
"Can edit" : "Editatu dezake",
|
||||
"Can share" : "Partekatu dezake",
|
||||
"Can manage" : "Kudeatu dezake",
|
||||
"Delete" : "Ezabatu",
|
||||
"Add a new list" : "Gehitu zerrenda berria",
|
||||
"Archive all cards" : "Artxibatu txartel guztiak",
|
||||
"Delete list" : "Zerrenda ezabatu",
|
||||
"Add card" : "Gehitu txartela",
|
||||
"Archive all cards in this list" : "Artxibatu zerrenda honetako txartel guztiak",
|
||||
"Add a new card" : "Gehitu txartel berri bat",
|
||||
"Edit" : "Editatu",
|
||||
"Add a new tag" : "Gehitu etiketa berri bat",
|
||||
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
|
||||
"Title" : "Izenburua",
|
||||
"Members" : "Partaideak",
|
||||
"Upload attachment" : "Igo eranskina",
|
||||
"Add this attachment" : "Gehitu eranskin hau",
|
||||
"Delete Attachment" : "Ezabatu eranskina",
|
||||
"Restore Attachment" : "Berezarri eranskina",
|
||||
@@ -183,6 +152,7 @@
|
||||
"Choose attachment" : "Aukeratu eranskina",
|
||||
"Modified" : "Aldatua",
|
||||
"Created" : "Sortua",
|
||||
"Upload attachment" : "Igo eranskina",
|
||||
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
||||
"Save" : "Gorde",
|
||||
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
||||
@@ -192,36 +162,28 @@
|
||||
"Update" : "Eguneratu",
|
||||
"(group)" : "(taldea)",
|
||||
"(circle)" : "(zirkulua)",
|
||||
"seconds ago" : "segundo lehenago",
|
||||
"Assign to me" : "Esleitu niri",
|
||||
"Unassign myself" : "Niri esleitzeari utzi",
|
||||
"Unarchive card" : "Berreskuratu txartela artxibotik",
|
||||
"Archive card" : "Artxibatu txartela",
|
||||
"Delete card" : "Ezabatu txartela",
|
||||
"Move card" : "Mugitu txartela",
|
||||
"Card details" : "Txartelaren xehetasunak",
|
||||
"Move card to another board" : "Mugitu txartela beste mahai batera",
|
||||
"Select a list" : "Hautatu zerrenda bat",
|
||||
"seconds ago" : "segundo lehenago",
|
||||
"All boards" : "Mahai guztiak",
|
||||
"Archived boards" : "Artxibatutako mahaiak",
|
||||
"All boards" : "Taula guztiak",
|
||||
"Archived boards" : "Artxibatutako taulak",
|
||||
"Shared with you" : "Zurekin partekatua",
|
||||
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei beren mahai propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren mahaietan lan egin ahalko dute.",
|
||||
"New board title" : "Mahai berriaren izenburua",
|
||||
"Edit board" : "Editatu mahaia",
|
||||
"Limit deck usage of groups" : "Mugatu taldeen deck erabilera",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute.",
|
||||
"New board title" : "Taula berriaren izenburua",
|
||||
"Edit board" : "Editatu taula",
|
||||
"Clone board " : "Klonatu mahaia",
|
||||
"Unarchive board " : "Berreskuratu mahaia artxibotik",
|
||||
"Archive board " : "Artxibatu mahaia",
|
||||
"Delete board " : "Ezabatu mahaia",
|
||||
"Board details" : "Mahaiaren xehetasunak",
|
||||
"Board {0} deleted" : "{0} mahaia ezabatu da",
|
||||
"Board details" : "Mahaigainaren xehetasunak",
|
||||
"An error occurred" : "Errore bat gertatu da",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ziur zaude «{title}» mahaia ezabatu nahi duzula? Honek mahai honen datu guztiak ezabatuko ditu.",
|
||||
"Delete the board?" : "Mahaia ezabatu?",
|
||||
"Today" : "Gaur",
|
||||
"Tomorrow" : "Bihar",
|
||||
"This week" : "Aste honetan",
|
||||
"Link to a board" : "Estekatu mahai batera",
|
||||
"Link to a board" : "Estekatu taula batera",
|
||||
"Link to a card" : "Estekatu txartel batera",
|
||||
"Something went wrong" : "Zerbait gaizki joan da",
|
||||
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da"
|
||||
|
||||
@@ -93,7 +93,6 @@ OC.L10N.register(
|
||||
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
|
||||
"Title" : "عنوان",
|
||||
"Members" : "اعضا",
|
||||
"Upload attachment" : "بارگذاری پیوست",
|
||||
"Add this attachment" : "افزودن این پیوست",
|
||||
"Delete Attachment" : "حذف پیوست",
|
||||
"Restore Attachment" : "بازیابی پیوست",
|
||||
@@ -110,6 +109,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "انتخاب پیوست",
|
||||
"Modified" : "تغییر یافته",
|
||||
"Created" : "ایجاد شده",
|
||||
"Upload attachment" : "بارگذاری پیوست",
|
||||
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
||||
"Save" : "ذخیره",
|
||||
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
||||
@@ -119,20 +119,17 @@ OC.L10N.register(
|
||||
"Update" : "بهروزرسانی",
|
||||
"(group)" : "(گروه)",
|
||||
"(circle)" : "(حلقه)",
|
||||
"seconds ago" : "ثانیههایی پیش",
|
||||
"Archive card" : "کارت بایگانی",
|
||||
"Delete card" : "حذف کارت",
|
||||
"Move card" : "انتقال کارت",
|
||||
"Card details" : "جزئیات کارت",
|
||||
"Move card to another board" : "انتقال کارت به تختهای دیگر",
|
||||
"seconds ago" : "ثانیههایی پیش",
|
||||
"All boards" : "همه تختهها",
|
||||
"Archived boards" : "تختههای بایگانی شده",
|
||||
"Shared with you" : "با شما به اشتراک گذاشته شده است",
|
||||
"New board title" : "عنوان تختهٔ جدید",
|
||||
"Edit board" : "ویرایش تخته",
|
||||
"An error occurred" : "خطایی روی داد",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "فردا",
|
||||
"This week" : "این هفته"
|
||||
"An error occurred" : "خطایی روی داد"
|
||||
},
|
||||
"nplurals=2; plural=(n > 1);");
|
||||
|
||||
@@ -91,7 +91,6 @@
|
||||
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
|
||||
"Title" : "عنوان",
|
||||
"Members" : "اعضا",
|
||||
"Upload attachment" : "بارگذاری پیوست",
|
||||
"Add this attachment" : "افزودن این پیوست",
|
||||
"Delete Attachment" : "حذف پیوست",
|
||||
"Restore Attachment" : "بازیابی پیوست",
|
||||
@@ -108,6 +107,7 @@
|
||||
"Choose attachment" : "انتخاب پیوست",
|
||||
"Modified" : "تغییر یافته",
|
||||
"Created" : "ایجاد شده",
|
||||
"Upload attachment" : "بارگذاری پیوست",
|
||||
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
||||
"Save" : "ذخیره",
|
||||
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
||||
@@ -117,20 +117,17 @@
|
||||
"Update" : "بهروزرسانی",
|
||||
"(group)" : "(گروه)",
|
||||
"(circle)" : "(حلقه)",
|
||||
"seconds ago" : "ثانیههایی پیش",
|
||||
"Archive card" : "کارت بایگانی",
|
||||
"Delete card" : "حذف کارت",
|
||||
"Move card" : "انتقال کارت",
|
||||
"Card details" : "جزئیات کارت",
|
||||
"Move card to another board" : "انتقال کارت به تختهای دیگر",
|
||||
"seconds ago" : "ثانیههایی پیش",
|
||||
"All boards" : "همه تختهها",
|
||||
"Archived boards" : "تختههای بایگانی شده",
|
||||
"Shared with you" : "با شما به اشتراک گذاشته شده است",
|
||||
"New board title" : "عنوان تختهٔ جدید",
|
||||
"Edit board" : "ویرایش تخته",
|
||||
"An error occurred" : "خطایی روی داد",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "فردا",
|
||||
"This week" : "این هفته"
|
||||
"An error occurred" : "خطایی روی داد"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
}
|
||||
@@ -122,7 +122,6 @@ OC.L10N.register(
|
||||
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
||||
"Title" : "Otsikko",
|
||||
"Members" : "Jäsenet",
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"Delete Attachment" : "Poista liite",
|
||||
"Restore Attachment" : "Palauta liite",
|
||||
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
||||
@@ -135,6 +134,7 @@ OC.L10N.register(
|
||||
"Comments" : "Kommentit",
|
||||
"Modified" : "Muokattu",
|
||||
"Created" : "Luotu",
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
||||
"Save" : "Tallenna",
|
||||
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
||||
@@ -142,12 +142,12 @@ OC.L10N.register(
|
||||
"Reply" : "Vastaa",
|
||||
"Update" : "Päivitä",
|
||||
"(group)" : "(ryhmä)",
|
||||
"seconds ago" : "sekuntia sitten",
|
||||
"Unarchive card" : "Poista kortti arkistosta",
|
||||
"Archive card" : "Arkistoi kortti",
|
||||
"Delete card" : "Poista kortti",
|
||||
"Move card" : "Siirrä kortti",
|
||||
"Card details" : "Näytä kortin sisältö",
|
||||
"seconds ago" : "sekuntia sitten",
|
||||
"All boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
"Shared with you" : "Jaettu kanssasi",
|
||||
@@ -156,9 +156,6 @@ OC.L10N.register(
|
||||
"Edit board" : "Muokkaa taulua",
|
||||
"Board details" : "Taulun tiedot",
|
||||
"An error occurred" : "Tapahtui virhe",
|
||||
"Today" : "Tänään",
|
||||
"Tomorrow" : "Huomenna",
|
||||
"This week" : "Tällä viikolla",
|
||||
"Link to a board" : "Linkki taululle",
|
||||
"Link to a card" : "Linkitä korttiin",
|
||||
"Something went wrong" : "Jokin meni vikaan",
|
||||
|
||||
@@ -120,7 +120,6 @@
|
||||
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
||||
"Title" : "Otsikko",
|
||||
"Members" : "Jäsenet",
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"Delete Attachment" : "Poista liite",
|
||||
"Restore Attachment" : "Palauta liite",
|
||||
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
||||
@@ -133,6 +132,7 @@
|
||||
"Comments" : "Kommentit",
|
||||
"Modified" : "Muokattu",
|
||||
"Created" : "Luotu",
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
||||
"Save" : "Tallenna",
|
||||
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
||||
@@ -140,12 +140,12 @@
|
||||
"Reply" : "Vastaa",
|
||||
"Update" : "Päivitä",
|
||||
"(group)" : "(ryhmä)",
|
||||
"seconds ago" : "sekuntia sitten",
|
||||
"Unarchive card" : "Poista kortti arkistosta",
|
||||
"Archive card" : "Arkistoi kortti",
|
||||
"Delete card" : "Poista kortti",
|
||||
"Move card" : "Siirrä kortti",
|
||||
"Card details" : "Näytä kortin sisältö",
|
||||
"seconds ago" : "sekuntia sitten",
|
||||
"All boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
"Shared with you" : "Jaettu kanssasi",
|
||||
@@ -154,9 +154,6 @@
|
||||
"Edit board" : "Muokkaa taulua",
|
||||
"Board details" : "Taulun tiedot",
|
||||
"An error occurred" : "Tapahtui virhe",
|
||||
"Today" : "Tänään",
|
||||
"Tomorrow" : "Huomenna",
|
||||
"This week" : "Tällä viikolla",
|
||||
"Link to a board" : "Linkki taululle",
|
||||
"Link to a card" : "Linkitä korttiin",
|
||||
"Something went wrong" : "Jokin meni vikaan",
|
||||
|
||||
14
l10n/fr.js
14
l10n/fr.js
@@ -121,7 +121,6 @@ OC.L10N.register(
|
||||
"Apply filter" : "Filtrer",
|
||||
"Filter by tag" : "Filtrer par étiquette",
|
||||
"Filter by assigned user" : "Filtrer par utilisateur",
|
||||
"Unassigned" : "Non attribué",
|
||||
"Filter by due date" : "Filtrer par échéance",
|
||||
"Overdue" : "En retard",
|
||||
"Next 24 hours" : "prochaines 24 heures",
|
||||
@@ -133,8 +132,6 @@ OC.L10N.register(
|
||||
"Toggle compact mode" : "Basculer le mode compact",
|
||||
"Details" : "Détails",
|
||||
"Loading board" : "Chargement du tableau…",
|
||||
"No lists available" : "Aucune liste disponible",
|
||||
"Create a new list to add cards to this board" : "Créer une nouvelle liste pour ajouter des cartes à ce tableau",
|
||||
"Board not found" : "Tableau non trouvé",
|
||||
"Sharing" : "Partagé",
|
||||
"Tags" : "Étiquettes",
|
||||
@@ -152,17 +149,14 @@ OC.L10N.register(
|
||||
"Can manage" : "Peut gérer",
|
||||
"Delete" : "Supprimer",
|
||||
"Add a new list" : "Ajouter une nouvelle liste",
|
||||
"Archive all cards" : "Archiver toutes les cartes",
|
||||
"Delete list" : "Supprimer la liste",
|
||||
"Add card" : "Ajouter une carte",
|
||||
"Archive all cards in this list" : "Archiver toutes les cartes de cette liste",
|
||||
"Add a new card" : "Ajouter une nouvelle carte",
|
||||
"Edit" : "Modifier",
|
||||
"Add a new tag" : "Ajouter une nouvelle étiquette",
|
||||
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
|
||||
"Title" : "Titre",
|
||||
"Members" : "Membres",
|
||||
"Upload attachment" : "Envoyer une pièce jointe",
|
||||
"Add this attachment" : "Ajouter cette pièce jointe",
|
||||
"Delete Attachment" : "Supprimer la pièce jointe",
|
||||
"Restore Attachment" : "Restaurer la pièce jointe",
|
||||
@@ -185,6 +179,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Choisir une pièce jointe",
|
||||
"Modified" : "Modifié",
|
||||
"Created" : "Créé",
|
||||
"Upload attachment" : "Envoyer une pièce jointe",
|
||||
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
||||
"Save" : "Enregistrer",
|
||||
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
||||
@@ -194,6 +189,7 @@ OC.L10N.register(
|
||||
"Update" : "Mettre à jour",
|
||||
"(group)" : "(groupe)",
|
||||
"(circle)" : "(cercle)",
|
||||
"seconds ago" : "à l'instant",
|
||||
"Assign to me" : "Me l'assigner",
|
||||
"Unassign myself" : "Me le désassigner",
|
||||
"Unarchive card" : "Sortir la carte des archives",
|
||||
@@ -203,7 +199,6 @@ OC.L10N.register(
|
||||
"Card details" : "Détails de la carte",
|
||||
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
|
||||
"Select a list" : "Sélectionner une liste",
|
||||
"seconds ago" : "à l'instant",
|
||||
"All boards" : "Tous les tableaux",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
"Shared with you" : "Partagés avec vous",
|
||||
@@ -220,11 +215,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "Une erreur est survenue",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
|
||||
"Delete the board?" : "Supprimer le tableau ?",
|
||||
"Loading filtered view" : "Chargement de la vue filtrée",
|
||||
"Today" : "Aujourd'hui",
|
||||
"Tomorrow" : "Demain",
|
||||
"This week" : "Cette semaine",
|
||||
"No due" : "Sans échéance",
|
||||
"Link to a board" : "Relier à un tableau",
|
||||
"Link to a card" : "Relier à une carte",
|
||||
"Something went wrong" : "Quelque chose s'est mal passé",
|
||||
|
||||
14
l10n/fr.json
14
l10n/fr.json
@@ -119,7 +119,6 @@
|
||||
"Apply filter" : "Filtrer",
|
||||
"Filter by tag" : "Filtrer par étiquette",
|
||||
"Filter by assigned user" : "Filtrer par utilisateur",
|
||||
"Unassigned" : "Non attribué",
|
||||
"Filter by due date" : "Filtrer par échéance",
|
||||
"Overdue" : "En retard",
|
||||
"Next 24 hours" : "prochaines 24 heures",
|
||||
@@ -131,8 +130,6 @@
|
||||
"Toggle compact mode" : "Basculer le mode compact",
|
||||
"Details" : "Détails",
|
||||
"Loading board" : "Chargement du tableau…",
|
||||
"No lists available" : "Aucune liste disponible",
|
||||
"Create a new list to add cards to this board" : "Créer une nouvelle liste pour ajouter des cartes à ce tableau",
|
||||
"Board not found" : "Tableau non trouvé",
|
||||
"Sharing" : "Partagé",
|
||||
"Tags" : "Étiquettes",
|
||||
@@ -150,17 +147,14 @@
|
||||
"Can manage" : "Peut gérer",
|
||||
"Delete" : "Supprimer",
|
||||
"Add a new list" : "Ajouter une nouvelle liste",
|
||||
"Archive all cards" : "Archiver toutes les cartes",
|
||||
"Delete list" : "Supprimer la liste",
|
||||
"Add card" : "Ajouter une carte",
|
||||
"Archive all cards in this list" : "Archiver toutes les cartes de cette liste",
|
||||
"Add a new card" : "Ajouter une nouvelle carte",
|
||||
"Edit" : "Modifier",
|
||||
"Add a new tag" : "Ajouter une nouvelle étiquette",
|
||||
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
|
||||
"Title" : "Titre",
|
||||
"Members" : "Membres",
|
||||
"Upload attachment" : "Envoyer une pièce jointe",
|
||||
"Add this attachment" : "Ajouter cette pièce jointe",
|
||||
"Delete Attachment" : "Supprimer la pièce jointe",
|
||||
"Restore Attachment" : "Restaurer la pièce jointe",
|
||||
@@ -183,6 +177,7 @@
|
||||
"Choose attachment" : "Choisir une pièce jointe",
|
||||
"Modified" : "Modifié",
|
||||
"Created" : "Créé",
|
||||
"Upload attachment" : "Envoyer une pièce jointe",
|
||||
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
||||
"Save" : "Enregistrer",
|
||||
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
||||
@@ -192,6 +187,7 @@
|
||||
"Update" : "Mettre à jour",
|
||||
"(group)" : "(groupe)",
|
||||
"(circle)" : "(cercle)",
|
||||
"seconds ago" : "à l'instant",
|
||||
"Assign to me" : "Me l'assigner",
|
||||
"Unassign myself" : "Me le désassigner",
|
||||
"Unarchive card" : "Sortir la carte des archives",
|
||||
@@ -201,7 +197,6 @@
|
||||
"Card details" : "Détails de la carte",
|
||||
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
|
||||
"Select a list" : "Sélectionner une liste",
|
||||
"seconds ago" : "à l'instant",
|
||||
"All boards" : "Tous les tableaux",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
"Shared with you" : "Partagés avec vous",
|
||||
@@ -218,11 +213,6 @@
|
||||
"An error occurred" : "Une erreur est survenue",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
|
||||
"Delete the board?" : "Supprimer le tableau ?",
|
||||
"Loading filtered view" : "Chargement de la vue filtrée",
|
||||
"Today" : "Aujourd'hui",
|
||||
"Tomorrow" : "Demain",
|
||||
"This week" : "Cette semaine",
|
||||
"No due" : "Sans échéance",
|
||||
"Link to a board" : "Relier à un tableau",
|
||||
"Link to a card" : "Relier à une carte",
|
||||
"Something went wrong" : "Quelque chose s'est mal passé",
|
||||
|
||||
14
l10n/gl.js
14
l10n/gl.js
@@ -121,7 +121,6 @@ OC.L10N.register(
|
||||
"Apply filter" : "Aplicar filtro",
|
||||
"Filter by tag" : "Filtrar pola etiqueta",
|
||||
"Filter by assigned user" : "Filtrar polo usuario asignado",
|
||||
"Unassigned" : "Sen asignar",
|
||||
"Filter by due date" : "Filtrar pola data de caducidade",
|
||||
"Overdue" : "Caducado",
|
||||
"Next 24 hours" : "Próximas 24 horas",
|
||||
@@ -133,8 +132,6 @@ OC.L10N.register(
|
||||
"Toggle compact mode" : "Alternar o modo compacto",
|
||||
"Details" : "Detalles",
|
||||
"Loading board" : "Cargando o taboleiro",
|
||||
"No lists available" : "Non hai listas dispoñíbeis",
|
||||
"Create a new list to add cards to this board" : "Crear unha nova lista para engadir tarxetas a este taboleiro",
|
||||
"Board not found" : "Non se atopou o taboleiro",
|
||||
"Sharing" : "Compartindo",
|
||||
"Tags" : "Etiquetas",
|
||||
@@ -152,17 +149,14 @@ OC.L10N.register(
|
||||
"Can manage" : "Pode xestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Add a new list" : "Engadir unha lista nova",
|
||||
"Archive all cards" : "Arquivar todas as tarxetas",
|
||||
"Delete list" : "Eliminar lista",
|
||||
"Add card" : "Engadir tarxeta",
|
||||
"Archive all cards in this list" : "Arquivar todas as tarxetas desta lista",
|
||||
"Add a new card" : "Engadir unha nova tarxeta",
|
||||
"Edit" : "Editar",
|
||||
"Add a new tag" : "Engadir unha nova etiqueta",
|
||||
"title and color value must be provided" : "debe indicar o título e o valor da cor",
|
||||
"Title" : "Título",
|
||||
"Members" : "Membros",
|
||||
"Upload attachment" : "Enviar anexos",
|
||||
"Add this attachment" : "Engadir este anexo",
|
||||
"Delete Attachment" : "Eliminar o anexo",
|
||||
"Restore Attachment" : "Restaurar o anexo",
|
||||
@@ -185,6 +179,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Escoller o anexo",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Enviar anexos",
|
||||
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
|
||||
"Save" : "Gardar",
|
||||
"The comment cannot be empty." : "O comentario non pode estar baleiro",
|
||||
@@ -194,6 +189,7 @@ OC.L10N.register(
|
||||
"Update" : "Actualizar",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(círculo)",
|
||||
"seconds ago" : "segundos atrás",
|
||||
"Assign to me" : "Asignarme",
|
||||
"Unassign myself" : "Desasignarme",
|
||||
"Unarchive card" : "Desarquivar a tarxeta",
|
||||
@@ -203,7 +199,6 @@ OC.L10N.register(
|
||||
"Card details" : "Detalles da tarxeta",
|
||||
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
|
||||
"Select a list" : "Seleccionar unha lista",
|
||||
"seconds ago" : "segundos atrás",
|
||||
"All boards" : "Todos os taboleiros",
|
||||
"Archived boards" : "Taboleiros arquivados",
|
||||
"Shared with you" : "Compartido con vostede",
|
||||
@@ -220,11 +215,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "Produciuse un erro",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
|
||||
"Delete the board?" : "Eliminar o taboleiro?",
|
||||
"Loading filtered view" : "Cargando a vista filtrada",
|
||||
"Today" : "Hoxe",
|
||||
"Tomorrow" : "Mañá",
|
||||
"This week" : "Esta semana",
|
||||
"No due" : "Sen caducidade",
|
||||
"Link to a board" : "Ligar a un taboleiro",
|
||||
"Link to a card" : "Ligar a unha tarxeta",
|
||||
"Something went wrong" : "Algo foi mal",
|
||||
|
||||
14
l10n/gl.json
14
l10n/gl.json
@@ -119,7 +119,6 @@
|
||||
"Apply filter" : "Aplicar filtro",
|
||||
"Filter by tag" : "Filtrar pola etiqueta",
|
||||
"Filter by assigned user" : "Filtrar polo usuario asignado",
|
||||
"Unassigned" : "Sen asignar",
|
||||
"Filter by due date" : "Filtrar pola data de caducidade",
|
||||
"Overdue" : "Caducado",
|
||||
"Next 24 hours" : "Próximas 24 horas",
|
||||
@@ -131,8 +130,6 @@
|
||||
"Toggle compact mode" : "Alternar o modo compacto",
|
||||
"Details" : "Detalles",
|
||||
"Loading board" : "Cargando o taboleiro",
|
||||
"No lists available" : "Non hai listas dispoñíbeis",
|
||||
"Create a new list to add cards to this board" : "Crear unha nova lista para engadir tarxetas a este taboleiro",
|
||||
"Board not found" : "Non se atopou o taboleiro",
|
||||
"Sharing" : "Compartindo",
|
||||
"Tags" : "Etiquetas",
|
||||
@@ -150,17 +147,14 @@
|
||||
"Can manage" : "Pode xestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Add a new list" : "Engadir unha lista nova",
|
||||
"Archive all cards" : "Arquivar todas as tarxetas",
|
||||
"Delete list" : "Eliminar lista",
|
||||
"Add card" : "Engadir tarxeta",
|
||||
"Archive all cards in this list" : "Arquivar todas as tarxetas desta lista",
|
||||
"Add a new card" : "Engadir unha nova tarxeta",
|
||||
"Edit" : "Editar",
|
||||
"Add a new tag" : "Engadir unha nova etiqueta",
|
||||
"title and color value must be provided" : "debe indicar o título e o valor da cor",
|
||||
"Title" : "Título",
|
||||
"Members" : "Membros",
|
||||
"Upload attachment" : "Enviar anexos",
|
||||
"Add this attachment" : "Engadir este anexo",
|
||||
"Delete Attachment" : "Eliminar o anexo",
|
||||
"Restore Attachment" : "Restaurar o anexo",
|
||||
@@ -183,6 +177,7 @@
|
||||
"Choose attachment" : "Escoller o anexo",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Upload attachment" : "Enviar anexos",
|
||||
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
|
||||
"Save" : "Gardar",
|
||||
"The comment cannot be empty." : "O comentario non pode estar baleiro",
|
||||
@@ -192,6 +187,7 @@
|
||||
"Update" : "Actualizar",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(círculo)",
|
||||
"seconds ago" : "segundos atrás",
|
||||
"Assign to me" : "Asignarme",
|
||||
"Unassign myself" : "Desasignarme",
|
||||
"Unarchive card" : "Desarquivar a tarxeta",
|
||||
@@ -201,7 +197,6 @@
|
||||
"Card details" : "Detalles da tarxeta",
|
||||
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
|
||||
"Select a list" : "Seleccionar unha lista",
|
||||
"seconds ago" : "segundos atrás",
|
||||
"All boards" : "Todos os taboleiros",
|
||||
"Archived boards" : "Taboleiros arquivados",
|
||||
"Shared with you" : "Compartido con vostede",
|
||||
@@ -218,11 +213,6 @@
|
||||
"An error occurred" : "Produciuse un erro",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
|
||||
"Delete the board?" : "Eliminar o taboleiro?",
|
||||
"Loading filtered view" : "Cargando a vista filtrada",
|
||||
"Today" : "Hoxe",
|
||||
"Tomorrow" : "Mañá",
|
||||
"This week" : "Esta semana",
|
||||
"No due" : "Sen caducidade",
|
||||
"Link to a board" : "Ligar a un taboleiro",
|
||||
"Link to a card" : "Ligar a unha tarxeta",
|
||||
"Something went wrong" : "Algo foi mal",
|
||||
|
||||
@@ -113,7 +113,6 @@ OC.L10N.register(
|
||||
"title and color value must be provided" : "יש לספק כותרת וערך צבע",
|
||||
"Title" : "תפקיד",
|
||||
"Members" : "חברים",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"Add this attachment" : "הוספת קובץ מצורף זה",
|
||||
"Delete Attachment" : "מחיקת קובץ מצורף",
|
||||
"Restore Attachment" : "שחזור קובץ מצורף",
|
||||
@@ -136,6 +135,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "בחירת קובץ מצורף",
|
||||
"Modified" : "מועד שינוי",
|
||||
"Created" : "מועד היצירה",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
|
||||
"Save" : "שמור",
|
||||
"The comment cannot be empty." : "ההערה לא יכולה להיות ריקה.",
|
||||
@@ -145,6 +145,7 @@ OC.L10N.register(
|
||||
"Update" : "עדכון",
|
||||
"(group)" : "(קבוצה)",
|
||||
"(circle)" : "(מעגל)",
|
||||
"seconds ago" : "לפני מספר שניות",
|
||||
"Assign to me" : "הקצאה אלי",
|
||||
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
|
||||
"Archive card" : "העברת כרטיס לארכיון",
|
||||
@@ -152,7 +153,6 @@ OC.L10N.register(
|
||||
"Move card" : "העברת כרטיס",
|
||||
"Card details" : "פרטי הכרטיס",
|
||||
"Move card to another board" : "העברת כרטיס ללוח אחר",
|
||||
"seconds ago" : "לפני מספר שניות",
|
||||
"All boards" : "כל הלוחות",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Shared with you" : "משותף אתך",
|
||||
@@ -169,9 +169,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "אירעה שגיאה",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",
|
||||
"Delete the board?" : "למחוק את הלוח הזה?",
|
||||
"Today" : "היום",
|
||||
"Tomorrow" : "מחר",
|
||||
"This week" : "השבוע",
|
||||
"Link to a board" : "קישור ללוח",
|
||||
"Link to a card" : "קישור לכרטיס",
|
||||
"Something went wrong" : "משהו השתבש",
|
||||
|
||||
@@ -111,7 +111,6 @@
|
||||
"title and color value must be provided" : "יש לספק כותרת וערך צבע",
|
||||
"Title" : "תפקיד",
|
||||
"Members" : "חברים",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"Add this attachment" : "הוספת קובץ מצורף זה",
|
||||
"Delete Attachment" : "מחיקת קובץ מצורף",
|
||||
"Restore Attachment" : "שחזור קובץ מצורף",
|
||||
@@ -134,6 +133,7 @@
|
||||
"Choose attachment" : "בחירת קובץ מצורף",
|
||||
"Modified" : "מועד שינוי",
|
||||
"Created" : "מועד היצירה",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
|
||||
"Save" : "שמור",
|
||||
"The comment cannot be empty." : "ההערה לא יכולה להיות ריקה.",
|
||||
@@ -143,6 +143,7 @@
|
||||
"Update" : "עדכון",
|
||||
"(group)" : "(קבוצה)",
|
||||
"(circle)" : "(מעגל)",
|
||||
"seconds ago" : "לפני מספר שניות",
|
||||
"Assign to me" : "הקצאה אלי",
|
||||
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
|
||||
"Archive card" : "העברת כרטיס לארכיון",
|
||||
@@ -150,7 +151,6 @@
|
||||
"Move card" : "העברת כרטיס",
|
||||
"Card details" : "פרטי הכרטיס",
|
||||
"Move card to another board" : "העברת כרטיס ללוח אחר",
|
||||
"seconds ago" : "לפני מספר שניות",
|
||||
"All boards" : "כל הלוחות",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Shared with you" : "משותף אתך",
|
||||
@@ -167,9 +167,6 @@
|
||||
"An error occurred" : "אירעה שגיאה",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",
|
||||
"Delete the board?" : "למחוק את הלוח הזה?",
|
||||
"Today" : "היום",
|
||||
"Tomorrow" : "מחר",
|
||||
"This week" : "השבוע",
|
||||
"Link to a board" : "קישור ללוח",
|
||||
"Link to a card" : "קישור לכרטיס",
|
||||
"Something went wrong" : "משהו השתבש",
|
||||
|
||||
@@ -157,7 +157,6 @@ OC.L10N.register(
|
||||
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"Upload attachment" : "Otpremi privitak",
|
||||
"Add this attachment" : "Dodajte ovaj privitak",
|
||||
"Delete Attachment" : "Izbriši privitak",
|
||||
"Restore Attachment" : "Vrati privitak",
|
||||
@@ -180,6 +179,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Odaberi privitak",
|
||||
"Modified" : "Promijenjeno",
|
||||
"Created" : "Stvoreno",
|
||||
"Upload attachment" : "Otpremi privitak",
|
||||
"No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!",
|
||||
"Save" : "Spremi",
|
||||
"The comment cannot be empty." : "Komentar ne može biti prazan.",
|
||||
@@ -189,6 +189,7 @@ OC.L10N.register(
|
||||
"Update" : "Ažuriraj",
|
||||
"(group)" : "(grupa)",
|
||||
"(circle)" : "(krug)",
|
||||
"seconds ago" : "prije nekoliko sekundi",
|
||||
"Assign to me" : "Dodijeli meni",
|
||||
"Unassign myself" : "Ukloni sebe",
|
||||
"Unarchive card" : "Dearhiviraj karticu",
|
||||
@@ -198,7 +199,6 @@ OC.L10N.register(
|
||||
"Card details" : "Pojedinosti o kartici",
|
||||
"Move card to another board" : "Premjesti karticu na drugu ploču",
|
||||
"Select a list" : "Odaberi popis",
|
||||
"seconds ago" : "prije nekoliko sekundi",
|
||||
"All boards" : "Sve ploče",
|
||||
"Archived boards" : "Arhivirane ploče",
|
||||
"Shared with you" : "Podijeljeno s vama",
|
||||
@@ -215,9 +215,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "Došlo je do pogreške",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Jeste li sigurni da želite izbrisati ploču {title}? Time ćete izbrisati sve podatke ploče.",
|
||||
"Delete the board?" : "Želite li izbrisati ploču?",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
"This week" : "Ovaj tjedan",
|
||||
"Link to a board" : "Poveznica na ploču",
|
||||
"Link to a card" : "Poveznica na karticu",
|
||||
"Something went wrong" : "Nešto je pošlo po krivu",
|
||||
|
||||
@@ -155,7 +155,6 @@
|
||||
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"Upload attachment" : "Otpremi privitak",
|
||||
"Add this attachment" : "Dodajte ovaj privitak",
|
||||
"Delete Attachment" : "Izbriši privitak",
|
||||
"Restore Attachment" : "Vrati privitak",
|
||||
@@ -178,6 +177,7 @@
|
||||
"Choose attachment" : "Odaberi privitak",
|
||||
"Modified" : "Promijenjeno",
|
||||
"Created" : "Stvoreno",
|
||||
"Upload attachment" : "Otpremi privitak",
|
||||
"No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!",
|
||||
"Save" : "Spremi",
|
||||
"The comment cannot be empty." : "Komentar ne može biti prazan.",
|
||||
@@ -187,6 +187,7 @@
|
||||
"Update" : "Ažuriraj",
|
||||
"(group)" : "(grupa)",
|
||||
"(circle)" : "(krug)",
|
||||
"seconds ago" : "prije nekoliko sekundi",
|
||||
"Assign to me" : "Dodijeli meni",
|
||||
"Unassign myself" : "Ukloni sebe",
|
||||
"Unarchive card" : "Dearhiviraj karticu",
|
||||
@@ -196,7 +197,6 @@
|
||||
"Card details" : "Pojedinosti o kartici",
|
||||
"Move card to another board" : "Premjesti karticu na drugu ploču",
|
||||
"Select a list" : "Odaberi popis",
|
||||
"seconds ago" : "prije nekoliko sekundi",
|
||||
"All boards" : "Sve ploče",
|
||||
"Archived boards" : "Arhivirane ploče",
|
||||
"Shared with you" : "Podijeljeno s vama",
|
||||
@@ -213,9 +213,6 @@
|
||||
"An error occurred" : "Došlo je do pogreške",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Jeste li sigurni da želite izbrisati ploču {title}? Time ćete izbrisati sve podatke ploče.",
|
||||
"Delete the board?" : "Želite li izbrisati ploču?",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
"This week" : "Ovaj tjedan",
|
||||
"Link to a board" : "Poveznica na ploču",
|
||||
"Link to a card" : "Poveznica na karticu",
|
||||
"Something went wrong" : "Nešto je pošlo po krivu",
|
||||
|
||||
@@ -132,7 +132,6 @@ OC.L10N.register(
|
||||
"title and color value must be provided" : "a cím és szín értékét meg kell adni",
|
||||
"Title" : "Cím",
|
||||
"Members" : "Tagok",
|
||||
"Upload attachment" : "Melléklet feltöltése",
|
||||
"Add this attachment" : "E melléklet hozzáadása",
|
||||
"Delete Attachment" : "Melléklet törlése",
|
||||
"Restore Attachment" : "Melléklet visszaállítása",
|
||||
@@ -155,6 +154,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Válasszon mellékletet",
|
||||
"Modified" : "Módosítva",
|
||||
"Created" : "Létrehozva",
|
||||
"Upload attachment" : "Melléklet feltöltése",
|
||||
"No comments yet. Begin the discussion!" : "Még nincsenek hozzászólások. Kezdje el a beszélgetést!",
|
||||
"Save" : "Mentés",
|
||||
"The comment cannot be empty." : "A hozzászólás nem lehet üres.",
|
||||
@@ -164,6 +164,7 @@ OC.L10N.register(
|
||||
"Update" : "Frissítés",
|
||||
"(group)" : "(csoport)",
|
||||
"(circle)" : "(kör)",
|
||||
"seconds ago" : "másodperce",
|
||||
"Assign to me" : "Hozzám rendelés",
|
||||
"Unarchive card" : "Kártya archiválásának visszavonása",
|
||||
"Archive card" : "Kártya archiválása",
|
||||
@@ -171,7 +172,6 @@ OC.L10N.register(
|
||||
"Move card" : "Kártya áthelyezése",
|
||||
"Card details" : "Kártya részletei",
|
||||
"Move card to another board" : "Kártya áthelyezése egy másik táblára",
|
||||
"seconds ago" : "másodperce",
|
||||
"All boards" : "Az összes tábla",
|
||||
"Archived boards" : "Archivált táblák",
|
||||
"Shared with you" : "Megosztva Önnel",
|
||||
@@ -183,9 +183,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "Hiba történt",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Biztos, hogy törli a(z) {title} táblát? Ez törölni fogja a tábla összes adatát.",
|
||||
"Delete the board?" : "Törli a táblát?",
|
||||
"Today" : "Ma",
|
||||
"Tomorrow" : "Holnap",
|
||||
"This week" : "Ez a hét",
|
||||
"Link to a board" : "Hivatkozás egy táblához",
|
||||
"Link to a card" : "Hivatkozás egy kártyához",
|
||||
"Something went wrong" : "Valami hiba történt",
|
||||
|
||||
@@ -130,7 +130,6 @@
|
||||
"title and color value must be provided" : "a cím és szín értékét meg kell adni",
|
||||
"Title" : "Cím",
|
||||
"Members" : "Tagok",
|
||||
"Upload attachment" : "Melléklet feltöltése",
|
||||
"Add this attachment" : "E melléklet hozzáadása",
|
||||
"Delete Attachment" : "Melléklet törlése",
|
||||
"Restore Attachment" : "Melléklet visszaállítása",
|
||||
@@ -153,6 +152,7 @@
|
||||
"Choose attachment" : "Válasszon mellékletet",
|
||||
"Modified" : "Módosítva",
|
||||
"Created" : "Létrehozva",
|
||||
"Upload attachment" : "Melléklet feltöltése",
|
||||
"No comments yet. Begin the discussion!" : "Még nincsenek hozzászólások. Kezdje el a beszélgetést!",
|
||||
"Save" : "Mentés",
|
||||
"The comment cannot be empty." : "A hozzászólás nem lehet üres.",
|
||||
@@ -162,6 +162,7 @@
|
||||
"Update" : "Frissítés",
|
||||
"(group)" : "(csoport)",
|
||||
"(circle)" : "(kör)",
|
||||
"seconds ago" : "másodperce",
|
||||
"Assign to me" : "Hozzám rendelés",
|
||||
"Unarchive card" : "Kártya archiválásának visszavonása",
|
||||
"Archive card" : "Kártya archiválása",
|
||||
@@ -169,7 +170,6 @@
|
||||
"Move card" : "Kártya áthelyezése",
|
||||
"Card details" : "Kártya részletei",
|
||||
"Move card to another board" : "Kártya áthelyezése egy másik táblára",
|
||||
"seconds ago" : "másodperce",
|
||||
"All boards" : "Az összes tábla",
|
||||
"Archived boards" : "Archivált táblák",
|
||||
"Shared with you" : "Megosztva Önnel",
|
||||
@@ -181,9 +181,6 @@
|
||||
"An error occurred" : "Hiba történt",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Biztos, hogy törli a(z) {title} táblát? Ez törölni fogja a tábla összes adatát.",
|
||||
"Delete the board?" : "Törli a táblát?",
|
||||
"Today" : "Ma",
|
||||
"Tomorrow" : "Holnap",
|
||||
"This week" : "Ez a hét",
|
||||
"Link to a board" : "Hivatkozás egy táblához",
|
||||
"Link to a card" : "Hivatkozás egy kártyához",
|
||||
"Something went wrong" : "Valami hiba történt",
|
||||
|
||||
@@ -16,8 +16,6 @@ OC.L10N.register(
|
||||
"Save" : "Պահպանել",
|
||||
"Update" : "Թարմացնել",
|
||||
"seconds ago" : "վրկ. առաջ",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "այսօր",
|
||||
"This week" : "այս շաբաթ"
|
||||
"Shared with you" : "Shared with you"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -14,8 +14,6 @@
|
||||
"Save" : "Պահպանել",
|
||||
"Update" : "Թարմացնել",
|
||||
"seconds ago" : "վրկ. առաջ",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "այսօր",
|
||||
"This week" : "այս շաբաթ"
|
||||
"Shared with you" : "Shared with you"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -30,9 +30,6 @@ OC.L10N.register(
|
||||
"Update" : "Actualisation",
|
||||
"(group)" : "(gruppo)",
|
||||
"seconds ago" : "secundas passate",
|
||||
"Shared with you" : "Compartite con te",
|
||||
"Today" : "Hodie",
|
||||
"Tomorrow" : "Deman",
|
||||
"This week" : "Iste septimana"
|
||||
"Shared with you" : "Compartite con te"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -28,9 +28,6 @@
|
||||
"Update" : "Actualisation",
|
||||
"(group)" : "(gruppo)",
|
||||
"seconds ago" : "secundas passate",
|
||||
"Shared with you" : "Compartite con te",
|
||||
"Today" : "Hodie",
|
||||
"Tomorrow" : "Deman",
|
||||
"This week" : "Iste septimana"
|
||||
"Shared with you" : "Compartite con te"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -157,7 +157,6 @@ OC.L10N.register(
|
||||
"title and color value must be provided" : "judul dan nilai warna harus ditentukan",
|
||||
"Title" : "Judul",
|
||||
"Members" : "Anggota",
|
||||
"Upload attachment" : "Unggah lampiran",
|
||||
"Add this attachment" : "Tambah lampiran ini",
|
||||
"Delete Attachment" : "Hapus Lampiran",
|
||||
"Restore Attachment" : "Pulihkan Lampiran",
|
||||
@@ -180,6 +179,7 @@ OC.L10N.register(
|
||||
"Choose attachment" : "Pilih lampiran",
|
||||
"Modified" : "Dimodifikasi",
|
||||
"Created" : "Dibuat",
|
||||
"Upload attachment" : "Unggah lampiran",
|
||||
"No comments yet. Begin the discussion!" : "Belum ada komentar. Mulai berdiskusi!",
|
||||
"Save" : "Simpan",
|
||||
"The comment cannot be empty." : "Komentar tidak dapat kosong.",
|
||||
@@ -189,6 +189,7 @@ OC.L10N.register(
|
||||
"Update" : "Perbarui",
|
||||
"(group)" : "(grup)",
|
||||
"(circle)" : "(lingkaran)",
|
||||
"seconds ago" : "beberapa detik yang lalu",
|
||||
"Assign to me" : "Tugaskan saya",
|
||||
"Unarchive card" : "Memulihkan kartu",
|
||||
"Archive card" : "Mengarsipkan kartu",
|
||||
@@ -197,7 +198,6 @@ OC.L10N.register(
|
||||
"Card details" : "Detail kartu",
|
||||
"Move card to another board" : "Pindahkan kartu ke papan lain",
|
||||
"Select a list" : "Pilih daftar",
|
||||
"seconds ago" : "beberapa detik yang lalu",
|
||||
"All boards" : "Semua papan",
|
||||
"Archived boards" : "Papan terarsip",
|
||||
"Shared with you" : "Shared with you",
|
||||
@@ -213,9 +213,6 @@ OC.L10N.register(
|
||||
"An error occurred" : "Terjadi kesalahan",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Apakah Anda yakin ingin menghapus papan {title}? Aksi ini akan menghapus seluruh data pada papan ini.",
|
||||
"Delete the board?" : "Hapus papan?",
|
||||
"Today" : "Hari ini",
|
||||
"Tomorrow" : "Besok",
|
||||
"This week" : "Pekan ini",
|
||||
"Link to a board" : "Tautan ke papan",
|
||||
"Link to a card" : "Tautan ke kartu",
|
||||
"Something went wrong" : "Ada yang salah",
|
||||
|
||||
@@ -155,7 +155,6 @@
|
||||
"title and color value must be provided" : "judul dan nilai warna harus ditentukan",
|
||||
"Title" : "Judul",
|
||||
"Members" : "Anggota",
|
||||
"Upload attachment" : "Unggah lampiran",
|
||||
"Add this attachment" : "Tambah lampiran ini",
|
||||
"Delete Attachment" : "Hapus Lampiran",
|
||||
"Restore Attachment" : "Pulihkan Lampiran",
|
||||
@@ -178,6 +177,7 @@
|
||||
"Choose attachment" : "Pilih lampiran",
|
||||
"Modified" : "Dimodifikasi",
|
||||
"Created" : "Dibuat",
|
||||
"Upload attachment" : "Unggah lampiran",
|
||||
"No comments yet. Begin the discussion!" : "Belum ada komentar. Mulai berdiskusi!",
|
||||
"Save" : "Simpan",
|
||||
"The comment cannot be empty." : "Komentar tidak dapat kosong.",
|
||||
@@ -187,6 +187,7 @@
|
||||
"Update" : "Perbarui",
|
||||
"(group)" : "(grup)",
|
||||
"(circle)" : "(lingkaran)",
|
||||
"seconds ago" : "beberapa detik yang lalu",
|
||||
"Assign to me" : "Tugaskan saya",
|
||||
"Unarchive card" : "Memulihkan kartu",
|
||||
"Archive card" : "Mengarsipkan kartu",
|
||||
@@ -195,7 +196,6 @@
|
||||
"Card details" : "Detail kartu",
|
||||
"Move card to another board" : "Pindahkan kartu ke papan lain",
|
||||
"Select a list" : "Pilih daftar",
|
||||
"seconds ago" : "beberapa detik yang lalu",
|
||||
"All boards" : "Semua papan",
|
||||
"Archived boards" : "Papan terarsip",
|
||||
"Shared with you" : "Shared with you",
|
||||
@@ -211,9 +211,6 @@
|
||||
"An error occurred" : "Terjadi kesalahan",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Apakah Anda yakin ingin menghapus papan {title}? Aksi ini akan menghapus seluruh data pada papan ini.",
|
||||
"Delete the board?" : "Hapus papan?",
|
||||
"Today" : "Hari ini",
|
||||
"Tomorrow" : "Besok",
|
||||
"This week" : "Pekan ini",
|
||||
"Link to a board" : "Tautan ke papan",
|
||||
"Link to a card" : "Tautan ke kartu",
|
||||
"Something went wrong" : "Ada yang salah",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user